8000 SL-117 fix featurecounts spec · Pull Request #27 · nf-core/rnasplice · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

SL-117 fix featurecounts spec #27

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

Merged
1 commit merged into from
Nov 3, 2022
Merged
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
2 changes: 1 addition & 1 deletion conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ if (params.edger_exon) {
ext.args = [
'-F GTF',
"-t exon",
params.gencode ? "-g gene_type" : "-g ${params.featurecounts_group_type}",
"-g ${params.gtf_group_features}",
'-f',
'-O',
'-B',
Expand Down
4 changes: 1 addition & 3 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ params {
gtf_extra_attributes = 'gene_name'
gtf_group_features = 'gene_id'
gencode = false
featurecounts_group_type = 'gene_biotype'
featurecounts_feature_type = 'exon'
save_reference = false

// Trimming
Expand Down Expand Up @@ -306,4 +304,4 @@ def check_max(obj, type) {
return obj
}
}
}
}
1 change: 0 additions & 1 deletion subworkflows/local/prepare_genome.nf
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ workflow PREPARE_GENOME {
take:

prepare_tool_indices // list : tools to prepare indices for
biotype // string : if additional fasta file is provided biotype value to use when appending entries to GTF file
is_aws_igenome // boolean: whether the genome files are from AWS iGenomes

main:
Expand Down
3 changes: 0 additions & 3 deletions workflows/rnasplice.nf
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,8 @@ workflow RNASPLICE {
// SUBWORKFLOW: Uncompress and prepare reference genome files
//

def biotype = params.gencode ? "gene_type" : params.featurecounts_group_type

PREPARE_GENOME (
prepareToolIndices,
biotype,
is_aws_igenome
)

Expand Down
0