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
logs, rds, results and temp don't currently get used by the pipeline. modules is used to save all output channel files from every process based on module name, but this was largely used during initial development to easily check outputs of each process without diving into the work directory, and it's not easy for users to find relevant output files unless they know the structure of the pipeline well.
First thoughts:
Remove logs, temp and rds
Create a directory (maybe called rdata or rda) to store the .rda files produced when --rdata true is used, so don't have to dive into work directories; maybe create this directory dynamically during the run if --rdata true
Use results to save filtered and unfiltered output files like the original pipeline, but also have folders for the QC plots
Have a pipeline_info folder like nf-core pipelines that contains the trace, DAG, report and timeline files all about the pipeline execution
The text was updated successfully, but these errors were encountered:
./output
directory currently has the following structure (after a run):logs
,rds
,results
andtemp
don't currently get used by the pipeline.modules
is used to save all output channel files from every process based on module name, but this was largely used during initial development to easily check outputs of each process without diving into thework
directory, and it's not easy for users to find relevant output files unless they know the structure of the pipeline well.First thoughts:
logs
,temp
andrds
rdata
orrda
) to store the.rda
files produced when--rdata true
is used, so don't have to dive into work directories; maybe create this directory dynamically during the run if--rdata true
results
to save filtered and unfiltered output files like the original pipeline, but also have folders for the QC plotspipeline_info
folder likenf-core
pipelines that contains the trace, DAG, report and timeline files all about the pipeline executionThe text was updated successfully, but these errors were encountered: