Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
khalid
radseqref
Commits
64b1dbc4
Commit
64b1dbc4
authored
Mar 09, 2021
by
khalid
Browse files
remove bug for bowtie SE params
parent
81c86bc7
Changes
1
Hide whitespace changes
Inline
Side-by-side
files/Snakefile
View file @
64b1dbc4
...
...
@@ -8,7 +8,10 @@ import csv
#############
#
Wildcards
#
#############
#
le
nom
des
sample
et
les
id
ne
doivent
pas
contenir
de
"/"
cela
evite
de
boucler
dans
les
arborescences
wildcard_constraints
:
sample
=
"[^\/]+"
,
id
=
"[^\/]+"
STEPS
=
config
[
"steps"
]
PREPARE_REPORT_OUTPUTS
=
config
[
"prepare_report_outputs"
]
PREPARE_REPORT_SCRIPTS
=
config
[
"prepare_report_scripts"
]
...
...
@@ -413,8 +416,8 @@ rule bowtie_SE:
params
:
indexPrefix
=
config
[
"bowtie_index_path"
]+
"/index"
,
mult_align_limit
=
config
[
"bowtie_mult_align_limit"
],
best
=
config
[
"bowtie_best"
],
strata
=
config
[
"bowtie_strata"
]
best
=
"--best"
if
(
config
[
"bowtie_best"
]
)
else
""
,
strata
=
"--strata"
if
(
config
[
"bowtie_strata"
]
)
else
""
shell
:
"if [ -s {input.read} ]; then "
"bowtie "
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment