-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathviewCNVAndPhenotypeFigures.blade.php
177 lines (155 loc) · 9.15 KB
/
viewCNVAndPhenotypeFigures.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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
@php
include resource_path() . '/views/system/config.blade.php';
$organism = $info['organism'];
$chromosome = $info['chromosome'];
$position_start = $info['position_start'];
$position_end = $info['position_end'];
$width = $info['width'];
$strand = $info['strand'];
$cnv_data_option = $info['cnv_data_option'];
$cn_array = $info['cn_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 Start</th>
<th style="border:1px solid black; min-width:80px;">Position End</th>
<th style="border:1px solid black; min-width:80px;">Width</th>
<th style="border:1px solid black; min-width:80px;">Strand</th>
<th style="border:1px solid black; min-width:80px;">Data Option</th>
<th style="border:1px solid black; min-width:80px;">CN</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_start}}</td>
<td style="border:1px solid black; min-width:80px;">{{$position_end}}</td>
<td style="border:1px solid black; min-width:80px;">{{$width}}</td>
<td style="border:1px solid black; min-width:80px;">{{$strand}}</td>
<td style="border:1px solid black; min-width:80px;">{{$cnv_data_option}}</td>
<td style="border:1px solid black; min-width:80px;">{{implode(',', $cn_array)}}</td>
<td style="border:1px solid black; min-width:80px;">{{$phenotype}}</td>
</tr>
</table>
</div>
<br /><br />
<h3>Figures:</h3>
<div id="cn_section_div">
<div id="cn_figure_div">Loading CN plot...</div>
<div id="cn_summary_table_div">Loading CN summary table...</div>
</div>
<hr />
<div id="improvement_status_summary_figure_div"></div>
<!-- <div id="status_figure_div">Loading status plot...</div> -->
</body>
<script src="{{ asset('system/home/GenVarX/js/viewCNVAndPhenotypeFigures.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_start = <?php if(isset($position_start)) {echo json_encode($position_start, JSON_INVALID_UTF8_IGNORE);} else {echo "";}?>;
var position_end = <?php if(isset($position_end)) {echo json_encode($position_end, JSON_INVALID_UTF8_IGNORE);} else {echo "";}?>;
var cnv_data_option = <?php if(isset($cnv_data_option)) {echo json_encode($cnv_data_option, JSON_INVALID_UTF8_IGNORE);} else {echo "";}?>;
var phenotype = <?php if(isset($phenotype)) {echo json_encode($phenotype, JSON_INVALID_UTF8_IGNORE);} else {echo "";}?>;
var cn_array = <?php if(isset($cn_array) && is_array($cn_array) && !empty($cn_array)) {echo json_encode($cn_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_start && position_end && cnv_data_option && phenotype && cn_array.length > 0) {
$.ajax({
url: 'queryCNVAndPhenotypeFigures/'+organism,
type: 'GET',
contentType: 'application/json',
data: {
Organism: organism,
Chromosome: chromosome,
Start: position_start,
End: position_end,
Data_Option: cnv_data_option,
CN: cn_array,
Phenotype: phenotype
},
success: function (response) {
res = JSON.parse(response);
if (res && phenotype) {
document.getElementById("cn_figure_div").style.minHeight = "800px";
document.getElementById("improvement_status_summary_figure_div").style.minHeight = "800px";
// document.getElementById("status_figure_div").style.minHeight = "800px";
// Summarize data
var result_dict = summarizeQueriedData(
JSON.parse(JSON.stringify(res)),
phenotype,
'CN'
);
var result_arr = result_dict['Data'];
var summary_array = result_dict['Summary'];
var cnData = collectDataForFigure(result_arr, phenotype, 'CN');
var cnAndImprovementStatusData = collectDataForFigure(result_arr, summaryPhenotype, 'CN');
// var statusData = collectDataForFigure(result_arr, phenotype, 'Status');
plotFigure(cnData, 'CN', 'CN', 'cn_figure_div');
plotFigure(cnAndImprovementStatusData, 'CN', summaryPhenotype+'_Summary', 'improvement_status_summary_figure_div');
// plotFigure(statusData, 'Status', 'Status', 'status_figure_div');
// Render summarized data
document.getElementById('cn_summary_table_div').innerText = "";
document.getElementById('cn_summary_table_div').innerHTML = "";
document.getElementById('cn_summary_table_div').appendChild(
constructInfoTable(summary_array)
);
document.getElementById('cn_summary_table_div').style.overflow = 'scroll';
}
},
error: function (xhr, status, error) {
console.log('Error with code ' + xhr.status + ': ' + xhr.statusText);
document.getElementById('cn_figure_div').innerText="";
document.getElementById('cn_summary_table_div').innerHTML="";
document.getElementById('improvement_status_summary_figure_div').innerHTML="";
// document.getElementById('status_figure_div').innerHTML="";
var p_tag = document.createElement('p');
p_tag.innerHTML = "CN distribution figure is not available due to lack of data!!!";
document.getElementById('cn_figure_div').appendChild(p_tag);
var p_tag = document.createElement('p');
p_tag.innerHTML = "CN summary table is not available due to lack of data!!!";
document.getElementById('cn_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);
// var p_tag = document.createElement('p');
// p_tag.innerHTML = "Status distribution figure is not available due to lack of data!!!";
// document.getElementById('status_figure_div').appendChild(p_tag);
}
});
} else {
document.getElementById('cn_figure_div').innerText="";
document.getElementById('cn_summary_table_div').innerHTML="";
document.getElementById('improvement_status_summary_figure_div').innerHTML="";
// document.getElementById('status_figure_div').innerHTML="";
var p_tag = document.createElement('p');
p_tag.innerHTML = "CN distribution figure is not available due to lack of data!!!";
document.getElementById('cn_figure_div').appendChild(p_tag);
var p_tag = document.createElement('p');
p_tag.innerHTML = "CN summary table is not available due to lack of data!!!";
document.getElementById('cn_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);
// var p_tag = document.createElement('p');
// p_tag.innerHTML = "Status distribution figure is not available due to lack of data!!!";
// document.getElementById('status_figure_div').appendChild(p_tag);
}
</script>