diff --git a/.gitignore b/.gitignore index 649d90a68d1a343ae5184ea68ad9f3637e22dbe9..8ce1370cbc503d2a01c23d42947272fcd8be5d56 100644 --- a/.gitignore +++ b/.gitignore @@ -296,14 +296,17 @@ $RECYCLE.BIN/ # End of https://www.gitignore.io/api/r,perl,macos,linux,python,windows # nextflow analysis folders/files -/test_data/*.fastq.gz -/test_data/*.fastq +/test_data/* /workflow/.nextflow/* /workflow/work/* /workflow/output/* +/.nextflow/* +/data/* +/work/* +/output/* pipeline_trace*.txt* .nextflow*.log* -report.html* +report*.html* timeline*.html* *~ diff --git a/workflow/conf/biohpc.config b/workflow/conf/biohpc.config index 0b515ecfaa151237a5969d4bf10ad017ded55e4f..8d3f85168063577cbfbbe214910acd2c8a681dd5 100755 --- a/workflow/conf/biohpc.config +++ b/workflow/conf/biohpc.config @@ -1,18 +1,6 @@ process { executor = 'slurm' 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 { diff --git a/workflow/main.nf b/workflow/main.nf index 1fe01633f780b3173cd6acc67146968e98148c0a..189372ada114e64d67efb48c63e9f7bef8e2c39e 100755 --- a/workflow/main.nf +++ b/workflow/main.nf @@ -8,7 +8,7 @@ params.run = "TRUE" process copy { - publishDir "$baseDir/output/", mode: 'copy' + publishDir "$baseDir/output/", mode: 'symlink' input: @@ -22,6 +22,6 @@ process copy { script: """ - cp -r /project/shared/bicf_workflow_ref/tcga_shiny_app_data/* . + ln -s /project/shared/bicf_workflow_ref/tcga_shiny_app_data/* . """ }