-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
53 changed files
with
1,338 additions
and
1,277 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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# gitignore | ||
.DS_Store | ||
*.pyc | ||
__pycahce__ | ||
.nextflow* | ||
work/ | ||
results/ | ||
*.stdout | ||
*.stderr |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
printWidth: 120 |
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
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,7 +1,5 @@ | ||
{ | ||
"mainWorkflowURL": "main.nf", | ||
"inputFileURLs": [ | ||
"./docs/test_params/test_agc.json" | ||
], | ||
"engineOptions": "-resume" | ||
"mainWorkflowURL": "main.nf", | ||
"inputFileURLs": ["./docs/test_params/test_agc.json"], | ||
"engineOptions": "-resume" | ||
} |
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
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
14 changes: 7 additions & 7 deletions
14
bin/report_modules/templates/assemblathon_stats/dropdown.html
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,10 +1,10 @@ | ||
<div class="dropdown"> | ||
<div class="dropdown_content"> | ||
<select id="selector_ASSEMBLATHON_STATS" onchange="showContent('ASSEMBLATHON_STATS')"> | ||
<div class="dropdown_content"> | ||
<select id="selector_ASSEMBLATHON_STATS" onchange="showContent('ASSEMBLATHON_STATS')"> | ||
{% set str_hap = 'hap' %} {% for item in range(all_stats_dicts["ASSEMBLATHON_STATS"]|length) %} | ||
<option value="tabcontent_ASSEMBLATHON_STATS_{{all_stats_dicts['ASSEMBLATHON_STATS'][item]['hap']}}"> | ||
{{ all_stats_dicts['ASSEMBLATHON_STATS'][item][str_hap] }} | ||
{% endfor %} | ||
</select> | ||
</div> | ||
</div> | ||
{{ all_stats_dicts['ASSEMBLATHON_STATS'][item][str_hap] }} {% endfor %} | ||
</option> | ||
</select> | ||
</div> | ||
</div> |
19 changes: 9 additions & 10 deletions
19
bin/report_modules/templates/assemblathon_stats/report_contents.html
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,18 +1,17 @@ | ||
{% set vars = {'is_first': True} %} | ||
{% for item in range(all_stats_dicts["ASSEMBLATHON_STATS"]|length) %} | ||
{% set active_text = 'display: block' if vars.is_first else 'display: none' %} | ||
<div id="tabcontent_ASSEMBLATHON_STATS_{{ all_stats_dicts['ASSEMBLATHON_STATS'][item]['hap'] }}" | ||
class="tabcontent-ASSEMBLATHON_STATS" style="{{ active_text }}"> | ||
{% set vars = {'is_first': True} %} {% for item in range(all_stats_dicts["ASSEMBLATHON_STATS"]|length) %} {% set | ||
active_text = 'display: block' if vars.is_first else 'display: none' %} | ||
<div | ||
id="tabcontent_ASSEMBLATHON_STATS_{{ all_stats_dicts['ASSEMBLATHON_STATS'][item]['hap'] }}" | ||
class="tabcontent-ASSEMBLATHON_STATS" | ||
style="{{ active_text }}" | ||
> | ||
<div class="results-section"> | ||
<div class="section-heading-wrapper"> | ||
<div class="section-heading">{{ all_stats_dicts['ASSEMBLATHON_STATS'][item]['hap'] }}</div> | ||
</div> | ||
</div> | ||
<div class="table-outer"> | ||
<div class="table-wrapper"> | ||
{{ all_stats_dicts['ASSEMBLATHON_STATS'][item]['report_table_html'] }} | ||
</div> | ||
<div class="table-wrapper">{{ all_stats_dicts['ASSEMBLATHON_STATS'][item]['report_table_html'] }}</div> | ||
</div> | ||
</div> | ||
{% if vars.update({'is_first': False}) %} {% endif %} | ||
{% endfor %} | ||
{% if vars.update({'is_first': False}) %} {% endif %} {% endfor %} |
Oops, something went wrong.