forked from galaxyproject/galaxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSampleSheetGrid.vue
More file actions
652 lines (595 loc) · 22.9 KB
/
SampleSheetGrid.vue
File metadata and controls
652 lines (595 loc) · 22.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
<script lang="ts" setup>
import { faDownload } from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome";
import type { ColDef, ValueSetterParams } from "ag-grid-community";
import { BCol, BInputGroup, BLink, BRow } from "bootstrap-vue";
import { computed, ref, watch } from "vue";
import type {
CollectionElementIdentifiers,
components,
CreateNewCollectionPayload,
DCESummary,
DCObject,
HDAObject,
SampleSheetColumnDefinition,
SampleSheetColumnDefinitions,
} from "@/api";
import type { SampleSheetCollectionType, SampleSheetColumnValueT } from "@/api/datasetCollections";
import {
type HdcaUploadTarget,
type NestedElement,
nestedElement,
type UrlDataElement,
urlDataElement,
} from "@/api/tools";
import { useCollectionCreation } from "@/components/Collections/common/useCollectionCreation";
import { useWorkbookDropHandling } from "@/components/Collections/common/useWorkbooks";
import {
downloadWorkbook,
downloadWorkbookForCollection,
initialValue,
} from "@/components/Collections/sheet/workbooks";
import type { InitialElements, ParsedFetchWorkbookColumn } from "@/components/Collections/wizard/types";
import { Toast } from "@/composables/toast";
import { useUploadConfigurations } from "@/composables/uploadConfigurations";
import { useAgGrid } from "@/composables/useAgGrid";
import localize from "@/utils/localization";
import { type AgRowData, buildsSampleSheetGrid, toAgGridColumnDefinition } from "./useSampleSheetGrid";
import UploadSelect from "@/components/Upload//UploadSelect.vue";
import UploadSelectExtension from "@/components/Upload/UploadSelectExtension.vue";
interface Props {
currentHistoryId: string;
collectionType: SampleSheetCollectionType;
columnDefinitions: SampleSheetColumnDefinitions;
initialElements: InitialElements;
busy: boolean;
extensions?: string[] | undefined;
}
const props = withDefaults(defineProps<Props>(), {
columnDefinitions: null,
extensions: undefined,
});
// Upload properties
const { effectiveExtensions, listDbKeys } = useUploadConfigurations(props.extensions);
const extension = ref("auto");
const dbKey = ref("?");
const listExtensions = computed(() => effectiveExtensions.value.filter((ext) => !ext.composite_files));
const mode = computed<"uris" | "model_objects">(() => {
if ("elements" in props.initialElements) {
return "model_objects";
} else {
return "uris";
}
});
const showDbKey = computed(() => {
return mode.value === "uris";
});
const showExtension = computed(() => {
return mode.value === "uris";
});
const extraColumns = ref<ParsedFetchWorkbookColumn[]>([]);
function initializeRowData(rowData: AgRowData[]) {
const initialElements = props.initialElements;
if ("rows" in initialElements) {
for (const parsedRow of initialElements.rows) {
const row: AgRowData = {};
for (const key in parsedRow) {
row[key] = parsedRow[key];
}
rowData.push(row);
}
extraColumns.value = initialElements.extra_columns || [];
} else if ("elements" in initialElements) {
for (const element of initialElements.elements) {
const row: AgRowData = { __model_object: element };
(props.columnDefinitions || []).forEach((colDef) => {
row[colDef.name] = initialValue(colDef);
});
rowData.push(row);
}
} else {
for (const initialElement of initialElements) {
const row: AgRowData = { url: initialElement[0] };
if (
props.collectionType === "sample_sheet:paired" ||
props.collectionType === "sample_sheet:paired_or_unpaired"
) {
row["url_1"] = initialElement[1];
row["list_identifiers"] = initialElement[2] || "";
} else if (props.collectionType === "sample_sheet") {
row["list_identifiers"] = initialElement[1] || "";
} else {
throw new Error("Collection type not implemented yet");
}
(props.columnDefinitions || []).forEach((colDef) => {
row[colDef.name] = initialValue(colDef);
});
rowData.push(row);
}
}
}
const { rowData, initialize, sampleSheetStyle } = buildsSampleSheetGrid(initializeRowData);
const { gridApi, AgGridVue, onGridReady, theme } = useAgGrid(resize);
function resize() {
if (gridApi.value) {
gridApi.value.sizeColumnsToFit();
}
}
watch(
() => {
props.initialElements;
},
() => {
initialize();
// is this block needed?
if (gridApi.value) {
const params = {
force: true,
suppressFlash: true,
};
gridApi.value!.refreshCells(params);
}
},
{
immediate: true,
},
);
function validate(value: string, columnDefinition: SampleSheetColumnDefinition): boolean {
if (columnDefinition.restrictions && !columnDefinition.restrictions.includes(value)) {
return false; // Invalid if not in restrictions
}
switch (columnDefinition.type) {
case "int":
return Number.isInteger(Number(value));
case "float":
return !isNaN(parseFloat(value));
case "boolean":
return value.toLowerCase() === "true" || value.toLowerCase() === "false";
case "string":
default:
if (!/^[\w\-_ ?]*$/.test(value)) {
return false;
}
return true;
}
}
function valueSetter(params: ValueSetterParams, columnDefinition: SampleSheetColumnDefinition): boolean {
let value = params.newValue;
const columnType = columnDefinition.type;
if (validate(value, columnDefinition)) {
if (columnType !== "string" && value === "" && columnDefinition.optional) {
value = null;
} else if (columnType === "boolean") {
value = value.toLowerCase() === "true";
} else if (columnType === "int") {
value = parseInt(value, 10);
} else if (columnType === "float") {
value = parseFloat(value);
}
params.data[params.colDef.field!] = value;
return true;
} else {
return false;
}
}
// Generate Column Definitions from Schema
function generateGridColumnDefs(columnDefinitions: SampleSheetColumnDefinitions): ColDef[] {
const columns: ColDef[] = [];
if (mode.value === "model_objects") {
columns.push({
headerName: "Identifier (Unique Name)",
field: "__model_object",
editable: false,
cellEditorParams: {},
valueFormatter: (params) => {
return params.data.__model_object.element_identifier;
},
});
} else {
const collectionType = props.collectionType;
if (collectionType === "sample_sheet") {
columns.push(uriColumn("URI", "url"), elementIdentifierColumn());
} else if (collectionType === "sample_sheet:paired") {
columns.push(
uriColumn("URI 1 (Forward)", "url"),
uriColumn("URI 2 (Reverse)", "url_1"),
elementIdentifierColumn(),
);
} else if (collectionType === "sample_sheet:paired_or_unpaired") {
columns.push(
uriColumn("URI 1 (Forward)", "url"),
uriColumn("URI 2 (Optional/Reverse)", "url_1"),
elementIdentifierColumn(),
);
} else {
throw new Error("Mode not implemented yet");
}
}
(columnDefinitions || []).forEach((colDef) => {
const baseDef = toAgGridColumnDefinition(colDef);
baseDef.editable = true;
baseDef.valueSetter = (params) => {
return valueSetter(params, colDef);
};
// Restrictions: Add dropdown editor for string type with restrictions
if (colDef.restrictions && colDef.type === "string") {
baseDef.cellEditor = "agSelectCellEditor";
baseDef.cellEditorParams = {
values: colDef.restrictions,
};
}
if (colDef.type === "element_identifier") {
const elementIdentifierOptions = () => {
if (colDef.optional) {
return ["", ...elementIdentifiers.value];
} else {
return elementIdentifiers.value;
}
};
baseDef.cellEditor = "agSelectCellEditor";
baseDef.cellEditorParams = () => {
return {
values: elementIdentifierOptions(),
};
};
}
// Validators
baseDef.cellEditorParams.validate = (value: string) => validate(value, colDef);
columns.push(baseDef);
});
for (const extraColumn of extraColumns.value) {
const baseDef: ColDef = {
headerName: extraColumn.title,
field: extraColumn.type,
editable: true,
cellEditorParams: {},
};
columns.push(baseDef);
}
return columns;
}
function uriColumn(headerTitle: string, name: string): ColDef {
// dynamic field names so these don't conflict for paired?
const baseDef: ColDef = {
headerName: headerTitle,
field: name,
editable: false,
cellEditorParams: {},
};
return baseDef;
}
function elementIdentifierColumn(): ColDef {
const baseDef: ColDef = {
headerName: "Element identifier",
field: "list_identifiers",
editable: true,
cellEditorParams: {},
valueSetter: (params) => {
const newValue = params.newValue;
const rowIndex = params.node?.rowIndex ?? -1;
let isDuplicate = false;
params.api.forEachNode((node) => {
if (node.rowIndex !== rowIndex && node.data.element_identifier === newValue) {
Toast.error("Element identifier values must be unique, supplied value already exists.");
isDuplicate = true;
}
});
if (isDuplicate) {
return false; // Prevent duplicate values
} else {
params.data[params.colDef.field!] = newValue;
return true;
}
},
};
return baseDef;
}
// Column Definitions
const columnDefs = computed(() => {
return generateGridColumnDefs(props.columnDefinitions);
});
// Default Column Properties
const defaultColDef = ref<ColDef>({
editable: true,
sortable: true,
filter: true,
resizable: true,
});
const emit = defineEmits<{
(e: "workbook-contents", base64Content: string): void;
(e: "on-fetch-target", target: HdcaUploadTarget): void;
(e: "on-collection-create-payload", payload: CreateNewCollectionPayload): void;
}>();
async function handleWorkbook(base64Content: string) {
emit("workbook-contents", base64Content);
}
const { handleDrop, isDragging } = useWorkbookDropHandling(handleWorkbook);
const rootClasses = computed(() => {
const classes: string[] = [theme, "dropzone"];
if (isDragging.value) {
classes.push("highlight");
}
return classes;
});
const fromWorkbookUpload = computed<Boolean>(() => {
return "rows" in props.initialElements;
});
function downloadSeededWorkbook() {
const initialRows = [];
const initialElements = props.initialElements;
if ("rows" in initialElements) {
// link won't appear - don't do anything
} else if ("elements" in initialElements) {
const hdca_id = initialElements.id;
downloadWorkbookForCollection(props.columnDefinitions, hdca_id);
} else {
for (const initialItem of initialElements) {
initialRows.push(initialItem);
}
downloadWorkbook(props.columnDefinitions, props.collectionType, initialRows);
}
}
const name = ref<string>("Sample Sheet for Workflow Input");
if ("name" in props.initialElements) {
name.value = `${props.initialElements.name} (as sample sheet)` || name.value;
}
initialize();
type ColumnDefinition = components["schemas"]["SampleSheetColumnDefinition-Input"];
function uriFromRow(row: AgRowData): string {
return row["url"] as string as string;
}
function uri2FromRow(row: AgRowData): string {
return row["url_1"] as string as string;
}
const elementIdentifiers = computed<string[]>(() => {
const identifiers: string[] = [];
for (const row of rowData.value) {
const elementIdentifier = elementIdentifierFromRow(row);
if (elementIdentifier) {
identifiers.push(elementIdentifier);
}
}
return identifiers;
});
function elementIdentifierFromRow(row: AgRowData): string {
if (mode.value === "model_objects") {
return (row["__model_object"] as { element_identifier: string }).element_identifier;
} else {
return row["list_identifiers"] as string;
}
}
function attachExtraMetadata(row: AgRowData, urlElement: UrlDataElement, typeIndex: number) {
// Apply extra metadata from the row to the UrlDataElement
// typeIndex is 0 for all elements of a simple sample sheet and for the forward element
// of all paired sample sheets. typeIndex is 1 for the reverse element of paired sample sheets.
if (extraColumns.value.length > 0) {
for (const extraColumn of extraColumns.value) {
const extraValue = row[extraColumn.type] as string | undefined;
const extraColumnType = extraColumn.type;
const extraColumnTypeIndex = extraColumn.type_index ?? 0;
if (extraColumnType == "dbkey") {
urlElement.dbkey = extraValue || dbKey.value || "?";
} else if (extraColumnType == "file_type") {
urlElement.ext = extraValue || extension.value || "auto";
} else if (extraColumnType == "name" && extraValue) {
urlElement.name = extraValue;
} else if (extraColumnType == "tags" && extraValue) {
urlElement.tags = extraValue.split(",").map((tag) => tag.trim());
} else if (extraColumnType == "info") {
urlElement.info = extraValue;
} else if (extraColumnType == "hash_md5" && typeIndex === extraColumnTypeIndex && extraValue) {
urlElement.MD5 = extraValue;
} else if (extraColumnType == "hash_sha1" && typeIndex === extraColumnTypeIndex && extraValue) {
urlElement["SHA-1"] = extraValue;
} else if (extraColumnType == "hash_sha256" && typeIndex === extraColumnTypeIndex && extraValue) {
urlElement["SHA-256"] = extraValue;
} else if (extraColumnType == "hash_sha512" && typeIndex === extraColumnTypeIndex && extraValue) {
urlElement["SHA-512"] = extraValue;
}
}
}
}
function urlDataElementWithSelectedMetadata(elementIdentifier: string, uri: string): UrlDataElement {
const urlElement = urlDataElement(elementIdentifier, uri);
urlElement.dbkey = dbKey.value || "?";
urlElement.ext = extension.value || "auto";
return urlElement;
}
async function attemptCreateViaFetch() {
const columnDefinitions: ColumnDefinition[] = props.columnDefinitions ?? [];
const elements: (UrlDataElement | NestedElement)[] = [];
if (props.collectionType == "sample_sheet") {
for (const row of rowData.value) {
const elementIdentifier = elementIdentifierFromRow(row);
const elementRow = toApiRows(row);
const uri = uriFromRow(row);
const element = urlDataElementWithSelectedMetadata(elementIdentifier, uri);
attachExtraMetadata(row, element, 0);
element.row = elementRow;
elements.push(element);
}
} else if (
props.collectionType == "sample_sheet:paired" ||
props.collectionType == "sample_sheet:paired_or_unpaired"
) {
for (const row of rowData.value) {
const elementIdentifier = elementIdentifierFromRow(row);
const elementRow = toApiRows(row);
const uri = uriFromRow(row);
const uri2 = uri2FromRow(row);
let childElements;
if (uri2) {
const forwardElement = urlDataElementWithSelectedMetadata("forward", uri);
attachExtraMetadata(row, forwardElement, 0);
const reverseElement = urlDataElementWithSelectedMetadata("reverse", uri2);
attachExtraMetadata(row, reverseElement, 1);
childElements = [forwardElement, reverseElement];
} else {
if (props.collectionType == "sample_sheet:paired") {
// Do something better with this exception ideally.
throw Error("Unpaired dataset discovered - cannot build collection");
}
const unpairedElement = urlDataElementWithSelectedMetadata("unpaired", uri);
attachExtraMetadata(row, unpairedElement, 0);
childElements = [unpairedElement];
}
const element = nestedElement(elementIdentifier, childElements);
element.row = elementRow;
elements.push(element);
}
}
const target: HdcaUploadTarget = {
destination: { type: "hdca" },
collection_type: props.collectionType,
elements: elements,
column_definitions: columnDefinitions,
auto_decompress: false, // why is this needed?
name: name.value,
};
emit("on-fetch-target", target);
}
function elementsForCreateApi() {
const identifiers: CollectionElementIdentifiers = [];
const collectionType = props.collectionType;
if (collectionType == "sample_sheet") {
for (const row of rowData.value) {
const elementIdentifier = elementIdentifierFromRow(row);
const element = row["__model_object"] as DCESummary;
const hda = element.object as HDAObject;
const identifier = {
name: elementIdentifier,
src: "hda" as "hda",
id: hda.id,
};
identifiers.push(identifier);
}
} else if (collectionType == "sample_sheet:paired" || collectionType == "sample_sheet:paired_or_unpaired") {
// TODO:
for (const row of rowData.value) {
const elementIdentifier = elementIdentifierFromRow(row);
const element = row["__model_object"] as DCESummary;
const childCollection = element.object as DCObject;
const rowElements = [];
for (const childElement of childCollection.elements) {
const childIdentifier = {
name: childElement.element_identifier,
src: "hda" as "hda",
id: childElement.object!.id,
};
rowElements.push(childIdentifier);
}
const entry = {
name: elementIdentifier,
collection_type: childCollection.collection_type,
src: "new_collection" as "new_collection",
element_identifiers: rowElements,
};
identifiers.push(entry);
}
} else {
console.log("sample_sheet:record not yet implemented, this will fail");
}
return identifiers;
}
async function attemptCreateViaExistingObjects() {
const identifiers: CollectionElementIdentifiers = elementsForCreateApi();
const collectionType = props.collectionType;
const hide_source_items = false;
const payload = createPayload(name.value, collectionType, identifiers, hide_source_items);
const rows: Record<string, SampleSheetColumnValueT[]> = {};
for (const row of rowData.value) {
const elementRow = toApiRows(row);
rows[elementIdentifierFromRow(row)] = elementRow;
}
payload.rows = rows;
payload.column_definitions = props.columnDefinitions;
emit("on-collection-create-payload", payload);
}
function toApiRows(row: AgRowData) {
const elementRow: SampleSheetColumnValueT[] = [];
(props.columnDefinitions || []).forEach((colDef) => {
elementRow.push(row[colDef.name] as SampleSheetColumnValueT);
});
return elementRow;
}
const { createPayload } = useCollectionCreation();
async function attemptCreate() {
if (mode.value === "model_objects") {
attemptCreateViaExistingObjects();
} else {
attemptCreateViaFetch();
}
}
function updateExtension(newExtension: string) {
extension.value = newExtension;
}
function updateDbKey(newDbKey: string) {
dbKey.value = newDbKey;
}
defineExpose({ attemptCreate });
</script>
<template>
<div
:class="rootClasses"
@drop.prevent="handleDrop"
@dragover.prevent="isDragging = true"
@dragleave.prevent="isDragging = false">
<AgGridVue
:row-data="rowData"
:column-defs="columnDefs"
:default-col-def="defaultColDef"
:style="sampleSheetStyle"
@gridReady="onGridReady" />
<BRow align-h="center" style="margin-top: 10px">
<BCol v-if="showExtension" cols="4">
<span class="upload-footer-title">Type</span>
<UploadSelectExtension
class="upload-footer-extension"
:value="extension"
:disabled="busy"
:list-extensions="listExtensions"
@input="updateExtension">
</UploadSelectExtension>
</BCol>
<BCol v-if="showDbKey" cols="4">
<span class="upload-footer-title">Reference</span>
<UploadSelect
class="upload-footer-genome"
:value="dbKey"
:disabled="busy"
:options="listDbKeys"
what="reference"
placeholder="Select Reference"
@input="updateDbKey" />
</BCol>
<BCol cols="4">
<BInputGroup prepend="Collection Name" class="mb-2" size="sm">
<BFormInput
v-model="name"
:placeholder="localize('Enter a name for your new sample sheet')"
size="sm"
required />
</BInputGroup>
</BCol>
</BRow>
<div class="text-center below-grid-link">
<BLink v-if="!fromWorkbookUpload" @click="downloadSeededWorkbook">
<FontAwesomeIcon size="xl" :icon="faDownload" />
Download this as spreadsheet and fill it in outside of Galaxy.
</BLink>
</div>
</div>
</template>
<style scoped>
.below-grid-link {
padding: 7px;
}
</style>
<style>
// doesn't work with scoped style, newer AG Grid lets specifying style directly
// in ColDef but this deson't seem work with this older AG Grid we're using Vue 2.
.ag-grid-column-has-custom-header-description {
text-decoration-line: underline;
text-decoration-style: dashed;
}
</style>