This is a test version of Biostars. For the public version, visit https://www.biostars.org.
best tool for the pipeline wrapper

I have made a pipeline for our scRNAseq and every time I have to copy the workflow to the directory and run it. So I decided to make a wrapper for it to just give the input data location and run the pipeline. Do you know which program or programming language is the best for this purpose

pipeline

Actually I think it's good you have to copy the workflow to the directory to run it. Then at least you have a versioned paper trail.

2 answers

Go for snakemake. It can wrap a shell command with minimum work, can be incrementally abstracted and customized and personally, I love the --dry-run option.

Here it depends on how complicated your pipeline is,

start with shell scripts, you can use a makefile,

as you progress start exploring more advanced solutions like snakemake that Ram suggested

Log in to answer this question.