Skip to content

Commit

Permalink
Merge pull request #96 from Plant-Food-Research-Open/fix/gt
Browse files Browse the repository at this point in the history
Fixed cds_length_distribution bug
  • Loading branch information
GallVp authored Jul 18, 2024
2 parents 0974e6a + 891d9d2 commit 6a30a98
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### `Fixed`

1. Fixed a bug where `intron_length_distribution` was used instead of `cds_length_distribution` when creating the CDS Length Distribution Graph [#95](https://github.com/Plant-Food-Research-Open/assemblyqc/issues/95)

### `Dependencies`

1. NextFlow!>=23.04.0
Expand Down
2 changes: 1 addition & 1 deletion bin/report_modules/parsers/genometools_gt_stat_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def parse_genometools_gt_stat_folder(folder_name="genometools_gt_stat"):
cds_length_distribution_graph = ""
if cds_length_distribution != []:
cds_length_distribution_graph = create_dist_graph(
intron_length_distribution,
cds_length_distribution,
"Length",
"CDS Length Distribution",
f"./{folder_name}/{os.path.basename(report_path)}.cds.length.png",
Expand Down

0 comments on commit 6a30a98

Please sign in to comment.