Skip to content
Snippets Groups Projects
Commit 6b91bcea authored by Remi  PLANEL's avatar Remi PLANEL
Browse files

Add hellip

parent d19fe38e
No related branches found
No related tags found
No related merge requests found
......@@ -22,6 +22,13 @@
:header="header"
></experiment-file-input-header>
</template>
<template #[`header.phenotypeI`]="{ header }">
<span v-html="header.text"></span>
</template>
<template #[`item.phenotypeI`]="{ item }">
<span v-html="item.phenotypeI"></span>
</template>
<!-- covariate -->
<template #[`header.covariate`]="{ header }">
{{ header.text }}
......@@ -29,6 +36,12 @@
:header="header"
></experiment-file-input-header>
</template>
<template #[`header.covariateI`]="{ header }">
<span v-html="header.text"></span>
</template>
<template #[`item.covariateI`]="{ item }">
<span v-html="item.covariateI"></span>
</template>
<!-- sex -->
<template #[`header.sex`]="{ header }">
{{ header.text }}
......@@ -155,6 +168,10 @@
<td>2</td>
<td>CC002</td>
</tr>
<tr>
<td><span>&hellip;</span></td>
<td><span>&hellip;</span></td>
</tr>
</tbody>
</template>
</v-simple-table>
......@@ -186,6 +203,10 @@
<td>4</td>
<td>CC004</td>
</tr>
<tr>
<td><span>&hellip;</span></td>
<td><span>&hellip;</span></td>
</tr>
</tbody>
</template>
</v-simple-table></v-col
......@@ -249,6 +270,10 @@ export default {
helpText:
'Phenotypic values must be written US/UK format: dots instead of comma',
},
{
text: '&hellip;',
value: 'phenotypeI',
},
{
text: 'NameOfPhenotypeN',
value: 'phenotypeN',
......@@ -260,6 +285,10 @@ export default {
helpText:
'Covariate values must be written US/UK format: dots instead of comma',
},
{
text: '&hellip;',
value: 'covariateI',
},
{
text: 'NameOfCovariateN',
value: 'covariateN',
......@@ -275,6 +304,8 @@ export default {
ccFather: 'CC001',
sex: 'F',
phenotype: 5.456,
phenotypeI: '&hellip;',
covariateI: '&hellip;',
phenotypeN: 24,
covariate: 10,
covariateN: 5,
......@@ -288,6 +319,8 @@ export default {
phenotypeN: 12,
covariate: 2,
covariateN: 18,
phenotypeI: '&hellip;',
covariateI: '&hellip;',
},
{
mouseId: '3',
......@@ -298,6 +331,8 @@ export default {
phenotypeN: 17,
covariate: 5,
covariateN: 31,
phenotypeI: '&hellip;',
covariateI: '&hellip;',
},
],
transformationHelp: [
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment