Skip to content

Commit

Permalink
Merge pull request #6 from cokelaer/main
Browse files Browse the repository at this point in the history
Add missing import
  • Loading branch information
cokelaer authored Jul 7, 2023
2 parents 341340e + dfe60aa commit 3d96cdc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
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
========= ====================================================================
1.0.1 fix missing import in the summary
1.0.0 Uses latest wrappers and graphviz apptainers
0.11.0 Release to use latests sequana_pipetools framework
0.10.0 Update to use latest tools from sequana framework
Expand Down
1 change: 1 addition & 0 deletions sequana_pipelines/pacbio_qc/pacbio_qc.rules
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ rule pacbio_quality:
GC_vs_len = "{sample}/images/GC_vs_len_{sample}.png",
summary = "{sample}/sequana_summary_pacbio_qc_{sample}.json"
run:
import json
from sequana import pacbio
import pylab
def setname(name):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

Expand Down

0 comments on commit 3d96cdc

Please sign in to comment.