Hi,
I have a raw sequencing file from illumina like below. This is chipseq data.
HWUSI-EAS491_2:1:1:1696:1814:ATTGCCGGACGCCAAGCTAGCCCGTGGGTGGGGGGG:hhS@EB?IEDBGA?>GE?B?CBBQ=CEG?FE@B?EN HWUSI-EAS491_2:1:1:1369:1245:ATTGACAGTTGGCTCGCCAAATAGGAGGGCCGGCAG:hhhLIVOhAGIcD?ER@\F?DB??IDDMPFDHPF>G HWUSI-EAS491_2:1:1:1572:1204:ATTTTGCGATGGCGGAAATTCTTGAGTTTAGTTGAT:hIC@GLBSHCOZ@FB?HCBADA@CA=B@@?FB?=C? HWUSI-EAS491_2:1:1:1514:1273:AGAATAGCGGGGAGTTAAACGGTGCGGGCCAGGATC:hI[E??NN?]GPDE?>I?A?@>DC@DFDEB?DGA?C HWUSI-EAS491_2:1:1:343:824:GATTAGAATCAGCCGTCGCTCGTTGTCCAGCTGTAA:hXFA?BE==BDFFA?>?FAA@?A?DEHA@=BB@B>C HWUSI-EAS491_2:1:1:1612:1422:GAAAATTGCAAATCACGGAAAAAGAGCAATACACAG:hhXPAQJN=GLDIJIIF=DB@C@ACIA?C??N?G?@ HWUSI-EAS491_2:1:1:1410:1308:GAAATATGGCGACTAGAACCCAACAAGGGAGAAGCG:hg^IDMGLCDLIA?J@HKCAAGA@F?>X>@HJG=DG HWUSI-EAS491_2:1:1:1723:1168:ACATGGGCGGCCGCCGCCGGCAGTGGCCGGTCGCGC:hQh@=?LC>AHD?BCBB?>?D?N?GDG?NB=AJFAA HWUSI-EAS491_2:1:1:1586:1332:ATTATAGTCCTGAAGCTTTCCTCGAAGGTATATGCC:hhhJFMKMLNHL@A?EBD>MIB@EBI?BE?@DCCCN HWUSI-EAS491_2:1:1:1686:1141:GATGGACGAGGGCTGGTACTGAGGGGAGGGGCTGCG:hORGFBAM>ECIID?@D=FFCDILE?GHBB>D>>A? HWUSI-EAS491_2:1:1:1443:1504:GTTTTGTTTTGTTATTTGTCGATATATGTTTCCTTT:hJJUVGCAFINXOCEG@A?B>CBA??C>E?H@>@?I HWUSI-EAS491_2:1:1:1559:1277:GACATTTGTCCGCCTCTTTCCATGCACTACGACATT:hO[E=BAJF?AA?=>F@?>BD?AK=?I==DB@GHAH>AM=??B>G
Using this file, I am trying to do mapping with bowtie.
Command line: bowtie -r -S bowtieindex/mm9 input file output.sam
But only 2 percent was mapped and 98% was not mapped.
I have no idea why it is.
Any comments or suggestions?
Thanks.
If i try with bowtie --solexa1.3-quals --trim5 -S: Error: reads file does not look like a FASTQ file
if i run this file with bowtie -p 8 -S, then i got an error Error: reads file does not look like a FASTQ file terminate called after throwing an instance of 'int' Abort trap
If i try with -r option, there was no error, but i got poor mapping result like this:# reads processed: 5821424
reads with at least one reported alignment: 1449 (0.02%)
reads that failed to align: 5819975 (99.98%)
Reported 1449 alignments to 1 output stream(s)
And i just edited my question with the more information of the file.
if i run with bowtie --phred64-quals -5 6 -3 6 -S: Error: reads file does not look like a FASTQ file
any suggestions??
see my EDIT above.