Workflow Steps and Code Snippets

450 tagged steps and code snippets that match keyword tabix

39
40
shell:
    "for i in {input.vcfs}; do tabix -l $i; done > {output}"

Whole exome sequencing snakemake workflow based on GATK best practice

1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
shell:
    """
    gatk --java-options '-DGATK_STACKTRACE_ON_USER_EXCEPTION=true' \
        GatherVcfsCloud \
        --ignore-safety-checks \
        --gather-type BLOCK \
        {params.gvcfs} \
        -O {output}

    tabix {output}
    """
tool / bioconda

tabix

C library and command line tools for high-throughput sequencing data formats.