You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The only important outputs are: the final VCF and PDF files. All other intermediate files should only be present in nextflow work directory. This will imply:
removing storeDir directives in split_bed, samtools_mpileup and mpileup2table processes
deleting the intermediate VCF outputs at the end of collect_vcf_result (see how we delete the empty pdf files).
renaming the VCF output dir as PDF
deleting the PDF folder and the all_variants.vcf file as the first step in the pipeline
It will has the advantage that the pipeline will be restarted from the beginning by default. We should note in the manual that the output is erased when it exists already. Users will still have the option to resume an interrupted pipeline by adding the -resume option to the command line (add that to the manual too).
The text was updated successfully, but these errors were encountered:
any existing file in the specified folder will be overridden (default: true during normal pipeline execution and false when pipeline execution is resumed).
The only important outputs are: the final VCF and PDF files. All other intermediate files should only be present in nextflow
work
directory. This will imply:storeDir
directives insplit_bed
,samtools_mpileup
andmpileup2table
processescollect_vcf_result
(see how we delete the empty pdf files).all_variants.vcf
file as the first step in the pipelineIt will has the advantage that the pipeline will be restarted from the beginning by default. We should note in the manual that the output is erased when it exists already. Users will still have the option to resume an interrupted pipeline by adding the
-resume
option to the command line (add that to the manual too).The text was updated successfully, but these errors were encountered: