-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a sequence labels table below the HiC contact map
- Loading branch information
Showing
5 changed files
with
40 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## v2.2.0dev - [10-Oct-2024] | ||
## v2.2.0dev - [15-Oct-2024] | ||
|
||
### `Added` | ||
|
||
|
@@ -12,14 +12,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 | |
3. Updated `samtools faidx` to 1.21 | ||
4. Now using nf-test for pipeline level testing [#153](https://github.com/Plant-Food-Research-Open/assemblyqc/issues/153) | ||
5. Added `text/html` as content mime type for the report file [#146](https://github.com/Plant-Food-Research-Open/assemblyqc/issues/146) | ||
6. Added a sequence labels table below the HiC contact map [#147](https://github.com/Plant-Food-Research-Open/assemblyqc/issues/147) | ||
|
||
### `Fixed` | ||
|
||
1. Fixed a bug where Gene score distribution graph did not appear correctly [#125](https://github.com/Plant-Food-Research-Open/assemblyqc/issues/125) | ||
|
||
### `Dependencies` | ||
|
||
1. Nextflow!>=23.04.0 | ||
1. Nextflow!>=24.04.2 | ||
2. [email protected] | ||
|
||
### `Deprecated` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,18 @@ | ||
{% set vars = {'is_first': True} %} {% for item in range(all_stats_dicts["HIC"]|length) %} {% set active_text = | ||
'display: block' if vars.is_first else 'display: none' %} | ||
<div id="tabcontent_HIC_{{ all_stats_dicts['HIC'][item]['hap'] }}" class="tabcontent-HIC" style="{{ active_text }}"> | ||
<div class="results-section"> | ||
<div class="section-heading-wrapper"> | ||
<div class="section-heading">{{ all_stats_dicts['HIC'][item]['hap'] }}</div> | ||
</div> | ||
<div class="iframe-wrapper"> | ||
<iframe | ||
src="./hic/{{ all_stats_dicts['HIC'][item]['hic_html_file_name'] }}" | ||
width="100%" | ||
height="100%" | ||
></iframe> | ||
</div> | ||
<div class="results-section"> | ||
<div class="section-heading-wrapper"> | ||
<div class="section-heading">{{ all_stats_dicts['HIC'][item]['hap'] }}</div> | ||
</div> | ||
<div class="iframe-wrapper"> | ||
<iframe src="./hic/{{ all_stats_dicts['HIC'][item]['hic_html_file_name'] }}" width="100%" height="100%"></iframe> | ||
</div> | ||
</div> | ||
<div class="results-section"> | ||
<div class="table-outer"> | ||
<div class="table-wrapper">{{ all_stats_dicts['HIC'][item]['labels_table_html'] }}</div> | ||
</div> | ||
</div> | ||
</div> | ||
{% if vars.update({'is_first': False}) %} {% endif %} {% endfor %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters