-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathviewVariantAndPhenotypeFigures.blade.php
149 lines (127 loc) · 7.36 KB
/
viewVariantAndPhenotypeFigures.blade.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
@php
include resource_path() . '/views/system/config.blade.php';
$organism = $info['organism'];
$chromosome = $info['chromosome'];
$position = $info['position'];
$genotype_array = $info['genotype_array'];
$phenotype = $info['phenotype'];
@endphp
<head>
<title>{{ $config_organism }}-KB</title>
<link rel="shortcut icon" href="{{ asset('css/images/Header/kbcommons_icon.ico') }}">
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="https://cdn.plot.ly/plotly-2.12.1.min.js"></script>
</head>
<body>
<h3>Queried CNV and Phenotype:</h3>
<div style='width:auto; height:auto; overflow:visible; max-height:1000px;'>
<table style='text-align:center; border:3px solid #000;'>
<tr>
<th style="border:1px solid black; min-width:80px;">Chromsome</th>
<th style="border:1px solid black; min-width:80px;">Position</th>
<th style="border:1px solid black; min-width:80px;">Genotype</th>
<th style="border:1px solid black; min-width:80px;">Phenotype</th>
</tr>
<tr bgcolor="#DDFFDD">
<td style="border:1px solid black; min-width:80px;">{{$chromosome}}</td>
<td style="border:1px solid black; min-width:80px;">{{$position}}</td>
<td style="border:1px solid black; min-width:80px;">{{implode(',', $genotype_array)}}</td>
<td style="border:1px solid black; min-width:80px;">{{$phenotype}}</td>
</tr>
</table>
</div>
<br /><br />
<h3>Figures:</h3>
<div id="genotype_section_div">
<div id="genotype_figure_div">Loading genotype plot...</div>
<div id="genotype_summary_table_div">Loading genotype summary table...</div>
</div>
<hr />
<div id="improvement_status_summary_figure_div"></div>
</body>
<script src="{{ asset('system/home/GenVarX/js/viewVariantAndPhenotypeFigures.js') }}" type="text/javascript"></script>
<script type="text/javascript" language="javascript">
var organism = <?php if(isset($organism)) {echo json_encode($organism, JSON_INVALID_UTF8_IGNORE);} else {echo "";}?>;
var chromosome = <?php if(isset($chromosome)) {echo json_encode($chromosome, JSON_INVALID_UTF8_IGNORE);} else {echo "";}?>;
var position = <?php if(isset($position)) {echo json_encode($position, JSON_INVALID_UTF8_IGNORE);} else {echo "";}?>;
var phenotype = <?php if(isset($phenotype)) {echo json_encode($phenotype, JSON_INVALID_UTF8_IGNORE);} else {echo "";}?>;
var genotype_array = <?php if(isset($genotype_array) && is_array($genotype_array) && !empty($genotype_array)) {echo json_encode($genotype_array, JSON_INVALID_UTF8_IGNORE);} else {echo "";}?>;
if (organism == "Osativa") {
document.getElementById('improvement_status_summary_figure_div').innerHTML = "Loading subpopulation summary plot...";
summaryPhenotype = "Subpopulation";
} else if (organism == "Athaliana") {
document.getElementById('improvement_status_summary_figure_div').innerHTML = "Loading admixture group summary plot...";
summaryPhenotype = "Admixture_Group";
} else if (organism == "Zmays") {
document.getElementById('improvement_status_summary_figure_div').innerHTML = "Loading improvement status summary plot...";
summaryPhenotype = "Improvement_Status";
}
if (organism && chromosome && position && phenotype && genotype_array.length > 0) {
$.ajax({
url: 'queryVariantAndPhenotypeFigures/'+organism,
type: 'GET',
contentType: 'application/json',
data: {
Organism: organism,
Chromosome: chromosome,
Position: position,
Genotype: genotype_array,
Phenotype: phenotype
},
success: function (response) {
res = JSON.parse(response);
if (res && phenotype) {
document.getElementById("genotype_figure_div").style.minHeight = "800px";
document.getElementById("improvement_status_summary_figure_div").style.minHeight = "800px";
// Summarize data
var result_dict = summarizeQueriedData(
JSON.parse(JSON.stringify(res)),
phenotype,
'Genotype'
);
var result_arr = result_dict['Data'];
var summary_array = result_dict['Summary'];
var genotypeData = collectDataForFigure(result_arr, phenotype, 'Genotype');
var genotypeAndImprovementStatusData = collectDataForFigure(result_arr, summaryPhenotype, 'Genotype');
plotFigure(genotypeData, 'Genotype', 'Genotype', 'genotype_figure_div');
plotFigure(genotypeAndImprovementStatusData, 'Genotype', summaryPhenotype+'_Summary', 'improvement_status_summary_figure_div');
// Render summarized data
document.getElementById('genotype_summary_table_div').innerText = "";
document.getElementById('genotype_summary_table_div').innerHTML = "";
document.getElementById('genotype_summary_table_div').appendChild(
constructInfoTable(summary_array)
);
document.getElementById('genotype_summary_table_div').style.overflow = 'scroll';
}
},
error: function (xhr, status, error) {
console.log('Error with code ' + xhr.status + ': ' + xhr.statusText);
document.getElementById('genotype_figure_div').innerText="";
document.getElementById('genotype_summary_table_div').innerHTML="";
document.getElementById('improvement_status_summary_figure_div').innerHTML="";
var p_tag = document.createElement('p');
p_tag.innerHTML = "Genotype distribution figure is not available due to lack of data!!!";
document.getElementById('genotype_figure_div').appendChild(p_tag);
var p_tag = document.createElement('p');
p_tag.innerHTML = "Genotype summary table is not available due to lack of data!!!";
document.getElementById('genotype_summary_table_div').appendChild(p_tag);
var p_tag = document.createElement('p');
p_tag.innerHTML = summaryPhenotype + " summary figure is not available due to lack of data!!!";
document.getElementById('improvement_status_summary_figure_div').appendChild(p_tag);
}
});
} else {
document.getElementById('genotype_figure_div').innerText="";
document.getElementById('genotype_summary_table_div').innerHTML="";
document.getElementById('improvement_status_summary_figure_div').innerHTML="";
var p_tag = document.createElement('p');
p_tag.innerHTML = "Genotype distribution figure is not available due to lack of data!!!";
document.getElementById('genotype_figure_div').appendChild(p_tag);
var p_tag = document.createElement('p');
p_tag.innerHTML = "Genotype summary table is not available due to lack of data!!!";
document.getElementById('genotype_summary_table_div').appendChild(p_tag);
var p_tag = document.createElement('p');
p_tag.innerHTML = summaryPhenotype + " summary figure is not available due to lack of data!!!";
document.getElementById('improvement_status_summary_figure_div').appendChild(p_tag);
}
</script>