Skip to content
Snippets Groups Projects
Commit 9d71ae8e authored by Gervaise Henry's avatar Gervaise Henry :cowboy:
Browse files

Merge branch 'develop' into 'master'

Develop

See merge request !12
parents 206f602b 26089daa
1 merge request!12Develop
Pipeline #3916 passed with stage
in 12 seconds
...@@ -296,14 +296,17 @@ $RECYCLE.BIN/ ...@@ -296,14 +296,17 @@ $RECYCLE.BIN/
# End of https://www.gitignore.io/api/r,perl,macos,linux,python,windows # End of https://www.gitignore.io/api/r,perl,macos,linux,python,windows
# nextflow analysis folders/files # nextflow analysis folders/files
/test_data/*.fastq.gz /test_data/*
/test_data/*.fastq
/workflow/.nextflow/* /workflow/.nextflow/*
/workflow/work/* /workflow/work/*
/workflow/output/* /workflow/output/*
/.nextflow/*
/data/*
/work/*
/output/*
pipeline_trace*.txt* pipeline_trace*.txt*
.nextflow*.log* .nextflow*.log*
report.html* report*.html*
timeline*.html* timeline*.html*
*~ *~
......
process { process {
executor = 'slurm' executor = 'slurm'
queue='super' queue='super'
// Process specific configuration
$checkDesignFile {
module = ['python/3.6.1-2-anaconda']
executor = 'local'
}
$count2 {
module = ['cellranger/2.1.1']
}
$count3 {
module = ['cellranger/3.0.1']
}
} }
trace { trace {
......
...@@ -8,7 +8,7 @@ params.run = "TRUE" ...@@ -8,7 +8,7 @@ params.run = "TRUE"
process copy { process copy {
publishDir "$baseDir/output/", mode: 'copy' publishDir "$baseDir/output/", mode: 'symlink'
input: input:
...@@ -22,6 +22,6 @@ process copy { ...@@ -22,6 +22,6 @@ process copy {
script: script:
""" """
cp -r /project/shared/bicf_workflow_ref/tcga_shiny_app_data/* . ln -s /project/shared/bicf_workflow_ref/tcga_shiny_app_data/* .
""" """
} }
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment