Skip to content
Snippets Groups Projects
Commit d02ecf59 authored by Venkat Malladi's avatar Venkat Malladi
Browse files

Fix path to design file so that its passed ocorrectly for astrocyte.

parent 66fd50c5
Branches
Tags
No related merge requests found
Pipeline #7392 passed with stages
in 9 seconds
......@@ -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
......
......@@ -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"
......
......@@ -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'
}
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