This is a test version of Biostars. For the public version, visit https://www.biostars.org.
variant calling

Hi everyone,

I must perform somatic variant calling on ovarian samples (targeted sequencing performed with Illumina). I do not have the control match; it is still correct to use Mutect2 or do you have any other tool to suggest me ? Moreover, I'd like to know if I should perform local realignment around indels.

Thanks in advance

mutect2

2 answers

Hi!

You can use Mutect2 with tumor only mode using a PoN and germline resource.

https://gatk.broadinstitute.org/hc/en-us/articles/360037593851-Mutect2

Consider filtering as well, but from what i have read from others, the whole tumor-only procedure is not advisable.

As for the realignment, i think's it's not neccesary anymore but please read: https://gatk.broadinstitute.org/hc/en-us pipeline part.

It is not really clear to me how to build or where to find PoN and a germline resource.

freebayes can do this, too, and it's easy to specify genomic intervals. For example:

freebayes \
  --region chr3:178148114-180240093 \
  --fasta-reference ref_genome.fa \
  --bam reheader.bam \
  --vcf freebayes_PIK3CA.vcf ;

Obviously there are limitations to the results produced.

Kevin

Log in to answer this question.