首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >专栏 >Download fastq from SRA

Download fastq from SRA

原创
作者头像
JJJJack
修改2024-11-20 07:36:51
修改2024-11-20 07:36:51
1241
举报

Biowulf has sratoolkit, need to load it before using.

Here is the details:

代码语言:bash
复制
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 删除。

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档