--
You received this message because you are subscribed to the Google Groups "Nextflow" group.
To unsubscribe from this group and stop receiving emails from it, send an email to nextflow+unsubscribe@googlegroups.com.
Visit this group at https://groups.google.com/group/nextflow.
For more options, visit https://groups.google.com/d/optout.
--
Thanks for the comments. I will simplify the code, but if I would use storeDir on the downloadData it stores the uncompressed data, which is on the one hand not what I want and on the other hand it would then restarting the pipeline after removing the work directory with gzipData.
The idea is to have certain waypoints in my long pipeline where I actually permanently store the data and then can remove the huge work directory to save disc space. If I then later return to that pipeline and want to add stuff I want to start from the closest waypoint and only do that part of the pipeline that is new, not all the intermediate steps I deleted, because I do not need them anymore. The storeDir does the creation of the waypoints perfectly, but I cannot find anything to control the workflow so it starts at the waypoint, not repeating all intermediate steps before the waypoint.
--
In this case I would suggest to merge `downloadData` and `gzipData` in a single process. Since they are sequential tasks there's any benefit in using two separate processes and in this way you could store the compressed data.p
On Thu, Dec 22, 2016 at 3:17 PM, Stephan Schmeing <stephan....@gmail.com> wrote:
Thanks for the comments. I will simplify the code, but if I would use storeDir on the downloadData it stores the uncompressed data, which is on the one hand not what I want and on the other hand it would then restarting the pipeline after removing the work directory with gzipData.
The idea is to have certain waypoints in my long pipeline where I actually permanently store the data and then can remove the huge work directory to save disc space. If I then later return to that pipeline and want to add stuff I want to start from the closest waypoint and only do that part of the pipeline that is new, not all the intermediate steps I deleted, because I do not need them anymore. The storeDir does the creation of the waypoints perfectly, but I cannot find anything to control the workflow so it starts at the waypoint, not repeating all intermediate steps before the waypoint.
--
You received this message because you are subscribed to the Google Groups "Nextflow" group.
To unsubscribe from this group and stop receiving emails from it, send an email to nextflow+u...@googlegroups.com.