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

File tree

11 files changed

+35
-12
lines changed

11 files changed

+35
-12
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
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

Lines changed: 2 additions & 0 deletions
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

Lines changed: 2 additions & 0 deletions
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

Lines changed: 3 additions & 0 deletions
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

Lines changed: 2 additions & 0 deletions
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

Lines changed: 3 additions & 0 deletions
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

Lines changed: 2 additions & 0 deletions
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

Lines changed: 2 additions & 0 deletions
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

Lines changed: 3 additions & 0 deletions
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

Lines changed: 2 additions & 0 deletions
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

0 commit comments

Comments
 (0)