Skip to content

Commit

Permalink
Merge pull request #103 from nf-core/dev
Browse files Browse the repository at this point in the history
Patch v1.0.1
  • Loading branch information
jma1991 authored Nov 16, 2023
2 parents 29d9f34 + d77b483 commit 907c293
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## v1.0.1 - 2023-11-15

Patch for run_drimseq_filter.R to cast command line arguments to numeric. See issue #98 on nf-core/rnasplice.

## v1.0.0 - 2023-05-22

First release of nf-core/rnasplice, created with the [nf-core](https://nf-co.re/) template.
Expand Down
5 changes: 2 additions & 3 deletions assets/multiqc_config.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
report_comment: >
This report has been generated by the <a href="https://github.com/nf-core/rnasplice/releases/tag/1.0.0" target="_blank">nf-core/rnasplice</a>
This report has been generated by the <a href="https://github.com/nf-core/rnasplice/releases/tag/1.0.1" target="_blank">nf-core/rnasplice</a>
analysis pipeline. For information about how to interpret these results, please see the
<a href="https://nf-co.re/rnasplice/1.0.0/docs/output" target="_blank">documentation</a>.
<a href="https://nf-co.re/rnasplice/1.0.1/docs/output" target="_blank">documentation</a>.
report_section_order:
"nf-core-rnasplice-methods-description":
Expand Down
12 changes: 6 additions & 6 deletions bin/run_drimseq_filter.R
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ tximport_tx2gene <- args[2] # tx2gene information
samplesheet <- args[3] # samplesheet

# Filter params
min_samps_gene_expr <- args[4]
min_samps_feature_expr <- args[5]
min_samps_feature_prop <- args[6]
min_feature_expr <- args[7]
min_feature_prop <- args[8]
min_gene_expr <- args[9]
min_samps_gene_expr <- as.numeric(args[4])
min_samps_feature_expr <- as.numeric(args[5])
min_samps_feature_prop <- as.numeric(args[6])
min_feature_expr <- as.numeric(args[7])
min_feature_prop <- as.numeric(args[8])
min_gene_expr <- as.numeric(args[9])

######################################
########## Process tx2gene ###########
Expand Down
2 changes: 1 addition & 1 deletion bin/run_edger_exon.R
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ samplesheet <- argv[2]

contrastsheet <- argv[3]

ntop <- argv[4]
ntop <- as.integer(argv[4])


# Load required packages
Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ manifest {
description = """Alternative splicing analysis using RNA-seq."""
mainScript = 'main.nf'
nextflowVersion = '!>=23.04.0'
version = '1.0.0'
version = '1.0.1'
doi = '10.5281/zenodo.8424632'
}

Expand Down

0 comments on commit 907c293

Please sign in to comment.