Skip to content

Commit

Permalink
change requirements according to Patrick's feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
priesgo committed Aug 26, 2024
1 parent ac1e9a4 commit da57bc5
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 17 deletions.
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,9 @@ trace.txt*
report.html*
test/output
conda_env
__pycache__/
__pycache__/
trace*.txt
dag*.html
report*.html
timeline*.html
venv/
2 changes: 1 addition & 1 deletion main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ nextflow.enable.dsl = 2

include { FASTP } from './modules/01_qc'
include { STAR ; STAR_ARRIBA ; READ_FILTER ; BAM2FASTQ } from './modules/02_alignment'
include { FUSION_CATCHER ; STAR_FUSION ; ARRIBA; FUSION_CATCHER_INDEX } from './modules/03_fusion_callers'
include { FUSION_CATCHER ; STAR_FUSION ; ARRIBA } from './modules/03_fusion_callers'
include { FUSION_PARSER ; FUSION_ANNOTATION } from './modules/04_joint_fusion_calling'
include { FUSION2CSV ; CSV2FASTA ; STAR_INDEX ; FUSION_FILTER ; STAR_CUSTOM ; READ_COUNT } from './modules/05_requantification'
include { MERGE_DATA ; PREDICTION } from './modules/06_summarize'
Expand Down
2 changes: 1 addition & 1 deletion modules/01_qc.nf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

process FASTP {
tag "${name}"
label 'process_medium'
label 'process_low'

conda ("${baseDir}/environments/qc.yml")

Expand Down
2 changes: 1 addition & 1 deletion modules/02_alignment.nf
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ process READ_FILTER {

process BAM2FASTQ {
tag "${name}"
label 'process_medium'
label 'process_low'

conda ("${baseDir}/environments/samtools.yml")

Expand Down
12 changes: 0 additions & 12 deletions modules/03_fusion_callers.nf
Original file line number Diff line number Diff line change
@@ -1,16 +1,4 @@

process FUSION_CATCHER_INDEX {
tag "${name}"
label 'process_low'

conda ("${baseDir}/environments/fusioncatcher.yml")

script:
"""
download-human-db.sh
"""
}


process FUSION_CATCHER {
tag "${name}"
Expand Down
2 changes: 1 addition & 1 deletion modules/05_requantification.nf
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ process STAR_CUSTOM {

process READ_COUNT {
tag "${name}"
label 'process_medium'
label 'process_single'

conda ("${baseDir}/environments/requantification.yml")

Expand Down

0 comments on commit da57bc5

Please sign in to comment.