Skip to content

Commit 065c63a

Browse files
authored
Merge branch 'dev' into ensure_notnull_pseudo
2 parents 89666a4 + 76464e4 commit 065c63a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ Special thanks to the following for their contributions to the release:
1717

1818
- [PR #1123](https://github.com/nf-core/rnaseq/pull/1123) - Overhaul tximport.r, output length tables
1919
- [PR #1124](https://github.com/nf-core/rnaseq/pull/1124) - Ensure pseudoaligner is set if pseudoalignment is not skipped
20-
- [PR #1126](https://github.com/nf-core/rnaseq/pull/1126) - Fixes error when transcript_fasta not provided and skip_gtf_filter set to true
21-
- [#1125](https://github.com/nf-core/rnaseq/issues/1125) - Pipeline fails if transcript_fasta not provided and skip_gtf_filter = true
20+
- [[PR #1126](https://github.com/nf-core/rnaseq/pull/1126)] [[#1125](https://github.com/nf-core/rnaseq/issues/1125)] - Pipeline fails if transcript_fasta not provided and `skip_gtf_filter = true`.
21+
- [[PR #1127](https://github.com/nf-core/rnaseq/pull/1127)] - Enlarge sampling to determine the number of columns in `filter_gtf.py` script.
2222

2323
## [[3.13.1](https://github.com/nf-core/rnaseq/releases/tag/3.13.1)] - 2023-11-17
2424

bin/filter_gtf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def extract_fasta_seq_names(fasta_name: str) -> Set[str]:
2323
def tab_delimited(file: str) -> float:
2424
"""Check if file is tab-delimited and return median number of tabs."""
2525
with open(file, "r") as f:
26-
data = f.read(1024)
26+
data = f.read(102400)
2727
return statistics.median(line.count("\t") for line in data.split("\n"))
2828

2929

0 commit comments

Comments
 (0)