├── .gitattributes ├── .gitignore ├── .gitpod.yml ├── .nf-core.yml ├── README.md ├── configs └── multiqc.config ├── functions └── local │ └── utils.nf ├── main.nf ├── modules └── local │ └── nextflow │ └── run │ └── main.nf ├── nextflow.config ├── nf-test.config ├── params.yml ├── pixi.lock ├── pixi.toml └── tests ├── data ├── fetchngs_taxprofiler_params.yml ├── fetchngs_taxprofiler_samplesheet.csv └── mag_params.yml ├── functions └── local │ ├── utils.nf.test │ └── utils.nf.test.snap ├── main.nf.test ├── modules └── local │ └── nextflow │ └── run │ ├── main.nf.test │ └── main.nf.test.snap └── nextflow.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahesh-panchal/nf-cascade/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahesh-panchal/nf-cascade/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahesh-panchal/nf-cascade/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.nf-core.yml: -------------------------------------------------------------------------------- 1 | repository_type: pipeline 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahesh-panchal/nf-cascade/HEAD/README.md -------------------------------------------------------------------------------- /configs/multiqc.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahesh-panchal/nf-cascade/HEAD/configs/multiqc.config -------------------------------------------------------------------------------- /functions/local/utils.nf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahesh-panchal/nf-cascade/HEAD/functions/local/utils.nf -------------------------------------------------------------------------------- /main.nf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahesh-panchal/nf-cascade/HEAD/main.nf -------------------------------------------------------------------------------- /modules/local/nextflow/run/main.nf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahesh-panchal/nf-cascade/HEAD/modules/local/nextflow/run/main.nf -------------------------------------------------------------------------------- /nextflow.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahesh-panchal/nf-cascade/HEAD/nextflow.config -------------------------------------------------------------------------------- /nf-test.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahesh-panchal/nf-cascade/HEAD/nf-test.config -------------------------------------------------------------------------------- /params.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahesh-panchal/nf-cascade/HEAD/params.yml -------------------------------------------------------------------------------- /pixi.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahesh-panchal/nf-cascade/HEAD/pixi.lock -------------------------------------------------------------------------------- /pixi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahesh-panchal/nf-cascade/HEAD/pixi.toml -------------------------------------------------------------------------------- /tests/data/fetchngs_taxprofiler_params.yml: -------------------------------------------------------------------------------- 1 | nf_core_pipeline: taxprofiler -------------------------------------------------------------------------------- /tests/data/fetchngs_taxprofiler_samplesheet.csv: -------------------------------------------------------------------------------- 1 | ERR3579671 -------------------------------------------------------------------------------- /tests/data/mag_params.yml: -------------------------------------------------------------------------------- 1 | single_end: true -------------------------------------------------------------------------------- /tests/functions/local/utils.nf.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahesh-panchal/nf-cascade/HEAD/tests/functions/local/utils.nf.test -------------------------------------------------------------------------------- /tests/functions/local/utils.nf.test.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahesh-panchal/nf-cascade/HEAD/tests/functions/local/utils.nf.test.snap -------------------------------------------------------------------------------- /tests/main.nf.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahesh-panchal/nf-cascade/HEAD/tests/main.nf.test -------------------------------------------------------------------------------- /tests/modules/local/nextflow/run/main.nf.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahesh-panchal/nf-cascade/HEAD/tests/modules/local/nextflow/run/main.nf.test -------------------------------------------------------------------------------- /tests/modules/local/nextflow/run/main.nf.test.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahesh-panchal/nf-cascade/HEAD/tests/modules/local/nextflow/run/main.nf.test.snap -------------------------------------------------------------------------------- /tests/nextflow.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahesh-panchal/nf-cascade/HEAD/tests/nextflow.config --------------------------------------------------------------------------------