Skip to content

Commit

Permalink
Merge pull request #10 from tcezard/independent_merge_per_group
Browse files Browse the repository at this point in the history
Make multiple workflow independent
  • Loading branch information
tcezard authored Jul 27, 2022
2 parents 5be6c66 + 31b47b4 commit 2b20642
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion eva_vcf_merge/merge.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def generate_merge_pipeline(self, merge_type, vcf_groups, chunk_size):
process_command=self.concat_command
)
pipeline = NextFlowPipeline.join_pipelines(compress_pipeline, merge_pipeline)
full_pipeline = NextFlowPipeline.join_pipelines(full_pipeline, pipeline)
full_pipeline = NextFlowPipeline.join_pipelines(full_pipeline, pipeline, with_dependencies=False)
merged_filenames[alias] = merged_filename
return full_pipeline, merged_filenames

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
ebi_eva_common_pyutils>=0.3.15
ebi_eva_common_pyutils>=0.3.22
pysam~=0.16
pytest~=6.2

0 comments on commit 2b20642

Please sign in to comment.