Is this the right way to use bowtie to align reads from an 1000 genome sample (e.g. NA18526) to the human genome?
First, I downloaded three files from 1000genomes
ftp://ftp.1000genomes.ebi.ac.uk/vol1....filt.fastq.gz
ftp://ftp.1000genomes.ebi.ac.uk/vol1....filt.fastq.gz
ftp://ftp.1000genomes.ebi.ac.uk/vol1....filt.fastq.gz
I downloaded the hg19 index files from
ftp://ftp.cbcb.umd.edu/pub/data/bowt...g19.ebwt.1.zip
ftp://ftp.cbcb.umd.edu/pub/data/bowt...g19.ebwt.2.zip
Unzipped them and put them in the indexes subdirectory.
Then I run the following command on my dual hex-core machine with 48GB RAM:
time ./bowtie -p 12 --chunkmbs 200 -S hg19 -1 NA18526/ERR031854_1.filt.fastq -2 NA18526/ERR031854_2.filt.fastq NA18526.sam
It took about 65min to finish. Am I doing it right?
What is the use of the small ERR031854.filt.fastq at 1000genomes.org??
Thanks a lot in advance!
First, I downloaded three files from 1000genomes
ftp://ftp.1000genomes.ebi.ac.uk/vol1....filt.fastq.gz
ftp://ftp.1000genomes.ebi.ac.uk/vol1....filt.fastq.gz
ftp://ftp.1000genomes.ebi.ac.uk/vol1....filt.fastq.gz
I downloaded the hg19 index files from
ftp://ftp.cbcb.umd.edu/pub/data/bowt...g19.ebwt.1.zip
ftp://ftp.cbcb.umd.edu/pub/data/bowt...g19.ebwt.2.zip
Unzipped them and put them in the indexes subdirectory.
Then I run the following command on my dual hex-core machine with 48GB RAM:
time ./bowtie -p 12 --chunkmbs 200 -S hg19 -1 NA18526/ERR031854_1.filt.fastq -2 NA18526/ERR031854_2.filt.fastq NA18526.sam
It took about 65min to finish. Am I doing it right?
What is the use of the small ERR031854.filt.fastq at 1000genomes.org??
Thanks a lot in advance!
Comment