I am trying to run samtools for SNP detection, but neither mpileup or the deprecated pileup produces any output.
My data are in SAM format, which I convert to BAM using samtools thusly:
./samtools view -bSt FAIFILE.fai INFILE.sam > OUTFILE.bam
No errors, seem to get a functional BAM file.
Now, following the manual,
./samtools mpileup -ugf REFSEQ.fasta INFILE.bam | bcftools view -bvcg - > var.raw.bcf
This produces the following output to sdterr, and no output to screen
[mpileup] 1 samples in 1 input files
<mpileup> Set max per-sample depth to 8000
I have aslo tried a similar approach with pileup:
./samtools pileup -vcf REFSEQ.fasta INFILE.bam
This computes for LONG time, but still produces no output.
I have no idea what is going wrong... Please help!
Sasha
My data are in SAM format, which I convert to BAM using samtools thusly:
./samtools view -bSt FAIFILE.fai INFILE.sam > OUTFILE.bam
No errors, seem to get a functional BAM file.
Now, following the manual,
./samtools mpileup -ugf REFSEQ.fasta INFILE.bam | bcftools view -bvcg - > var.raw.bcf
This produces the following output to sdterr, and no output to screen
[mpileup] 1 samples in 1 input files
<mpileup> Set max per-sample depth to 8000
I have aslo tried a similar approach with pileup:
./samtools pileup -vcf REFSEQ.fasta INFILE.bam
This computes for LONG time, but still produces no output.
I have no idea what is going wrong... Please help!
Sasha
Comment