Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cellranger-count
Manage
Activity
Members
Labels
Plan
Issues
3
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Astrocyte
Workflows
Strand Lab
cellranger-count
Commits
4c1b2f4e
Commit
4c1b2f4e
authored
3 years ago
by
Peng Lian
Browse files
Options
Downloads
Patches
Plain Diff
Run with Singularity container
parent
ab1b655e
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
workflow/configs/biohpc.config
+6
-5
6 additions, 5 deletions
workflow/configs/biohpc.config
workflow/main.nf
+5
-0
5 additions, 0 deletions
workflow/main.nf
with
11 additions
and
5 deletions
workflow/configs/biohpc.config
+
6
−
5
View file @
4c1b2f4e
process
{
singularity
{
executor
=
'local'
enabled
=
true
runOptions
=
'--bind /vagrant:/vagrant'
cacheDir
=
"$baseDir/images/singularity"
}
}
executor
{
process
{
name
=
'local'
executor
=
'local'
cpus
=
1
}
}
This diff is collapsed.
Click to expand it.
workflow/main.nf
+
5
−
0
View file @
4c1b2f4e
...
@@ -27,6 +27,7 @@ stories = Channel.fromPath( params.story )
...
@@ -27,6 +27,7 @@ stories = Channel.fromPath( params.story )
process parameters {
process parameters {
cpus 1
cpus 1
container 'ubuntu:latest'
"""
"""
echo "Test Parameters Provided..."
echo "Test Parameters Provided..."
...
@@ -43,6 +44,7 @@ process parameters {
...
@@ -43,6 +44,7 @@ process parameters {
process uppercase {
process uppercase {
cpus 1
cpus 1
container 'ubuntu:latest'
input:
input:
file story from stories
file story from stories
...
@@ -59,6 +61,7 @@ process uppercase {
...
@@ -59,6 +61,7 @@ process uppercase {
process tolines {
process tolines {
cpus 1
cpus 1
container 'ubuntu:latest'
input:
input:
file uppercase from uppercased
file uppercase from uppercased
...
@@ -74,6 +77,8 @@ process tolines {
...
@@ -74,6 +77,8 @@ process tolines {
process wordcounts {
process wordcounts {
container 'ubuntu:latest'
// Publish the outputs we create here into the workflow output directory
// Publish the outputs we create here into the workflow output directory
publishDir "$baseDir/output", mode: 'copy'
publishDir "$baseDir/output", mode: 'copy'
...
...
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