Variant calling#

Output Directory: results/variantAnalysis/vcfs/

Rules

  • variantCalling.smk

    • GenerateFreebayesParams

    • VariantCallingFreebayes

  • alignment.smk

    • HISAT2Align

Introduction

An advantage of RNA-Seq-Pop is that it allows us to call genomic variants from RNA-Sequencing data. We use the variant caller freebayes.

freebayes is a widely-used tool for calling genomic variants from next-generation sequencing data. It is a probabilistic variant caller, which means that it uses statistical models to estimate the likelihood that a given sequence represents a true variant, rather than a sequencing error or other type of noise. Although freebayes can be used to call both single nucleotide polymorphisms (SNPs) and insertions and deletions (indels), we filter out indel calls as they likely to be highly unreliable from RNA-Sequencing data.

Given that we are calling SNPs from RNA-Sequencing data, we should not expect the called SNPs to be as accurate as those called from deeply sequenced whole-genome sequencing studies.

Results