Changes between Version 12 and Version 13 of SOPs/qc_SRA
- Timestamp:
- 06/22/23 13:42:51 (19 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SOPs/qc_SRA
v12 v13 65 65 }}} 66 66 67 If fastq-dump gives you an error like "Failed to call external services." you may need to use the NCBI link to a sralite file to download the sequences in that format first and then convert to fastq. This can be done with commands like 68 69 {{{ 70 # Download the sralite file 71 wget https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos5/sra-pub-zq-11/SRR002/626/SRR1234567/SRR1234567.sralite.1 72 73 # Convert sralite to fastq 74 fastq-dump --split-files -A SRR1234567 SRR1234567.sralite.1 75 }}} 76 67 77 === [=#multiple Downloading and processing multiple NCBI SRA samples] === 68 78