diff --git a/CHANGELOG.md b/CHANGELOG.md index e8870896121b05cba6ed02568826dc1d6ce961ec..c460776fe7399c9e1d720d528c0cddf5829a78fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. -## [publish_2.0.2 ] - 2020-06-21 +## [publish_2.0.3 ] - 2020-06-21 ### Fixed - Removed biosample, factor, treatment from design file - Updated documentation diff --git a/workflow/main.nf b/workflow/main.nf index 467c8ab25dc3618922a65c51802269ec88f75f49..ec211ccdc5471c10d00fbd9a7088bae5b5705477 100644 --- a/workflow/main.nf +++ b/workflow/main.nf @@ -71,7 +71,7 @@ readsList = Channel // Define regular variables pairedEnd = params.pairedEnd blacklist = params.blacklist -designFile = params.designFile +designFile = Channel.fromPath(params.designFile) genomeSize = params.genomeSize chromSizes = params.chromSizes outDir = params.outDir @@ -100,7 +100,7 @@ process trackStart { "astrocyte": ${params.astrocyte}, \ "status": "started", \ "nextflowVersion": "${workflow.nextflow.version}", \ - "pipelineVersion": "2.0.2", \ + "pipelineVersion": "2.0.3", \ "ci": ${params.ci}, \ "dev": ${params.dev}}' \ "https://xku43pcwnf.execute-api.us-east-1.amazonaws.com/ProdDeploy/pipeline-tracking" diff --git a/workflow/nextflow.config b/workflow/nextflow.config index 2f6a5dc3765a3573655add2753539b31ba3a3cc9..55c6fe3a78bdf147f12db1dc517455f07d481091 100644 --- a/workflow/nextflow.config +++ b/workflow/nextflow.config @@ -25,7 +25,7 @@ manifest { name = 'atacseq_analysis' description = 'BICF ATAC-seq Analysis Workflow.' homePage = 'https://git.biohpc.swmed.edu/BICF/Astrocyte/atacseq_analysis' - version = '2.0.2' + version = '2.0.3' mainScript = 'main.nf' nextflowVersion = '>=0.31.0' }