Skip to content

Commit

Permalink
replaced local star/align module with updated nf-core star/align module
Browse files Browse the repository at this point in the history
  • Loading branch information
anoronh4 committed May 17, 2023
1 parent 99dbd82 commit 0429642
Show file tree
Hide file tree
Showing 5 changed files with 48 additions and 13 deletions.
5 changes: 5 additions & 0 deletions modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,11 @@
"git_sha": "c8e35eb2055c099720a75538d1b8adb3fb5a464c",
"installed_by": ["modules"]
},
"star/align": {
"branch": "master",
"git_sha": "57d75dbac06812c59798a48585032f6e50bb1914",
"installed_by": ["modules"]
},
"star/genomegenerate": {
"branch": "master",
"git_sha": "c8e35eb2055c099720a75538d1b8adb3fb5a464c",
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions subworkflows/local/align_reads.nf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
include { STAR_ALIGN } from '../../modules/local/star/align/main'
include { STAR_ALIGN } from '../../modules/nf-core/star/align/main'
include { UMITOOLS_DEDUP } from '../../modules/nf-core/umitools/dedup/main'
include {
SAMTOOLS_INDEX;
Expand All @@ -19,7 +19,10 @@ workflow ALIGN_READS {
STAR_ALIGN(
reads,
star_index,
gtf
gtf,
false,
[],
[]
)
ch_versions = ch_versions.mix(STAR_ALIGN.out.versions.first())

Expand Down
14 changes: 10 additions & 4 deletions subworkflows/local/fusion.nf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
include { STAR_ALIGN as STAR_FOR_ARRIBA } from '../../modules/local/star/align/main'
include { STAR_ALIGN as STAR_FOR_ARRIBA } from '../../modules/nf-core/star/align/main'
include { ARRIBA } from '../../modules/nf-core/arriba/main'
include { STAR_ALIGN as STAR_FOR_STARFUSION } from '../../modules/local/star/align/main'
include { STAR_ALIGN as STAR_FOR_STARFUSION } from '../../modules/nf-core/star/align/main'
include { STARFUSION } from '../../modules/local/starfusion/detect/main'
include { FUSIONCATCHER_DETECT } from '../../modules/local/fusioncatcher/detect/main'
include { FUSIONREPORT } from '../../modules/local/fusionreport/run/main'
Expand All @@ -24,7 +24,10 @@ workflow FUSION {
STAR_FOR_ARRIBA(
reads,
star_index,
gtf
gtf,
false,
[],
[]
)
ch_versions = ch_versions.mix(STAR_FOR_ARRIBA.out.versions.first())

Expand All @@ -44,7 +47,10 @@ workflow FUSION {
reads,
// use the star index in the starfusion reference to ensure compatibility
starfusion_ref.map{ file( it + "/ref_genome.fa.star.idx")},
gtf
gtf,
false,
[],
[]
)
ch_versions = ch_versions.mix(STAR_FOR_STARFUSION.out.versions.first())

Expand Down

0 comments on commit 0429642

Please # to comment.