Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix bowtie1 regression (log). #39

Merged
merged 1 commit into from
Dec 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,8 @@ Changelog
========= ====================================================================
Version Description
========= ====================================================================
0.19.2 * fix bowtie1 regression in the log file
* set genome directory default to None to enforce its usage
0.19.1 * add rnaseqc container.
* Update rseqc rules (redirection)
* cleanup onsuccess rule
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "sequana-rnaseq"
version = "0.19.1"
version = "0.19.2"
description = "A RNAseq pipeline from raw reads to feature counts"
authors = ["Sequana Team"]
license = "BSD-3"
Expand Down
1 change: 0 additions & 1 deletion sequana_pipelines/rnaseq/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@
@click.option(
"--genome-directory",
"genome_directory",
default=".",
show_default=True,
type=click.Path(dir_okay=True, file_okay=False),
required=True,
Expand Down
4 changes: 2 additions & 2 deletions sequana_pipelines/rnaseq/rnaseq.rules
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ if manager.config.general.rRNA_feature or manager.config.general.contaminant_fil
input:
expand("{sample}/bowtie1_mapping_rna/{sample}_bowtie1.log", sample=manager.samples)
output:
"logs/fix_bowtie1_log"
"logs/fix_bowtie1/{sample}.log"
run:

for filename in input:
Expand All @@ -501,7 +501,7 @@ if manager.config.general.rRNA_feature or manager.config.general.contaminant_fil
fout.write(line)
with open(output[0], "w") as fout:
fout.write("")
expected_output += ["logs/fix_bowtie1_log"]
expected_output += expand("logs/fix_bowtie1/{sample}.log", sample=manager.samples)


# ========================================================== bowtie2 mapping
Expand Down
Loading