I have paired end DNA-seq data (from illumina platform, named as "test_1.fq.gz" and "test_2.fq.gz"). The format of two files is shown as follows:
@SRR796870.1 FCD0CDMABXX:5:1101:1210:2171 length=90
CCCTGAGTCAGGCACCGGGGATGANTGGTCCTCTCTCAGGAAGTCAAAGCCACCTGGTGGGAGAAGAAGGTCAAGGAGGGATGGACTAGG
+SRR796870.1 FCD0CDMABXX:5:1101:1210:2171 length=90
cececeee^ebd^Wab]a^`[S][B[[[[[eeeeeeddecWdddddd\cdeedeeeedeWRKXLYcc]Wcbdddda_VaURJ]PYcaWc_
@SRR796870.2 FCD0CDMABXX:5:1101:1236:2175 length=90
CAGGGGGCCAGGAGCCATAGGAAGCCCAAGGGAATCCACACCAGAACAGTTTGCTCAAAACAAAGTGGCAGGGGTGGCTCCCGACCGTCC
+SRR796870.2 FCD0CDMABXX:5:1101:1236:2175 length=90
ggfggedgggggegggcgbgdggfgffafdcbbacgcgfagggdegebdadaefedad^ce]dZa[dced`^BBBBBBBBBBBBBBBBBB
I only have fq files as inputs and want to do mapping and SNV calling.
How to do mapping with PE reads, option (1) or option (2)?
(1).
gnumap -g ref.fa -o test.1.out --illumina -v 1 -m 12 -j 10 -h 100 -a .95 -p -c 8 test_1.fq.gz
gnumap -g ref.fa -o test.2.out --illumina -v 1 -m 12 -j 10 -h 100 -a .95 -p -c 8 test_2.fq.gz
then use your scripts to deal with test.1.out and test.2.out? May I have a copy?
(2).
gnumap -g ref.fa -o test.out --illumina -v 1 -m 12 -j 10 -h 100 -a .95 -p -c 8 "$(echo `ls ./test*.fq.gz` |sed -e 's/ /,/g')"
Can the output be used for SNV calling directly? Or some other processes are needed before SNV calling?
Thanks~
Wenqian