SRA Toolkit

Z MetaCentrum
Skočit na navigaci Skočit na vyhledávání


Description

The SRA Toolkit and SDK from NCBI is a collection of tools and libraries for using data in the INSDC Sequence Read Archives. Much of the data submitted these days contain alignment information, for example in BAM, Illumina export.txt, and Complete Genomics formats. With aligned data, NCBI uses Compression by Reference, which only stores the differences in base pairs between sequence data and the segment it aligns to. The process to restore original data, for example as FastQ, requires fast access to the reference sequences that the original data was aligned to. NCBI recommends that SRA users dedicate local disk space to store references downloaded from the NCBI SRA site. As of February 2015, the complete collection of these reference sequences is 98 GB. While it isn't usually necessary to download the entirety of the reference sequences, this should give you an idea of the scale of the storage requirement. By default, the Toolkit will download missing reference sequences on demand and cache them in the user's home directory. The location of this cache is configurable, as is whether the download is automatic or manual.

License

Freely available - unlicensed.

Usage

module add conda/modules

conda activate sra-tools-3.0.3

Common mistakes

name not found while resolving ...

If you try to use the tools like:

cd $SCRATCHDIR
cp -r /storage/brno2/home/$user/data/* .
fastq-dump --split-3 FILE.sra > out.fastq

then occurs the error:

2013-04-16T12:54:30 fastq-dump.2.3.2 err: libs/vfs/resolver.c:790:VResolverAlgRemoteResolve: 
name not found while resolving tree within virtual file system module - failed to open 'FILE.sra'

Solution: The tools do not count with the current directory path. So you can repair the computation simply by adding the path to your file:

fastq-dump --split-3 ./FILE.sra > out.fastq

Documentation

https://trace.ncbi.nlm.nih.gov/Traces/sra/sra.cgi?view=toolkit_doc

Homepage

http://ncbi.github.io/sra-tools/