Skip to content

Commit

Permalink
Fix config file
Browse files Browse the repository at this point in the history
  • Loading branch information
cokelaer committed Feb 10, 2022
1 parent 517863a commit 6b5c2f5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ Changelog
========= ====================================================================
Version Description
========= ====================================================================
0.11.1 * Fix config file (removing hard-coded path)
0.11.0 * Fix multiqc plot using same fix as in sequna_rnaseq pipelines
* add utility plot to check rate of ribosomal per sequence and also
the corresponding RPKM.
Expand Down
6 changes: 3 additions & 3 deletions sequana_pipelines/ribofinder/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# If input_directory provided, use it otherwise if input_pattern provided,
# use it, otherwise use input_samples.
# ============================================================================
input_directory: /home/cokelaer/Work/github/sequana_pipelines/ribofinder/test/data
input_directory:
input_readtag: _R[12]_
input_pattern: '*fastq.gz'
# =========================================== Sections for the users
Expand Down Expand Up @@ -37,8 +37,8 @@ general:
rRNA_file: ''
rRNA_feature: rRNA
genbank_file: ''
gff_file: /home/cokelaer/Work/github/sequana_pipelines/ribofinder/test/data/Lepto.gff
reference_file: /home/cokelaer/Work/github/sequana_pipelines/ribofinder/test/data/Lepto.fa
gff_file:
reference_file:



Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

_MAJOR = 0
_MINOR = 11
_MICRO = 0
_MICRO = 1
version = '%d.%d.%d' % (_MAJOR, _MINOR, _MICRO)
release = '%d.%d' % (_MAJOR, _MINOR)

Expand Down

0 comments on commit 6b5c2f5

Please sign in to comment.