Skip to content

Commit

Permalink
Fix chromsome splitting regression causing test failures
Browse files Browse the repository at this point in the history
  • Loading branch information
ssadedin committed Aug 26, 2014
1 parent cccf4df commit b2bdf7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/groovy/bpipe/PipelineCategory.groovy
Expand Up @@ -211,7 +211,7 @@ class PipelineCategory {
log.info "Processing segment ${s.hashCode()}"
chrs.each { chr ->
log.info "Creating pipeline to run on chromosome $chr"
Pipeline child = Pipeline.currentRuntimePipeline.get().fork(chr)
Pipeline child = Pipeline.currentRuntimePipeline.get().fork(chr.toString())
currentStage.children << child
Closure segmentClosure = s
threads << {
Expand Down

0 comments on commit b2bdf7c

Please sign in to comment.