Skip to content

Commit

Permalink
fix: location change
Browse files Browse the repository at this point in the history
  • Loading branch information
dnousome committed Nov 15, 2023
1 parent 73aa49a commit f6d6c7b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
13 changes: 5 additions & 8 deletions workflow/modules/copynumber.nf
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@ FREECSIGNIFICANCE = params.freec_significance
FREECPLOT = params.freec_plot
}

cobalt="/data/SCLC-BRAINMETS/cn/cobalt_v1.14.jar"
amber="/data/SCLC-BRAINMETS/cn/amber-3.9.jar"
purple="/data/SCLC-BRAINMETS/cn/purple_v3.8.2.jar"
GERMLINEHET="/data/SCLC-BRAINMETS/cn/copy_number/GermlineHetPon.38.vcf.gz"
GCPROFILE='/data/SCLC-BRAINMETS/cn/copy_number/GC_profile.1000bp.38.cnp'
DIPLODREG='/data/SCLC-BRAINMETS/cn/copy_number/DiploidRegions.38.bed.gz'
Expand Down Expand Up @@ -240,7 +237,7 @@ process amber_tonly {

"""
java -Xmx32G -cp $amber com.hartwig.hmftools.amber.AmberApplication \
java -Xmx32G -cp amber.jar com.hartwig.hmftools.amber.AmberApplication \
-tumor ${tumorname} -tumor_bam ${tumor} \
-output_dir ${tumorname}_amber \
-threads $task.cpus \
Expand Down Expand Up @@ -276,7 +273,7 @@ process amber_tn {

"""
java -Xmx32G -cp $amber com.hartwig.hmftools.amber.AmberApplication \
java -Xmx32G -cp amber.jar com.hartwig.hmftools.amber.AmberApplication \
-tumor ${tumorname} -tumor_bam ${tumor} \
-reference ${normalname} -reference_bam ${normal} \
-output_dir ${tumorname}_vs_${normalname}_amber \
Expand Down Expand Up @@ -311,7 +308,7 @@ process cobalt_tonly {

"""
java -jar -Xmx8G $cobalt \
java -jar -Xmx8G cobalt.jar \
-tumor ${tumorname} -tumor_bam ${tumor} \
-output_dir ${tumorname}_cobalt \
-threads $task.cpus \
Expand Down Expand Up @@ -346,7 +343,7 @@ process cobalt_tn {

"""
java -jar -Xmx8G $cobalt \
java -jar -Xmx8G cobalt.jar \
-tumor ${tumorname} -tumor_bam ${tumorname} \
-reference ${normalname} -reference_bam ${normal} \
-output_dir ${tumorname}_vs_${normalname}_cobalt \
Expand Down Expand Up @@ -382,7 +379,7 @@ process purple {

"""
java -jar $purple \
java -jar purple.jar \
-tumor ${tumorname} \
-amber ${amberin} \
-cobalt ${cobaltin} \
Expand Down
1 change: 0 additions & 1 deletion workflow/modules/trim_align.nf
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ process bwamem2 {
tuple val(samplename), path("${samplename}.bam"), path("${samplename}.bai")

script:
//bwamem2, samblaster, samtools sort for marking duplicates;
"""
bwa-mem2 mem -M \
Expand Down

0 comments on commit f6d6c7b

Please sign in to comment.