Download All Genomes: Difference between revisions

From genomewiki
Jump to navigationJump to search
(shorter version)
No edit summary
Line 7: Line 7:
  done
  done


Or, the following script will download the most current version for all genomes that can be rsynced from hgwdownload. It will only download 2bit files.
----


The following solution is more flexible but also much longer and in most cases probably not needed:
This script will download the most current version for all genomes that can be rsynced from hgwdownload. It will only download 2bit files.
It is written in python and is using the rsync program.
It is written in python and is using the rsync program.
Note the -f parameter to override the selection of the genomes. use -h for help. Downloaded files go into the current directory.
Note the -f parameter to override the selection of the genomes. use -h for help. Downloaded files go into the current directory.

Revision as of 13:21, 18 January 2010

It may be a little more direct to run the following bash shell command:

mysql --user=genome --host=genome-mysql.cse.ucsc.edu -A -N \
      -e "select name from dbDb where active=1;" hgcentral | while read D
do
   rsync -a --progress \
       rsync://hgdownload.cse.ucsc.edu/gbdb/${D}/${D}.2bit ./${D}.2bit
done

The following solution is more flexible but also much longer and in most cases probably not needed:

This script will download the most current version for all genomes that can be rsynced from hgwdownload. It will only download 2bit files. It is written in python and is using the rsync program. Note the -f parameter to override the selection of the genomes. use -h for help. Downloaded files go into the current directory.

File:RetrUcscGenomes.txt