Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MNT] Capitalized age heuristics #562

Merged
merged 2 commits into from
Oct 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ There are two means of moving forward to the next step in the annotation tool's

<img width="300" src="./images/readme_nextpage_instructions.png" alt="Annotation tool next page button screenshot">

However, special critieria 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> while those conditions are still as of yet unmet. (These are denoted below under _Next page criteria_.) After having done so, the next page's name in the <span style="color:green;">navbar</span> will turn from gray to green, and the <span style="color:green;">next page button</span> will turn from gray to green as well.
However, special 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> while those conditions are still as of yet unmet. (These are denoted below under _Next page criteria_.) After having done so, the next page's name in the <span style="color:green;">navbar</span> will turn from gray to green, and the <span style="color:green;">next page button</span> will turn from gray to green as well.

## Page Instructions

Expand Down
12 changes: 6 additions & 6 deletions cypress/unit/store-getter-getContinousJsonOutput.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,27 +32,27 @@ let store = {
bounded: {

Label: "bounded value",
TermURL: "nb:bounded"
TermURL: "nb:FromBounded"
},
euro: {

Label: "european decimal value",
TermURL: "nb:euro"
TermURL: "nb:FromEuro"
},
float: {

Label: "float value",
TermURL: "nb:float"
TermURL: "nb:FromFloat"
},
int: {

Label: "integer value",
TermURL: "nb:int"
TermURL: "nb:FromInt"
},
iso8601: {

Label: "period of time defined according to the ISO8601 standard",
TermURL: "nb"
TermURL: "nb:FromISO8601"
}
}
}
Expand All @@ -79,7 +79,7 @@ describe("getcontinuousJsonOutput", () => {
Transformation: {

Label: "european decimal value",
TermURL: "nb:euro"
TermURL: "nb:FromEuro"
}
}
});
Expand Down
2 changes: 1 addition & 1 deletion cypress/unit/store-getter-getJsonOutput.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const expectedContinuousJson = {
MissingValues: [],
Transformation: {
Label: "bounded value",
TermURL: "nb:bounded"
TermURL: "nb:FromBounded"
}
},
Description: "age of the participant",
Expand Down
10 changes: 5 additions & 5 deletions cypress/unit/store-getter-getTransformOptions.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,27 +16,27 @@ let store = {

transformationHeuristics: {
bounded: {
TermURL: "nb:bounded",
TermURL: "nb:FromBounded",
Label: "bounded value"
},

euro: {
TermURL: "nb:euro",
TermURL: "nb:FromEuro",
Label: "european decimal value"
},

float: {
TermURL: "nb:float",
TermURL: "nb:FromFloat",
Label: "float value"
},

int: {
TermURL: "nb:int",
TermURL: "nb:FromInt",
Label: "integer value"
},

iso8601: {
TermURL: "nb",
TermURL: "nb:FromISO8601",
Label: "period of time defined according to the ISO8601 standard"
}
}
Expand Down
10 changes: 5 additions & 5 deletions store/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,31 +155,31 @@ export const state = () => ({
bounded: {

Label: "bounded value",
TermURL: "nb:bounded"
TermURL: "nb:FromBounded"
},

euro: {

Label: "european decimal value",
TermURL: "nb:euro"
TermURL: "nb:FromEuro"
},

float: {

Label: "float value",
TermURL: "nb:float"
TermURL: "nb:FromFloat"
},

int: {

Label: "integer value",
TermURL: "nb:int"
TermURL: "nb:FromInt"
},

iso8601: {

Label: "period of time defined according to the ISO8601 standard",
TermURL: "nb"
TermURL: "nb:FromISO8601"
}
}
});
Expand Down