How to download a 100 fastq files at once using SraToolkit fastq-dump?
How to download a 100 fastq files at once using SraToolkit fastq-dump? Is there any software with GUI or shell codes published somewhere?
fastq-dump
sratoolkit
• 2,920 views
•
link
written
by
flight029000 •
0 answers
No answers yet.
Log in to answer this question.
More posts like this
-
SRA ToolKit: can't verify binaries
written by Izzy •Hello! I am installing the SRA toolkit. After running: which fastq-dump to test if the binaries are found by the shell no output is given. …
-
Accessing SRA file with multiple fastqs under one accession
written by tony_88888 •Hi, I am trying to download some fastq files from SRA to align with cellranger. The accession number I am using is GSE246613. The issue …
-
How to download oxford nanopore sequencing fast5 files from SRA
written by va90 •Hi, I am trying to download direct RNA seq data produced by oxford nanopore sequencing from SRA ([SRP174366][1]). I know how to use sratoolkit prefetch …
-
Tutorial: High Speed Downloading of SRA, SAM and Fastq Files
written by Wenhu_CaoThis is a brief tutorial about methods of downloading sra, sam and fastq files, mainly focusing on Aspera Connect. ## NCBI-SRA and EBI-ENA databases [SRA: …
-
Is there a way to download FASTq files from SRR IDs?
written by PaulI have a bunch of SRR IDs and need to download Fastq files for the same. I tried downloading SRAtoolkit for the same by doing …
-
Is it possible to download Neisseria Meningitidis whole gneomes using fastq-dump from SRAToolkit?
written by bioinform •Is it possible to download Neisseria Meningitidis whole gneomes using fastq-dump from SRAToolkit? Looking for SRA identifiers of N. meningitis short reads, fastq files.
-
How can I change the default path to which SRA files are downloaded?
written by CacauBy default, SRA files will be downloaded to `~/ncbi/ncbi_public/sra` by using sratoolkit from ncbi. However, there is limited space. So I want to change the …
-
Fastq-dump crashing with core dump?
written by alan •I've got a bunch of SRR files that I need to convert into fastqs. I'm running a command like this one: ``` ~/bin/sratoolkit.2.5.1-centos_linux64/bin/fastq-dump \ -v …
-
Converting .sra files to fastq
written by Linda<p>I am trying to convert .sra files to fastq using fastq-dump on a CentOS machine. I already have the sra files downloaded so I do …
-
Sra-Toolkit 2.3.1 Fastq-Dump Multiplefiles At Once Windows Command Line
written by deepbiofever •<p>I am not software professional so bare with me if I am asking some silly questions.</p> <p>I have downloaded SRP003329 study, which contains 20 sub-directory …
Did you try using a for loop already?
no, post an example, pls
What did you try already?
use GNU parallel
Gnu Parallel - Parallelize Serial Command Line Programs Without Changing Them
No, that is not recommended for this type of job! As fastq-dump is mainly a downloader, the limiting factor is mostly network bandwidth and IO. Unless you have a much larger bandwidth on your side than NCBI's load balancer is willing to assign to your ip for each connection, it is most likely to be slower with so many connections. It depends on how their load balancing is implemented but you might even be throttled or blacklisted. I would try max. 4-6 parallel downloads and monitor the network traffic.