Skip to content

Commit

Permalink
reset
Browse files Browse the repository at this point in the history
  • Loading branch information
Bontempogianpaolo1 committed Jan 28, 2022
1 parent 6fed10b commit 54b4cbb
Show file tree
Hide file tree
Showing 2 changed files with 84 additions and 81 deletions.
36 changes: 22 additions & 14 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ manifest {
mainScript = 'pipeline.nf'
}

params {
params {
help = false
dnabam = false
single_end = false
Expand All @@ -29,40 +29,48 @@ params {
dnareads_tumor = ""
dnareads_normal = ""

envPath_ericscript = "/opt/conda/envs/ericscript/bin"
envPath_arriba = "/opt/conda/envs/arriba/"
envPath_fusioncatcher = "/opt/conda/envs/fusioncatcher/bin"
envPath_integrate = "/opt/conda/envs/integrate/bin"
envPath_genefuse = "/opt/conda/envs/genefuse/bin"
envPath_ericscript = "/homes/gbontempo/.conda/envs/ericscript/bin"
envPath_arriba = "/homes/gbontempo/.conda/envs/arriba/"
envPath_fusioncatcher = "/homes/gbontempo/.conda/envs/fusioncatcher/bin"
envPath_integrate = "/homes/gbontempo/.conda/envs/integrate/bin"
envPath_genefuse = "/homes/gbontempo/.conda/envs/genefuse/bin"

nthreads = 8
max_cpus = 16
}
max_cpus = 16
}

process {
executor = "slurm"
memory = '20GB'
queue= 'prod'
cpus= 3
container = 'federicacitarrella/pipeline:latest'
publishDir = [path: params.outdir, mode: 'copy', overwrite: 'true']
}
}

executor {
memory = '20GB'

}

profiles {
local {
params.feelnc_opts = "--monoex=1 --size=50 --minfrac_over=1.0 "
params.feelnc_opts = "--monoex=1 --size=50 --minfrac_over=1.0 "
}
docker {
params.feelnc_opts = "--monoex=1 --size=50 --minfrac_over=1.0 "
params.feelnc_opts = "--monoex=1 --size=50 --minfrac_over=1.0 "
docker.enabled = true
docker.fixOwnership = true
}
test_docker{
params.rnareads = "$baseDir/tutorial/reads_{1,2}.fq.gz"
params.dnareads_tumor = "$baseDir/tutorial/reads_{3,4}.fq.gz"
params.feelnc_opts = "--monoex=1 --size=50 --minfrac_over=1.0 "
params.feelnc_opts = "--monoex=1 --size=50 --minfrac_over=1.0 "
docker.enabled = true
docker.fixOwnership = true
}
test_local{
params.rnareads = "$baseDir/tutorial/reads_{1,2}.fq.gz"
params.dnareads_tumor = "$baseDir/tutorial/reads_{3,4}.fq.gz"
params.feelnc_opts = "--monoex=1 --size=50 --minfrac_over=1.0 "
params.feelnc_opts = "--monoex=1 --size=50 --minfrac_over=1.0 "
}
}
Loading

0 comments on commit 54b4cbb

Please sign in to comment.