-
Notifications
You must be signed in to change notification settings - Fork 4
/
job_nf
executable file
·34 lines (27 loc) · 1.1 KB
/
job_nf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/sh
#### Cluster specific arguments ####
#SBATCH --job-name=NF_MUM
##SBATCH --output=logs
#SBATCH --error=err
#SBATCH --partition=EPYC
#SBATCH --nodes=1
#SBATCH --ntasks=23
#SBATCH --cpus-per-task=1
#SBATCH --mem=64G
#SBATCH --time=12:00:00
#SBATCH --account=cdslab
module load singularity/3.10.4
module load java/1.8.0
# module load R/4.2.3
REPO_PATH="/u/cdslab/ebusca00/scratch/GitHub/nextflow_modules"
RESULTS_PATH="/u/cdslab/ebusca00/scratch/nextflow_runs/results_singlesample/"
# REPO_PATH="/u/cdslab/ggandolfi/scratch/nextflow_modules"
# RESULTS_PATH="/orfeo/cephfs/scratch/cdslab/ggandolfi/nextflow_results"
# RESULTS_PATH="/u/cdslab/ggandolfi/scratch/nextflow_modules_fork/results/"
/orfeo/LTS/CDSLab/LT_storage/ncalonaci/nextflow/nextflow run $REPO_PATH/main.nf \
-resume \
-c $REPO_PATH/modules/config/nextflow_config_slurm \
--samples $REPO_PATH/sample_input.csv --publish_dir $RESULTS_PATH \
--tools "viber,mobster,pyclone-vi" --mode "singlesample" --pyclonevi_n_restarts "1" \
--mobster_samples "1" --mobster_K "2" \
--viber_K "4" --viber_samples "1" --viber_maxIter "50"