Skip to content

Commit

Permalink
add human_gencode_filter to starfusion build
Browse files Browse the repository at this point in the history
  • Loading branch information
rannick committed Dec 11, 2024
1 parent ef5ab96 commit 117884c
Show file tree
Hide file tree
Showing 5 changed files with 244 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Updated to nf-core/tools 3.0.2 [#504](https://github.com/nf-core/rnafusion/pull/504)
- Remove local module `RRNA_TRANSCRIPTS` (replaced by nf-core module) [#541](https://github.com/nf-core/rnafusion/pull/541)
- Allow fastq files without a dot before .fn(.gz)/.fastq(.gz) files [#548](https://github.com/nf-core/rnafusion/pull/548)
ext.args = "-genePredExt -geneNameAsName2 -ignoreGroupsWithoutExons" GTF_TO_REFFLAT
ext.args = "-genePredExt -geneNameAsName2 -ignoreGroupsWithoutExons" GTF_TO_REFFLAT

### Fixed

- Fixed some Nextflow run-commands in the docs [#491](https://github.com/nf-core/rnafusion/pull/491)
Expand Down
1 change: 0 additions & 1 deletion modules/local/fusioncatcher/download/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ process FUSIONCATCHER_DOWNLOAD {
script:

def args = task.ext.args ?: ''
def args2 = task.ext.args2 ?: ''
// TODO: move to S3

// def url =
Expand Down
1 change: 1 addition & 0 deletions modules/local/starfusion/build/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ process STARFUSION_BUILD {
--pfam_db Pfam-A.hmm \\
--dfam_db homo_sapiens_dfam.hmm \\
--max_readlength $params.read_length \\
--human_gencode_filter \\
--CPU $task.cpus
cat <<-END_VERSIONS > versions.yml
Expand Down
2 changes: 1 addition & 1 deletion subworkflows/local/arriba_workflow.nf
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ workflow ARRIBA_WORKFLOW {
}
else {
ch_arriba_fusions = reads.combine(Channel.value( file(ch_dummy_file, checkIfExists:true ) ) )
.map { meta, reads, fusions -> [ meta, fusions ] }
.map { it -> [ it[0], it[2] ] }

ch_arriba_fusion_fail = ch_dummy_file
}
Expand Down
Loading

0 comments on commit 117884c

Please sign in to comment.