Files
2019-10-17 13:00:15 +02:00

65 lines
2.1 KiB
Plaintext

<%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="DB_INPUT_CLU.aspx.cs" Inherits="WebLCP.DB_INPUT_CLU" %>
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
<div class="card">
<div class="card-header bg-warning text-light">
<h4>DB_INPUT_CLU.csv: file specification</h4>
</div>
<div class="card-body">
<div class="row">
<div class="col-md-8">
<table class="table table-sm table-striped">
<thead class="thead-dark">
<tr>
<th>Field Name</th>
<th>Data type</th>
<th>Data Example</th>
<th>Note</th>
</tr>
</thead>
<tbody>
<tr>
<td><b>APOE</b></td>
<td>[ENUM]</td>
<td>pos / neg</td>
<td>positive / negative characterization</td>
</tr>
<tr>
<td><b>AGE</b></td>
<td>[INT]</td>
<td>1 .. 120</td>
<td>years</td>
</tr>
<tr>
<td><b>Gender</b></td>
<td>[INT]</td>
<td>0/1</td>
<td>0 = F, 1 = M</td>
</tr>
<tr>
<td><b>VARIABLE</b></td>
<td>[FLOAT]</td>
<td>...</td>
<td>actual value to analyze</td>
</tr>
</tbody>
</table>
</div>
<div class="col-md-4">
<dl>
<dt>DB INPUT CLU file spec</dt>
<dd>- data must be given in anonymous form</dd>
<dd>- file format: csv</dd>
<dd>- field separator: <b>;</b></dd>
</dl>
</div>
</div>
</div>
<div class="card-footer">
<i>Esempio file scaricabile:
<asp:HyperLink runat="server" ID="hlFile" NavigateUrl="~/demoFiles/DB_INPUT_CLU.csv" Target="_blank">DB_INPUT_CLU.csv</asp:HyperLink></i>
</div>
</div>
</asp:Content>