pcr_product_anl

public public 1yr ago 0 bookmarks

Usage

''' snakemake
--cores 10
--snakefile /TBI/Share/BioPeople/siyoo/Pipelines/customppl_anlbio_motif/workflow/Snakefile
--configfile /TBI/Share/BioPeople/siyoo/Pipelines/customppl_anlbio_motif/config/config.yaml
--

Code Snippets

27
28
29
30
31
32
33
34
35
36
37
shell:
    "flash"
    " -d {params.outdir}"
    " -o {params.prefix}"
    " --compress"
    " --compress-prog=gzip"
    " --suffix=gz"
    " --threads {threads}"
    " {input.fq1}"
    " {input.fq2}"
    " > {params.outdir}/{params.prefix}.mylog"
50
51
52
53
54
55
shell:
    'python {config[script_home]}/take_product.py'
    ' --primer5 {params.primer5}'
    ' --primer3 {params.primer3}'
    ' --infqgz {input.fqgz}'
    ' --prefix {params.prefix}'
68
69
70
71
72
73
shell:
    'python {config[script_home]}/take_product.py'
    ' --primer5 {params.primer5}'
    ' --primer3 {params.primer3}'
    ' --infqgz {input.fqgz}'
    ' --prefix {params.prefix}'
86
87
88
89
90
91
shell:
    'python {config[script_home]}/take_product.py'
    ' --primer5 {params.primer5}'
    ' --primer3 {params.primer3}'
    ' --infqgz {input.fqgz}'
    ' --prefix {params.prefix}'
100
101
102
103
104
shell:
    "cat {input.ext_fna}"
    " {input.nc1_fna}"
    " {input.nc2_fna}"
    " > {output.merge_fna}"
SnakeMake From line 100 of rules/other.smk
111
112
113
114
shell:
    'python {config[script_home]}/count_product.py'
    ' --ifn {input.merge_fna}'
    ' --ofn {output.clone_fna}'
SnakeMake From line 111 of rules/other.smk
126
127
128
129
130
shell:
    'python {config[script_home]}/lm.py'
    ' --infa {input.fna}'
    ' --prefix {params.prefix}'
    ' --seqtype fna'
SnakeMake From line 126 of rules/other.smk
139
140
141
142
143
shell:
    "cat {input.ext_faa}"
    " {input.nc1_faa}"
    " {input.nc2_faa}"
    " > {output.merge_faa}"
SnakeMake From line 139 of rules/other.smk
150
151
152
153
shell:
    'python {config[script_home]}/count_product.py'
    ' --ifn {input.merge_faa}'
    ' --ofn {output.clone_faa}'
SnakeMake From line 150 of rules/other.smk
165
166
167
168
169
shell:
    'python {config[script_home]}/lm.py'
    ' --infa {input.faa}'
    ' --prefix {params.prefix}'
    ' --seqtype faa'
SnakeMake From line 165 of rules/other.smk
ShowHide 10 more snippets with no or duplicated tags.

Login to post a comment if you would like to share your experience with this workflow.

Do you know this workflow well? If so, you can request seller status , and start supporting this workflow.

Free

Created: 1yr ago
Updated: 1yr ago
Maitainers: public
URL: https://github.com/seung1yoo/pcr_product_anl
Name: pcr_product_anl
Version: 1
Badge:
workflow icon

Insert copied code into your website to add a link to this workflow.

Downloaded: 0
Copyright: Public Domain
License: MIT License
  • Future updates

Related Workflows

cellranger-snakemake-gke
snakemake workflow to run cellranger on a given bucket using gke.
A Snakemake workflow for running cellranger on a given bucket using Google Kubernetes Engine. The usage of this workflow ...