nextflow main.nf -resume -params-file config.yaml -name run1 --outputfolder output1
The resume option uses cached results (to mark as dirty, modify the corresponding .nf).
The main.nf
workflow saves it's outputs to a folder called output1
Nextflow Documentation and Patterns (not in DSL 2, but still valuable)
├─.nextflow/ - (autogenerated) nextflow internals ├─ data/ - input files ├─ nextflow_modules/ - do not need to change ├─ output/ - (autogen.) ├─ scripts/ - scripts - the code that is called ├─ work/ - (autogen.) nextflow's cache, you can look here to get valuable information on how your script run (the 'random' characters) ├─ main.nf - main nextflow workflow ├─ nextflow.config - nextflow execution configurations (how many CPUs/RAM, SLURM, etc.) ├─ config.yaml - yaml file with all configurations
-
Rearrange outputs - ideally the folder structure should look like
├─ experiment/ - top level directory with data ├─ exports/ - top level directory with raw data ├─ outputs/ - outputs from nextflow (all of them) ├─ nextflow/ - everything that is only nextflow related - no data
-
Remove hardcoded parameters in the scripts file out to a parameter file. More generally, clean up scripts. All parameters should be in parameter file, and not in
.py
scripts. -
Turn all
plt.imshow
orplt.plot
calls intoplt.imsave
orplt.savefig
files after drawing plot - keep all intermediate output that is small pngs. Is much cheaper to have these once they've been computed than investigating a 25 GB file. -
Clean up readme/repository information - make it more comprehensive.
- Add flowchart of what scripts are called in what order, and what parameter files they need. More comprehensive > less - e.g.
main.nf
->process
->unwarp/distor_mat
etc. This should include ideally all files that are used, created, etc. - Delete unnecessary files.
- Add flowchart of what scripts are called in what order, and what parameter files they need. More comprehensive > less - e.g.
Python scripts written by Tom Pekin, workflow, parallelisation and modifications of scripts by Pablo Fernández Robledo. Also Wouter Van den Broek with the unwarping code for the Dectris detector
Contact: tcpekin@gmail.com and robledop@physik.hu-berlin.de or pablofrldp@gmail.com