为什么';当连接到NCBI';s FTP服务器主页?

为什么';当连接到NCBI';s FTP服务器主页?,ftp,rsync,bioinformatics,ncbi,Ftp,Rsync,Bioinformatics,Ncbi,我目前正试图在工作中更新一些代码。我之前使用最新版本的Python创建了一个脚本,该脚本将用户路径选择记录在NCBI的FTP webiste()上。该日志用于使用更新的文件更新我的文件系统(我相信NCBI每周都会更新他们的文件)。我基本上重建了轮子。我现在想使用rsync,但我似乎无法得到我想要的 rsync -vah --include "\*/" --exclude "\*" rsync://ftp.ncbi.nlm.nih.gov/ 上面的脚本应该转到NCBI的网站并开始下载目录。相反,

我目前正试图在工作中更新一些代码。我之前使用最新版本的Python创建了一个脚本,该脚本将用户路径选择记录在NCBI的FTP webiste()上。该日志用于使用更新的文件更新我的文件系统(我相信NCBI每周都会更新他们的文件)。我基本上重建了轮子。我现在想使用rsync,但我似乎无法得到我想要的

rsync -vah --include "\*/" --exclude "\*" rsync://ftp.ncbi.nlm.nih.gov/
上面的脚本应该转到NCBI的网站并开始下载目录。相反,它会将NCBI主目录中的文件夹列表打印到shell中,然后在不复制任何内容的情况下终止

下面是输出的样子:

**Warning Notice!**

**You are accessing a U.S. Government information system which includes this
computer, network, and all attached devices. This system is for
Government-authorized use only. Unauthorized use of this system may result in
disciplinary action and civil and criminal penalties. System users have no
expectation of privacy regarding any communications or data processed by this
system. At any time, the government may monitor, record, or seize any
communication or data transiting or stored on this information system.**

**-------------------------------------------------------------------------------**

**Welcome to the NCBI rsync server.**

 - 1000genomes
 - bigwig
 - bioproject
 - biosample
 - blast
 - cgap
 - cn3d
 - dbgap
 - entrez
 - epigenomics
 - fa2htgs
 - genbank
 - gene
 - genomes
 - hapmap
 - mmdb
 - ncbi-asn1
 - pathogen
 - pubchem
 - pubmed
 - pub
 - refseq
 - repository
 - SampleData
 - sequin
 - sky-cgh
 - snp
 - sra
 - tech-reports
 - toolbox
 - tpa
 - tracedb
 - variation 

[user@host ~/bin $]
每当我使用

rsync://ftp.ncbi.nlm.nih.gov/destination
(基本上,如果我在NCBI的FTP主页中包含任何目录),一切似乎都正常

我在这里该怎么办?问题/解决方案是什么