You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: pre-filter workflow sequencing read runs immediately after ENA data is returned (#910) (#926)
* feat: pre-filter workflow sequencing read runs immediately after ENA data is returned (#910)
* feat: make worklow state to preserve stable object (#910)
* feat: pre-filter ena data by taxonomy (#910)
* feat: updated prefiltering based on sequencing step (#910)
---------
Co-authored-by: Fran McDade <[email protected]>
Copy file name to clipboardExpand all lines: app/components/Entity/components/ConfigureWorkflowInputs/components/Main/components/Stepper/components/Step/SequencingStep/components/ENASequencingData/components/CollectionSelector/collectionSelector.tsx
-3Lines changed: 0 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,6 @@ import { Table } from "./components/Table/table";
Copy file name to clipboardExpand all lines: app/components/Entity/components/ConfigureWorkflowInputs/components/Main/components/Stepper/components/Step/SequencingStep/components/ENASequencingData/components/CollectionSelector/hooks/UseTable/hook.ts
Copy file name to clipboardExpand all lines: app/components/Entity/components/ConfigureWorkflowInputs/components/Main/components/Stepper/components/Step/SequencingStep/components/ENASequencingData/components/CollectionSelector/types.ts
-2Lines changed: 0 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,6 @@ import { ReadRun } from "../../types";
Copy file name to clipboardExpand all lines: app/components/Entity/components/ConfigureWorkflowInputs/components/Main/components/Stepper/components/Step/SequencingStep/components/ENASequencingData/components/CollectionSelector/utils.ts
Copy file name to clipboardExpand all lines: app/components/Entity/components/ConfigureWorkflowInputs/components/Main/components/Stepper/components/Step/SequencingStep/components/ENASequencingData/enaSequencingData.tsx
Copy file name to clipboardExpand all lines: app/components/Entity/components/ConfigureWorkflowInputs/components/Main/components/Stepper/components/Step/SequencingStep/components/ENASequencingData/hooks/UseENADataByTaxonomyId/hook.ts
+20-5Lines changed: 20 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -3,18 +3,28 @@ import { UseENADataByTaxonomyId } from "./types";
Copy file name to clipboardExpand all lines: app/components/Entity/components/ConfigureWorkflowInputs/components/Main/components/Stepper/components/Step/SequencingStep/components/ENASequencingData/hooks/UseENADataByTaxonomyId/request.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ export async function fetchENAData<T>({
13
13
submitOptions,
14
14
taxonomyId,
15
15
}: {
16
-
submitOptions: Required<SubmitOptions>;
16
+
submitOptions: Required<SubmitOptions<T>>;
17
17
taxonomyId: string;
18
18
}): Promise<T[]|undefined>{
19
19
try{
@@ -36,7 +36,7 @@ export async function fetchENAData<T>({
Copy file name to clipboardExpand all lines: app/components/Entity/components/ConfigureWorkflowInputs/components/Main/components/Stepper/components/Step/SequencingStep/components/ENASequencingData/types.ts
-2Lines changed: 0 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,6 @@ import { SEQUENCING_DATA_TYPE } from "../../types";
0 commit comments