cambiotraining / sars-cov-2-genomics

Course materials for an introduction to SARS-CoV-2 sequencing data analysis
http://cambiotraining.github.io/sars-cov-2-genomics/
Other
14 stars 7 forks source link

Prepare participants' data shared on dropbox #55

Closed tavareshugo closed 8 months ago

tavareshugo commented 8 months ago

The participants' data will go in their own dropbox folder. Each of the participants' data needs to follow the same directory structure as all other eqa_* folders:

tavareshugo commented 8 months ago

Data for this workshop iteration:

wget -O eqa_nanopore_dataset1.zip "https://www.dropbox.com/scl/fo/732l7klvyjfmusitrccjw/h?rlkey=729c7bu5knhd9ecf159ygchb8&dl=1"
wget -O eqa_nanopore_dataset2.zip "https://www.dropbox.com/scl/fo/qqs9dkzdp336spgsbjeuh/h?rlkey=851ze3qmcsiqf71hr9u9p638a&dl=1"
wget -O eqa_nanopore_dataset3.zip "https://www.dropbox.com/scl/fo/kizqz3buhtsmpoo9e7x8r/h?rlkey=9nuv5er4y3si5u38ekb89cvo1&dl=1"
wget -O eqa23_illumina_dataset1.zip "https://www.dropbox.com/scl/fo/3kwxinsxlwdtp2a1osugf/h?rlkey=mebutply5to1chrjjwyo76j01&dl=1"
wget -O eqa23_illumina_dataset2.zip "https://www.dropbox.com/scl/fo/cy7zu5cjs1relqfnqfgia/h?rlkey=r49oti78cwl2j5oc366btvlu1&dl=1"
wget -O eqa23_illumina_dataset3.zip "https://www.dropbox.com/scl/fo/4gcj25il1tmqotyjp1l3w/h?rlkey=wbyxuyjqv0dbmatda479uqy36&dl=1"
wget -O switzerland_nanopore_small.zip "https://www.dropbox.com/scl/fo/y37yqean6vamzr7yq8zey/h?rlkey=qdavkteytx8inv0qpvai11lby&dl=1"
wget -O southafrica_illumina_small.zip "https://www.dropbox.com/scl/fo/lbw1eucabhrd26ce4xf1j/h?rlkey=aelkvldj1hta8xaqnqzkydb7v&dl=1"

Unzip all of them:

for i in *.zip
do
  unzip $i -d $(basename $i ".zip")
done

rm *.zip
tavareshugo commented 8 months ago

Remove large files from pre-processed dirs

liamxg commented 8 months ago

what is the different between wget -O and curl -O?