Skip to content

Commit

Permalink
Merge pull request #39 from cokelaer/main
Browse files Browse the repository at this point in the history
Fix bowtie1 regression (log).
  • Loading branch information
cokelaer committed Dec 13, 2023
2 parents 86976be + 266b688 commit ac21508
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
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

0 comments on commit ac21508

Please sign in to comment.