Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/npm_and_yarn/eslint-plugin-vue-9.…
Browse files Browse the repository at this point in the history
…19.2
  • Loading branch information
surchs authored Dec 10, 2023
2 parents 9724967 + 76bd290 commit 52ab8d2
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 164 deletions.
155 changes: 0 additions & 155 deletions .github/workflows/add_pr2project.yml

This file was deleted.

3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,6 @@ See the [Nuxt documentation](https://nuxtjs.org/deployments/github-pages/) for m

There are two means of moving forward to the next step in the annotation tool's workflow: (1) the <span style="color:green;">navbar</span> at the top right of the screen which features the page names, and (2) the <span style="color:green;">next page buttons</span> on the bottom right of each page.

:warning: Do not use the browser back/forward buttons for navigation as this is currently a limitation of the tool
that may lead to breaking the workflow.

Certain criteria for each page need to be be met in order to move forward. Instructions are offered above the <span style="color:green;">next page button</span>. Once the criteria have been met <span style="color:green;">navbar</span> and <span style="color:green;">next page button</span> will turn from gray to green.

## Testing
Expand Down
6 changes: 5 additions & 1 deletion components/annot-explanation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@
{{ uiText.cardTitle }}
</b-card-header>
<b-card-body>
<b-card-text>{{ explanationText }}</b-card-text>
<b-card-text><ul>
<li v-for="(sentence, index) in explanationText.split('.')" :key="index">
{{ sentence }}.
</li>
</ul></b-card-text>
</b-card-body>
</b-card>

Expand Down
2 changes: 1 addition & 1 deletion components/next-page.vue
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"home": "",
"categorization": "One column must be categorized as 'Subject ID' and all assessment tools must be grouped to proceed",
"annotation": ""
"annotation": "One categroized column must be annotated to proceed"
}
}
};
Expand Down
9 changes: 5 additions & 4 deletions store/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export const state = () => ({
"Diagnosis": diagnosisTerms
},

// The explanation strings for each category, will be split by '.' and turned into bullet points in the annot-explanation component
categories: {

"Subject ID": {
Expand All @@ -36,25 +37,25 @@ export const state = () => ({
"Age": {

componentName: "annot-continuous-values",
explanation: "This is an explanation for how to annotate age.",
explanation: "Review the annotated columns for Age. Mark missing values. Select a transformation heuristic, check the preview, and finalize the harmonization",
identifier: "nb:Age"
},
"Sex": {

componentName: "annot-categorical",
explanation: "This is an explanation for how to annotate sex.",
explanation: "Review the annotated columns for Sex. Mark missing values. Annotate each unique value from the dropdown, and finalize the harmonization",
identifier: "nb:Sex"
},
"Diagnosis": {

componentName: "annot-categorical",
explanation: "This is an explanation for how to annotate diagnosis.",
explanation: "Review the annotated columns for Diagnosis. Mark missing values. Annotate each unique value from the dropdown, and finalize the harmonization",
identifier: "nb:Diagnosis"
},
"Assessment Tool": {

componentName: "annot-tool-groups",
explanation: "This is an explanation for how to annotate a tool.",
explanation: "Review the annotated columns for Assessment Tool. Mark missing values for each tool",
identifier: "nb:AssessmentTool"
}
},
Expand Down

0 comments on commit 52ab8d2

Please sign in to comment.