ohsu-cedar-comp-hub / WGS-nextflow-workflow

Apache License 2.0
3 stars 1 forks source link

Alignment workflow #52

Closed rlancaster96 closed 4 months ago

rlancaster96 commented 5 months ago

config file must be updated defining what containers to run for each process like this:


singularity {
    enabled = true
    autoMounts = true
    cacheDir = '/path/to/cache/singularity'
    }

// Define containers for each process
process {
    withName:FastQC {
        container = '/path/to/file/fastqc.sif'
    }

    withName:TrimmomaticPE {
        container = '/path/to/file/trimmomatic.sif'
    }
}