VCF

Variant Call Format:

The Variant Call Format (VCF) specifies the format of a text file used in bioinformatics for storing gene sequence variations.

Documentation: https://samtools.github.io/hts-specs/VCFv4.3.pdf

Quickstart

from janis_bioinformatics.data_types.vcf import Vcf

w = WorkflowBuilder("my_workflow")

w.input("input_vcf", Vcf(optional=False))

# ...other workflow steps

This page was automatically generated on 2020-12-22.