Skip to content

Commit 8b9ffe5

Browse files
authored
Merge pull request #1114 from nf-core/skip-ci]-update_contribs
Pre-release fixes for 3.13.0
2 parents 7a04c5d + 5070c50 commit 8b9ffe5

11 files changed

+35
-12
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
Special thanks to the following for their contributions to the release:
1111

1212
- [Adam Talbot](https://github.com/adamrtalbot)
13+
- [hmehlan](https://github.com/hmehlan)
1314
- [Jonathan Manning](https://github.com/pinin4fjords)
1415
- [Júlia Mir Pedrol](https://github.com/mirpedrol)
1516
- [Matthias Zepper](https://github.com/MatthiasZepper)
1617
- [Maxime Garcia](https://github.com/maxulysse)
18+
- [Steffen Möller](https://github.com/smoe)
1719

1820
Thank you to everyone else that has contributed by reporting bugs, enhancements or in any other way, shape or form.
1921

@@ -31,11 +33,11 @@ Thank you to everyone else that has contributed by reporting bugs, enhancements
3133
- [PR #1091](https://github.com/nf-core/rnaseq/pull/1091) - Reorganise parameters in schema for better usability
3234
- [PR #1106](https://github.com/nf-core/rnaseq/pull/1106) - Kallisto quantification
3335
- [PR #1107](https://github.com/nf-core/rnaseq/pull/1107) - Expand GTF filtering to remove rows with empty transcript ID when required, fix STAR GTF usage
36+
- [#976](https://github.com/nf-core/rnaseq/issues/976) - Add author and licenses for all custom scripts
3437
- [#1050](https://github.com/nf-core/rnaseq/issues/1050) - Provide custom prefix/suffix for summary files to avoid overwriting
3538
- [#1074](https://github.com/nf-core/rnaseq/issues/1074) - Enable quantification using StringTie AND a custom
3639
- [#1082](https://github.com/nf-core/rnaseq/issues/1082) - More informative error message for `filter_gtf_for_genes_in_genome.py`
3740
- [#1102](https://github.com/nf-core/rnaseq/issues/1102) - gene entries with empty transcript_id fields
38-
Ensembl genome
3941

4042
### Software dependencies
4143

bin/deseq2_qc.r

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/usr/bin/env Rscript
22

3+
# Written by Harshil Patel and Gavin Kelly and released under the MIT license.
4+
35
################################################
46
################################################
57
## REQUIREMENTS ##

bin/dupradar.r

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/usr/bin/env Rscript
22

3+
# Written by Phil Ewels and released under the MIT license.
4+
35
# Command line argument processing
46
args = commandArgs(trailingOnly=TRUE)
57
if (length(args) < 5) {

bin/fasta2gtf.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env python3
2+
3+
# Written by Pranathi Vemuri and released under the MIT license.
4+
25
"""
36
Read a custom fasta file and create a custom GTF containing each entry
47
"""

bin/fastq_dir_to_samplesheet.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/usr/bin/env python3
22

3+
# Written by Harshil Patel and released under the MIT license.
4+
35
import os
46
import sys
57
import glob

bin/filter_gtf.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env python
2+
3+
# Written by Olga Botvinnik with subsequent reworking by Jonathan Manning. Released under the MIT license.
4+
25
import logging
36
import argparse
47
import re

bin/mqc_features_stat.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/usr/bin/env python
22

3+
# Written by Senthilkumar Panneerselvam and released under the MIT license.
4+
35
import argparse
46
import logging
57
import os

bin/summarizedexperiment.r

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/usr/bin/env Rscript
22

3+
# Written by Lorena Pantano and released under the MIT license.
4+
35
library(SummarizedExperiment)
46

57
## Create SummarizedExperiment (se) object from counts

bin/tx2gene.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env python
2+
3+
# Written by Lorena Pantano with subsequent reworking by Jonathan Manning. Released under the MIT license.
4+
25
import logging
36
import argparse
47
import glob

bin/tximport.r

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/usr/bin/env Rscript
22

3+
# Written by Lorena Pantano and released under the MIT license.
4+
35
library(SummarizedExperiment)
46
library(tximport)
57

conf/test.config

+11-11
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,19 @@ params {
2121

2222

2323
// Input data
24-
input = "https://raw.githubusercontent.com/nf-core/test-datasets/rnaseq/samplesheet/v3.10/samplesheet_test.csv"
24+
input = "https://raw.githubusercontent.com/nf-core/test-datasets/7f1614baeb0ddf66e60be78c3d9fa55440465ac8/samplesheet/v3.10/samplesheet_test.csv"
2525

2626
// Genome references
27-
fasta = "https://raw.githubusercontent.com/nf-core/test-datasets/rnaseq/reference/genome.fasta"
28-
gtf = "https://raw.githubusercontent.com/nf-core/test-datasets/rnaseq/reference/genes.gtf.gz"
29-
gff = "https://raw.githubusercontent.com/nf-core/test-datasets/rnaseq/reference/genes.gff.gz"
30-
transcript_fasta = "https://raw.githubusercontent.com/nf-core/test-datasets/rnaseq/reference/transcriptome.fasta"
31-
additional_fasta = "https://raw.githubusercontent.com/nf-core/test-datasets/rnaseq/reference/gfp.fa.gz"
32-
33-
bbsplit_fasta_list = "https://raw.githubusercontent.com/nf-core/test-datasets/rnaseq/reference/bbsplit_fasta_list.txt"
34-
hisat2_index = "https://raw.githubusercontent.com/nf-core/test-datasets/rnaseq/reference/hisat2.tar.gz"
35-
salmon_index = "https://raw.githubusercontent.com/nf-core/test-datasets/rnaseq/reference/salmon.tar.gz"
36-
rsem_index = "https://raw.githubusercontent.com/nf-core/test-datasets/rnaseq/reference/rsem.tar.gz"
27+
fasta = "https://raw.githubusercontent.com/nf-core/test-datasets/7f1614baeb0ddf66e60be78c3d9fa55440465ac8/reference/genome.fasta"
28+
gtf = "https://raw.githubusercontent.com/nf-core/test-datasets/7f1614baeb0ddf66e60be78c3d9fa55440465ac8/reference/genes_with_empty_tid.gtf.gz"
29+
gff = "https://raw.githubusercontent.com/nf-core/test-datasets/7f1614baeb0ddf66e60be78c3d9fa55440465ac8/reference/genes.gff.gz"
30+
transcript_fasta = "https://raw.githubusercontent.com/nf-core/test-datasets/7f1614baeb0ddf66e60be78c3d9fa55440465ac8/reference/transcriptome.fasta"
31+
additional_fasta = "https://raw.githubusercontent.com/nf-core/test-datasets/7f1614baeb0ddf66e60be78c3d9fa55440465ac8/reference/gfp.fa.gz"
32+
33+
bbsplit_fasta_list = "https://raw.githubusercontent.com/nf-core/test-datasets/7f1614baeb0ddf66e60be78c3d9fa55440465ac8/reference/bbsplit_fasta_list.txt"
34+
hisat2_index = "https://raw.githubusercontent.com/nf-core/test-datasets/7f1614baeb0ddf66e60be78c3d9fa55440465ac8/reference/hisat2.tar.gz"
35+
salmon_index = "https://raw.githubusercontent.com/nf-core/test-datasets/7f1614baeb0ddf66e60be78c3d9fa55440465ac8/reference/salmon.tar.gz"
36+
rsem_index = "https://raw.githubusercontent.com/nf-core/test-datasets/7f1614baeb0ddf66e60be78c3d9fa55440465ac8/reference/rsem.tar.gz"
3737

3838
// Other parameters
3939
skip_bbsplit = false

0 commit comments

Comments
 (0)