Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix starfusion download output for gtf to refflat #463

Open
wants to merge 5 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions modules/local/starfusion/download/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,12 @@ process STARFUSION_DOWNLOAD {
conda "bioconda::dfam=3.3 bioconda::hmmer=3.3.2 bioconda::star-fusion=1.12.0 bioconda::trinity=2.13.2 bioconda::samtools=1.9 bioconda::star=2.7.8a"
container 'docker.io/trinityctat/starfusion:1.12.0'

input:
val meta

output:
path "ctat_genome_lib_build_dir/*" , emit: reference
path "ctat_genome_lib_build_dir/ref_annot.gtf", emit: chrgtf
path "ctat_genome_lib_build_dir/*" , emit: reference
tuple val(meta), path("ctat_genome_lib_build_dir/ref_annot.gtf"), emit: chrgtf


script:
Expand Down
2 changes: 1 addition & 1 deletion workflows/build_references.nf
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ workflow BUILD_REFERENCES {
if (params.starfusion_build){
STARFUSION_BUILD( ENSEMBL_DOWNLOAD.out.fasta, ENSEMBL_DOWNLOAD.out.chrgtf )
} else {
STARFUSION_DOWNLOAD()
STARFUSION_DOWNLOAD( fake_meta )
}
}

Expand Down