-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(teamProjectApiUpdate): Added API update for results app
- Loading branch information
1 parent
281b187
commit bab3a70
Showing
4 changed files
with
23 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
src/Analysis/GWASApp/Utils/StateManagement/InitializeCurrentState.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
const InitializeCurrentState = () => ({ | ||
outcome: null, | ||
selectedStudyPopulationCohort: null, | ||
covariates: [], | ||
imputationScore: 0.3, | ||
mafThreshold: 0.01, | ||
numOfPC: 3, | ||
gwasName: '', | ||
selectedHare: { concept_value: '' }, | ||
currentStep: 0, | ||
finalPopulationSizes: [], | ||
selectionMode: '', | ||
messages: [], | ||
selectedTeamProject: localStorage.getItem('teamProject'), | ||
}); | ||
|
||
export default InitializeCurrentState; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters