Workflow Steps and Code Snippets

435 tagged steps and code snippets that match keyword Bowtie

Snakemake pipeline for detection limit test from laser-microdissected samples

21
22
23
24
25
26
27
28
29
shell:
    """
    bowtie2-build \
        --threads {threads} \
        {params.extra} \
        {input.reference} \
        {output.mock} \
    2> {log} 1>&2
    """
21
22
23
24
25
26
27
28
29
shell:
    """
    bowtie2-build \
        --threads {threads} \
        {params.extra} \
        {input.reference} \
        {output.mock} \
    2> {log} 1>&2
    """

Bioinfo Macro Host Genome Short Variant Discovery Workflow

29
30
31
32
33
34
35
36
37
shell:
    """
    bowtie2-build \
        --threads {threads} \
        {params.extra} \
        {input.reference} \
        {params.output_path} \
    2> {log} 1>&2
    """
61
62
63
64
65
66
67
68
69
70
shell:
    """
    multiqc \
        --title bowtie2 \
        --force \
        --filename bowtie2 \
        --outdir {params.dir} \
        {input} \
    2> {log} 1>&2
    """

Snakemake workflow: Bioinfo_Macro_Microbial_Metatranscriptomics

17
18
19
20
21
22
23
24
25
shell:
    """
    bowtie2-build \
        --threads {threads} \
        {params.extra} \
        {input.reference} \
        {output.prefix} \
    2> {log} 1>&2
    """
133
134
135
136
137
138
139
140
141
142
shell:
    """
    multiqc \
        --title bowtie2 \
        --force \
        --filename bowtie2 \
        --outdir {params.dir} \
        {input} \
    2> {log} 1>&2
    """

Snakemake workflow: Bioinfo_Macro_Microbial_Metatranscriptomics

17
18
19
20
21
22
23
24
25
shell:
    """
    bowtie2-build \
        --threads {threads} \
        {params.extra} \
        {input.reference} \
        {output.prefix} \
    2> {log} 1>&2
    """
133
134
135
136
137
138
139
140
141
142
shell:
    """
    multiqc \
        --title bowtie2 \
        --force \
        --filename bowtie2 \
        --outdir {params.dir} \
        {input} \
    2> {log} 1>&2
    """

Snakemake pipeline for detection limit test

21
22
23
24
25
26
27
28
29
shell:
    """
    bowtie2-build \
        --threads {threads} \
        {params.extra} \
        {input.reference} \
        {output.mock} \
    2> {log} 1>&2
    """
21
22
23
24
25
26
27
28
29
shell:
    """
    bowtie2-build \
        --threads {threads} \
        {params.extra} \
        {input.reference} \
        {output.mock} \
    2> {log} 1>&2
    """
tool / biotools

Bowtie 2

Bowtie 2 is an ultrafast and memory-efficient tool for aligning sequencing reads to long reference sequences. It is particularly good at aligning reads of about 50 up to 100s or 1,000s of characters, and particularly good at aligning to relatively long (e.g. mammalian) genomes. Bowtie 2 indexes the genome with an FM Index to keep its memory footprint small: for the human genome, its memory footprint is typically around 3.2 GB. Bowtie 2 supports gapped, local, and paired-end alignment modes.