File tree 4 files changed +18
-4
lines changed
4 files changed +18
-4
lines changed Original file line number Diff line number Diff line change @@ -150,6 +150,7 @@ Changelog
150
150
========= ====================================================================
151
151
Version Description
152
152
========= ====================================================================
153
+ 0.17.1 * use new rulegraph / graphviz apptainer
153
154
0.17.0 * fastp step changed to use sequana-wrappers. Slight change in
154
155
config file. The reverse and forward adapter options called
155
156
rev and fwd have been dropped in favor of a single adapters option.
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ apptainers:
22
22
fastqc : " https://zenodo.org/record/7015004/files/fastqc_0.11.9-py3.img"
23
23
fastp : " https://zenodo.org/record/7319782/files/fastp_0.23.2.img"
24
24
igvtools : " https://zenodo.org/record/7022635/files/igvtools_2.12.0.img"
25
+ graphviz : " https://zenodo.org/record/7928262/files/graphviz_7.0.5.img"
25
26
26
27
# =========================================== Sections for the users
27
28
Original file line number Diff line number Diff line change @@ -995,16 +995,28 @@ rule multiqc:
995
995
# ========================================================== rulegraph
996
996
997
997
rule rulegraph:
998
- input: str(manager.snakefile)
998
+ input:
999
+ workflow.snakefile,
999
1000
output:
1000
- svg = ".sequana /rulegraph.svg"
1001
+ "rulegraph /rulegraph.dot",
1001
1002
params:
1003
+ configname="config.yaml",
1002
1004
mapper = {"multiqc": "../multiqc/multiqc_report.html"},
1003
- configname = "config.yaml"
1004
1005
wrapper:
1005
1006
f"{sequana_wrapper_branch}/wrappers/rulegraph"
1006
1007
1007
1008
1009
+ rule dot2svg:
1010
+ input:
1011
+ "rulegraph/rulegraph.dot"
1012
+ output:
1013
+ ".sequana/rulegraph.svg"
1014
+ container:
1015
+ config['apptainers']['graphviz']
1016
+ shell:
1017
+ """dot -Tsvg {input} -o {output}"""
1018
+
1019
+
1008
1020
1009
1021
rule prepare_DGE_analysis:
1010
1022
input:
Original file line number Diff line number Diff line change 5
5
6
6
_MAJOR = 0
7
7
_MINOR = 17
8
- _MICRO = 0
8
+ _MICRO = 1
9
9
version = "%d.%d.%d" % (_MAJOR , _MINOR , _MICRO )
10
10
release = "%d.%d" % (_MAJOR , _MINOR )
11
11
You can’t perform that action at this time.
0 commit comments