TWOBITTOFA

https://img.shields.io/github/issues-pr/snakemake/snakemake-wrappers/bio/ucsc/twoBitToFa?label=version%20update%20pull%20requests

Convert *.2bit file to *.fa file (see http://hgdownload.soe.ucsc.edu/admin/exe/linux.x86_64/FOOTER.txt)

Example

This wrapper can be used in the following way:

rule twoBitToFa:
    input:
        "{sample}.2bit"
    output:
        "{sample}.fa"
    log:
        "logs/{sample}.2bit_to_fa.log"
    params:
        "" # optional params string
    wrapper:
        "v3.7.0-10-g491d5b6/bio/ucsc/twoBitToFa"

Note that input, output and log file paths can be chosen freely.

When running with

snakemake --use-conda

the software dependencies will be automatically deployed into an isolated environment before execution.

Software dependencies

  • ucsc-twobittofa=455

Input/Output

Input:

  • Path to genome *.2bit file

Output:

  • Path to output ‘*.fa’ file

Authors

  • Roman Cherniatchik

Code

"""Snakemake wrapper for *.2bit to *.fa conversion using UCSC twoBitToFa tool."""

# http://hgdownload.soe.ucsc.edu/admin/exe/linux.x86_64/FOOTER.txt

__author__ = "Roman Chernyatchik"
__copyright__ = "Copyright (c) 2019 JetBrains"
__email__ = "roman.chernyatchik@jetbrains.com"
__license__ = "MIT"

from snakemake.shell import shell

log = snakemake.log_fmt_shell(stdout=True, stderr=True)
extra = snakemake.params.get("extra", "")

shell("twoBitToFa {extra} {snakemake.input} {snakemake.output} {log}")