Ubuntu – nextflow reading bash script from bin folder but not Rscript
I am developing a nextflow based pipeline, I have two processes for downloading files which are given below, process templateExample{ publishDir "data_analysis_files", mode:'copy' output: path "*_gex.csv" , emit: count_files script: ''' "download_files.sh" ''' } process read_count_p{ publishDir "results",mode:'copy' input: path…