how to convert using sratoolkit or fast-dump
1
0
Entering edit mode
3 months ago
shersky • 0

Hello i downloaded single cell RNA data from AWS such as this example https://trace.ncbi.nlm.nih.gov/Traces/?view=run_browser&acc=SRR21834806&display=data-access

wget https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR21834806/SRR21834806

is there a way to convert what was already downloaded into R1 and R2 using fastq-dump, preferably original format fasta?

single fasterq-dump sratoolkit cell fastq-dump • 539 views
ADD COMMENT
0
Entering edit mode

If you can download the original data files using aws cli the use the s3links on that page you linked: s3://sra-pub-src-13/SRR21834806/6438-RMM-0002_12_S12_L002_I1_001.fastq.gz.1. They will require not conversion/changes.

Note: Not sure if this data allows free egress. If it does not then you will need a AWS account and payment.

ADD REPLY
0
Entering edit mode

A really neat tool for those smaller use-cases is sra-explorer.info: type in the accession number, tick the library you want to download, press 'Add X to collection', click 'X saved datasets' button, then you get many various commands you can copy paste to wget/curl/ascp all fastq or sra files from various sources.

ADD REPLY
0
Entering edit mode

Well aware of the tool. But this is a 10x dataset and those are sometimes iffy to download from SRA. Links I referred to are the original files uploaded so they may sometimes be the best bet to get the correct data.

ADD REPLY
1
Entering edit mode
3 months ago

You can use fasterq-dump: https://github.com/ncbi/sra-tools/wiki/HowTo:-fasterq-dump

An accession is not a file, it is a container of files. Depending in the data submitted to NCBI, the container will have just one file or many files. Because of that, best practice is to always specify a directory.

example: $fasterq-dump /home/user/data/SRR000001
incorrect: $fasterq-dump /home/user/data/SRR000001/SRR000001.sra

That will spit out R1 and R2 fastq by default. It's part of sra-tools:

conda install bioconda::sra-tools
ADD COMMENT

Login before adding your answer.

Traffic: 1942 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6