--outdir .How to download data from SRA in Linux systems via "> --outdir .How to download data from SRA in Linux systems via ">
Home > Community > How to download data from SRA in Linux systems via the command line?
Upvote

25

Downvote
+ Bioinformatics
+ Genomics
Posted by
Michael Smith

How to download data from SRA in Linux systems via the command line?

Crow72  Follow

So far, grabseqs is the easiest option, a wrapper for fastq_dump and fasterq-dump, you can install it with conda, I recommend you to use an environment:

conda create -n grabseqs -c louiejtaylor -c bioconda -c conda-forge grabseqsconda activate grabseqsgrabseqs sra SRRNNNNNNNNconda deactivate

And download directly projects, runs, and bioprojects from SRA with grabseqs sra SRRNNNNNNNN. Check it out here: https://github.com/louiejtaylor/grabseqs

You can install in a different way just in case the first one doesn't work:

conda create -n grabseqs -yc bioconda parallel-fastq-dump pigz conda activate grabseqs pip install grabseqsgrabseqs sra SRRNNNNNNNNconda deactivate

More

Upvote

VOTE

Downvote
E-Camelia  Follow
I did a slight modification just in case the official installation steps didn't work.More
Upvote

VOTE

Downvote
Edobhiye Sunday  Follow
Nice, I will test this in a couple of hours ^^More
Upvote

VOTE

Downvote
Gary Novosielski  Follow
I didn't manage to install it easily, it is presenting some kind of conflict between the dependencies. I will try to find something else.More
Upvote

VOTE

Downvote