Skip to content

Commit

Permalink
relative path for files in bin directory - address #2
Browse files Browse the repository at this point in the history
  • Loading branch information
KristinaGagalova committed Dec 23, 2023
1 parent 80965ed commit 3c36fed
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
5 changes: 2 additions & 3 deletions modules/module_align_counts.nf
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,8 @@ process combine_counts_star {

script:
"""
./bin/CombineCounts-star.py --input $counts --strandedness $strandedness --output RawCountsStar.tsv
CombineCounts-star.py --input $counts --strandedness $strandedness --output RawCountsStar.tsv
"""

}

process combine_counts_featurecounts {
Expand All @@ -37,7 +36,7 @@ process combine_counts_featurecounts {

script:
"""
./bin/CombineCounts-featurecounts.py --input $counts --output RawCountsFeatureCounts.tsv
CombineCounts-featurecounts.py --input $counts --output RawCountsFeatureCounts.tsv
"""

}
Expand Down
5 changes: 2 additions & 3 deletions modules/module_align_qc.nf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ process convert_bed {

script:
"""
./bin/gtf2bed.py $genes | awk -F'\t' 'NF==12 {print}' > ${genes.simpleName}.bed12
gtf2bed.py $genes | awk -F'\t' 'NF==12 {print}' > ${genes.simpleName}.bed12
"""
}

Expand Down Expand Up @@ -114,7 +114,6 @@ process combine_bam_stats {

script:
"""
./bin/Combine-bam-stats.py --input $bam_stats --output StatsBam.tsv
Combine-bam-stats.py --input $bam_stats --output StatsBam.tsv
"""

}
2 changes: 1 addition & 1 deletion modules/module_read_cont.nf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ process combine_cont_bbt {

script:
"""
$PWD/bin/CombineCont.py --input $rates --output ContaminationRate.tsv
CombineCont.py --input $rates --output ContaminationRate.tsv
"""

}
Expand Down

0 comments on commit 3c36fed

Please sign in to comment.