Skip to content

Commit 18d6c84

Browse files
authored
Merge pull request #280 from nf-core/dev
Patch Release PR 2.2.3
2 parents e6b6e5a + a3ed96d commit 18d6c84

File tree

5 files changed

+12
-9
lines changed

5 files changed

+12
-9
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
44
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
55

6+
## [v2.2.3](https://github.com/nf-core/smrnaseq/releases/tag/2.2.3) - 2023-09-06
7+
8+
- [[#271]](https://github.com/nf-core/smrnaseq/issues/271) - Bugfix for parsing hairpin and mature fasta files
9+
610
## [v2.2.2](https://github.com/nf-core/smrnaseq/releases/tag/2.2.2) - 2023-09-04
711

812
- [[#253]](https://github.com/nf-core/smrnaseq/pull/253) - Remove globs from process alias when using ECR containers

assets/multiqc_config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
report_comment: >
2-
This report has been generated by the <a href="https://github.com/nf-core/smrnaseq/2.2.2" target="_blank">nf-core/smrnaseq</a>
2+
This report has been generated by the <a href="https://github.com/nf-core/smrnaseq/2.2.3" target="_blank">nf-core/smrnaseq</a>
33
analysis pipeline. For information about how to interpret these results, please see the
4-
<a href="https://nf-co.re/smrnaseq/2.2.2/output" target="_blank">documentation</a>.
4+
<a href="https://nf-co.re/smrnaseq/2.2.3/output" target="_blank">documentation</a>.
55
report_section_order:
66
"nf-core-smrnaseq-methods-description":
77
order: -1000

conf/test.config

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ params {
2323

2424
input = 'https://github.com/nf-core/test-datasets/raw/smrnaseq/samplesheet/v2.0/samplesheet.csv'
2525
fasta = 'https://github.com/nf-core/test-datasets/raw/smrnaseq/reference/genome.fa'
26-
mature = 'https://github.com/nf-core/test-datasets/raw/smrnaseq/reference/mature.fa'
27-
hairpin = 'https://github.com/nf-core/test-datasets/raw/smrnaseq/reference/hairpin.fa'
28-
mirna_gtf = 'https://github.com/nf-core/test-datasets/raw/smrnaseq/reference/hsa.gff3'
26+
mature = 'https://mirbase.org/download/CURRENT/mature.fa'
27+
hairpin = 'https://mirbase.org/download/CURRENT/hairpin.fa'
28+
mirna_gtf = 'https://mirbase.org/download/hsa.gff3'
2929
mirtrace_species = 'hsa'
3030
protocol = 'illumina'
3131
skip_mirdeep = true

modules/local/parse_fasta_mirna.nf

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,9 @@ process PARSE_FASTA_MIRNA {
2525
gunzip -f \$FASTA
2626
FASTA=\${FASTA%%.gz}
2727
fi
28+
sed 's/&gt;/>/g' \$FASTA | sed 's#<br>#\\n#g' | sed 's#</p>##g' | sed 's#<p>##g' > \${FASTA}_html_cleaned.fa
2829
# Remove spaces from miRBase FASTA files
29-
# sed -i 's, ,_,g' \$FASTA
30-
sed '#^[^>]#s#[^AUGCaugc]#N#g' \$FASTA > \${FASTA}_parsed.fa
31-
# TODO perl -ane 's/[ybkmrsw]/N/ig;print;' \${FASTA}_parsed_tmp.fa > \${FASTA}_parsed.fa
30+
sed '#^[^>]#s#[^AUGCaugc]#N#g' \${FASTA}_html_cleaned.fa > \${FASTA}_parsed.fa
3231
3332
sed -i 's#\s.*##' \${FASTA}_parsed.fa
3433
seqkit grep -r --pattern \".*${filter_species}-.*\" \${FASTA}_parsed.fa > \${FASTA}_sps.fa

nextflow.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ manifest {
272272
description = """Small RNA-Seq Best Practice Analysis Pipeline."""
273273
mainScript = 'main.nf'
274274
nextflowVersion = '!>=23.04.0'
275-
version = '2.2.2'
275+
version = '2.2.3'
276276
doi = ''
277277
}
278278

0 commit comments

Comments
 (0)