Hi All,
Anyone can make a clear interpretation to the split-spot and skip-technical option in fastq-dump?
--split-spot Split spots into individual reads. (**I guess this option split each read to two parts**)
--skip-technical Dump only biological reads.
- What does
--split-spotcan be used? - What's principle of skip-technical?
- What's difference between
--split-spotand--split-files?
It is very interesting to the output for:
fastq-dump -X 5 --split-spot -Z SRR390728
fastq-dump -X 5 --split-files -Z SRR390728
fastq-dump -X 5 -Z SRR390728
Thanks.
Usage:
fastq-dump -X 5 -Z SRR390728
Prints the first five spots (-X 5) to standard out (-Z). This is a useful starting point for verifying other formatting options before dumping a whole file.
fastq-dump -I --split-files SRR390728
Produces two fastq files (--split-files) containing .1 and .2 read suffices (-I) for paired-end data.
fastq-dump --split-files --fasta 60 SRR390728
Produces two (--split-files) fasta files (--fasta) with 60 bases per line ("60" included after --fasta).
fastq-dump --split-files --aligned -Q 64 SRR390728
Produces two fastq files (--split-files) that contain only aligned reads (--aligned; Note: only for files submitted as aligned data), with a quality offset of 64 (-Q 64) Please see the documentation on vdb-dump if you wish to produce fasta/qual data.
Done
Are you bumping your own/old threads up to the main page for some specific reason?