Showing 1 of 1 files from the diff.
@@ -194,7 +194,7 @@
Loading
194 | 194 | for fmt in outfmts: |
|
195 | 195 | outfname = Path(args.outdir) / f"distribution_{matdata.name}_run{run_id}.{fmt}" |
|
196 | 196 | logger.debug("\tWriting graphics to %s", outfname) |
|
197 | - | DISTMETHODS[args.method[0]]( |
|
197 | + | DISTMETHODS[args.method]( |
|
198 | 198 | matdata.data, |
|
199 | 199 | outfname, |
|
200 | 200 | matdata.name, |
@@ -227,12 +227,13 @@
Loading
227 | 227 | logger.info("Writing %s matrix heatmaps", matdata.name) |
|
228 | 228 | cmap = pyani_config.get_colormap(matdata.data, matdata.name) |
|
229 | 229 | for fmt in outfmts: |
|
230 | - | outfname = Path(args.outdir) / f"matrix_{matdata.name}_run{run_id}.{fmt}" |
|
230 | + | outfname = ( |
|
231 | + | Path(args.outdir) / f"matrix_{matdata.name}_run{run_id}_{args.method}.{fmt}" |
|
232 | + | ) |
|
231 | 233 | logger.debug("\tWriting graphics to %s", outfname) |
|
232 | 234 | params = pyani_graphics.Params(cmap, result_labels, result_classes) |
|
233 | 235 | # Draw heatmap |
|
234 | 236 | _, newicks = GMETHODS[args.method]( |
|
235 | - | ||
236 | 237 | matdata.data, |
|
237 | 238 | outfname, |
|
238 | 239 | title=f"matrix_{matdata.name}_run{run_id}", |
@@ -281,7 +282,7 @@
Loading
281 | 282 | logger.debug("\tWriting graphics to %s", outfname) |
|
282 | 283 | params = pyani_graphics.Params(cmap, result_labels, result_classes) |
|
283 | 284 | # Draw scatterplot |
|
284 | - | SMETHODS[args.method[0]]( |
|
285 | + | SMETHODS[args.method]( |
|
285 | 286 | matdata1.data, |
|
286 | 287 | matdata2.data, |
|
287 | 288 | outfname, |
Files | Coverage |
---|---|
pyani | 74.48% |
Project Totals (58 files) | 74.48% |
3343
3343
3341
3341
3339
3339
3342
3342
3340
3340
1 |
#
|
2 |
# This codecov.yml is the default configuration for
|
3 |
# all repositories on Codecov. You may adjust the settings
|
4 |
# below in your own codecov.yml in your repository.
|
5 |
#
|
6 |
coverage: |
7 |
precision: 2 |
8 |
round: down |
9 |
range: 70...100 |
10 |
|
11 |
status: |
12 |
# Learn more at https://docs.codecov.io/docs/commit-status
|
13 |
project: true |
14 |
patch: true |
15 |
changes: false |
16 |
|
17 |
comment: |
18 |
layout: "header, diff" |
19 |
behavior: default # update if exists else create new |
Sunburst
The inner-most circle is the entire project, moving away from the center are folders then, finally, a single file.
The size and color of each slice is representing the number of statements and the coverage, respectively.
Icicle
The top section represents the entire project. Proceeding with folders and finally individual files.
The size and color of each slice is representing the number of statements and the coverage, respectively.