Skip to content

Commit

Permalink
refactor: make Stratification the second upload step
Browse files Browse the repository at this point in the history
Create subject groups before setting dosing compartments or mapping model variables to observations.
  • Loading branch information
eatyourgreens committed Apr 24, 2024
1 parent 6f5a708 commit 55a38e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend-v2/src/features/data/LoadDataStepper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ interface IStepper {
onFinish: () => void
}

const stepLabels = ['Upload Data', 'Map Dosing', 'Map Observations', 'Stratification', 'Preview Dataset'];
const stepComponents = [LoadData, MapDosing, MapObservations, Stratification, PreviewData];
const stepLabels = ['Upload Data', 'Stratification', 'Map Dosing', 'Map Observations', 'Preview Dataset'];
const stepComponents = [LoadData, Stratification, MapDosing, MapObservations, PreviewData];

type Row = {[key: string]: string};
type Data = Row[];
Expand Down

0 comments on commit 55a38e6

Please sign in to comment.