###################################################################################################### # template for downloading map files associated with the 2019 EMDataResource Model Metrics Challenge # ###################################################################################################### # Before running, uncomment the rsync command of your preferred download site. # If you do not want to download files for every target, adjust "foreach" to your # desired download list. # # Individual target EMDB entry ids are: # 1. Apoferritin (high res) EMD-20026 # 2. Apoferritin (med res) EMD-20027 # 3. Apoferritin (low res) EMD-20028 # 4. Alcohol Dehydrogenase EMD-0406 # # Following download, each target map will have it's own directory with EMDB entry id. # subdirectory "map" contains the depositor's original map, which may have been masked/filtered. # subdirectory "other" contains additional maps specifically requested for the challenge. # filenames in most cases are: full reconstruction (no masking/filtering): EMD-####-full.map.gz # half-maps : EMD-####-half-1.map.gz; EMD-####-half-2.map.gz ########################################################################################## #/bin/csh -f foreach entry(20026 20027 20028 '0406') #foreach entry('0406') # download from EUROPE (PDBe) #rsync -rlpt -v -z --delete rsync.ebi.ac.uk::pub/databases/emdb/structures/EMD-${entry}/ ./EMD-${entry} # download from USA (RCSB) #rsync -rlpt -v -z --delete --port=33444 rsync.wwpdb.org::emdb/structures/EMD-${entry}/ ./EMD-${entry} # download from ASIA (PDBj) #rsync -rlpt -v -z --delete ftp.pdbj.org::emdb/structures/EMD-${entry}/ ./EMD-${entry} end