Biowulf has sratoolkit, need to load it before using.
Here is the details:
sinteractive --gres=lscratch:20 --mem=64g --cpus-per-task=24 --time=35:59:00
module load sratoolkit
#download the SRR_Acc_List.txt (sample list) from SRA website
cd /data/$userID/ITP
mkdir sra
nohup cat SRR_Acc_List.txt | while read id; do fasterq-dump -t ./ $id -O ./sra/; done &
#-t ./ will save the tmp downloading files, and will be deleted when the download is finished.
#-O save the output (fastq files, not sra files) in the sra folder.
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。