Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tasks
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
biowdl
tasks
Commits
6cccf353
Commit
6cccf353
authored
7 years ago
by
Ruben Vorderman
Browse files
Options
Downloads
Patches
Plain Diff
work with adapterlist
parent
87c555a6
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cutadapt.wdl
+6
-3
6 additions, 3 deletions
cutadapt.wdl
with
6 additions
and
3 deletions
cutadapt.wdl
+
6
−
3
View file @
6cccf353
...
@@ -60,9 +60,12 @@ task cutadapt {
...
@@ -60,9 +60,12 @@ task cutadapt {
${"source activate " + condaEnv}
${"source activate " + condaEnv}
cutadapt \
cutadapt \
${"--cores=" + cores} \
${"--cores=" + cores} \
${sep="-a " "-a " + adapter} ${"-A " + adapterRead2} \
${true="-a " false="" defined(adapter)} ${sep=" -a " adapter} \
${"-g" + front} ${"-G" + frontRead2} \
${true="-A " false="" defined(adapterRead2)} ${sep=" -A " adapterRead2} \
${"-b " + anywhere} ${"-B" + anywhereRead2} \
${true="-g " false="" defined(front)} ${sep=" -g " front} \
${true="-G " false="" defined(frontRead2)} ${sep=" -G " frontRead2} \
${true="-b " false="" defined(anywhere)} ${sep=" -a " anywhere} \
${true="-B " false="" defined(anywhereRead2)} ${sep=" -B " anywhereRead2} \
--output ${read1output} ${"--paired-output " + read2output} \
--output ${read1output} ${"--paired-output " + read2output} \
${"--to-short-output " + tooShortOutputPath} ${"--to-short-paired-output " + tooShortPairedOutputPath} \
${"--to-short-output " + tooShortOutputPath} ${"--to-short-paired-output " + tooShortPairedOutputPath} \
${"--to-long-output " + tooLongOutputPath} ${"--to-long-paired-output " + tooLongPairedOutputPath} \
${"--to-long-output " + tooLongOutputPath} ${"--to-long-paired-output " + tooLongPairedOutputPath} \
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment