Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
astrocyte_example_chipseq
Manage
Activity
Members
Labels
Plan
Issues
1
Issue boards
Milestones
Iterations
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Astrocyte
Workflows
BioHPC
astrocyte_example_chipseq
Commits
82caaca4
Commit
82caaca4
authored
9 years ago
by
David Trudgian
Browse files
Options
Downloads
Patches
Plain Diff
Move glob back to web
parent
396c0c8d
Branches
Branches containing commit
Tags
publish_0.0.1
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
workflow/main.nf
+2
-3
2 additions, 3 deletions
workflow/main.nf
with
2 additions
and
3 deletions
workflow/main.nf
+
2
−
3
View file @
82caaca4
...
...
@@ -17,9 +17,8 @@ params.fastq = "$baseDir/../test_data/*.fastq"
params.index = "/project/apps_database/iGenomes/Homo_sapiens/UCSC/hg19/Sequence/BWAIndex/genome.fa"
// First, get the list of fastqs. When multiple files are selected on the web
// interface they will be passed as a comma-separated list. Therefore we use the
// { pattern1,pattern2 } glob syntax to pick all them up.
fastqs = Channel.fromPath( "{" + params.fastq+ ", }" )
// a glob pattern will be passed in
fastqs = Channel.fromPath( params.fastq )
// Now find the path to the BWA index directory
index_path = file(params.index).parent
// And get the name of the actual index inside that directory
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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