Hi,
I am trying to subsample from a bam file using the samtools view -s
command. This is working when sampling 50% or lower (-s 42.50
, 42
being the seed), but anything higher fails (returns an empty file).
He are the exact commands I use
samtools view -s 0.25 -b chr6_all.bam > chr6_25p.sam #works
samtools view -s 0.50 -b chr6_all.bam > chr6_50p.sam #works
samtools view -s 0.75 -b chr6_all.bam > chr6_75p.sam #does not work
I also made sure that 49% is working, but 51% is not. Any ideas, suggestions, or is this an intended mechanic? There doesn't seem to be any documentation about the subsampling parameter in samtools docfile.
Thanks
Hi! This post was very useful to me. I am trying however to visualise my reduced bam file on IGV but an index is required. Is there a way to create a index for the bam file that is randomly subsampled with samtools -s ?
Thanks
Giulia
samtools index, nothing special here
Thank you very much