@nfdi4plants/arctrl 2.0.0-alpha.4 → 2.0.0-alpha.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ARC.js +69 -7
- package/Contract/Contract.js +3 -0
- package/Contract/Git.js +3 -0
- package/Core/ArcTypes.js +43 -1
- package/Core/Conversion.js +78 -39
- package/Core/Helper/Regex.js +13 -0
- package/Core/OntologyAnnotation.js +15 -2
- package/Core/Table/ArcTable.js +24 -2
- package/Core/Table/ArcTableAux.js +42 -2
- package/Core/Table/ArcTables.js +1 -1
- package/Core/Table/CompositeHeader.js +50 -26
- package/FileSystem/DefaultGitattributes.js +3 -0
- package/Json/Table/CompositeHeader.js +4 -3
- package/Spreadsheet/AnnotationTable/ArcTable.js +1 -0
- package/Spreadsheet/AnnotationTable/CompositeHeader.js +41 -5
- package/fable_modules/project_cracked.json +1 -1
- package/package.json +1 -1
package/Core/Table/ArcTable.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { boxHashValues, Unchecked_alignByHeaders, Unchecked_extendToRowCount, Unchecked_removeRowCells_withIndexChange, Unchecked_addRows, Unchecked_addRow, Unchecked_getEmptyCellForHeader, Unchecked_removeColumnCells_withIndexChange, tryFindDuplicateUniqueInArray, Unchecked_removeColumnCells, Unchecked_removeHeader, Unchecked_fillMissingCells, Unchecked_addColumn, tryFindDuplicateUnique, Unchecked_setCellAt, SanityChecks_validateColumn, SanityChecks_validateRowIndex, SanityChecks_validateColumnIndex, Unchecked_tryGetCellAt, getRowCount, getColumnCount, SanityChecks_validate } from "./ArcTableAux.js";
|
|
1
|
+
import { boxHashValues, Unchecked_alignByHeaders, Unchecked_extendToRowCount, Unchecked_removeRowCells_withIndexChange, Unchecked_addRows, Unchecked_addRow, Unchecked_getEmptyCellForHeader, Unchecked_moveColumnTo, Unchecked_removeColumnCells_withIndexChange, tryFindDuplicateUniqueInArray, Unchecked_removeColumnCells, Unchecked_removeHeader, Unchecked_fillMissingCells, Unchecked_addColumn, tryFindDuplicateUnique, Unchecked_setCellAt, SanityChecks_validateColumn, SanityChecks_validateRowIndex, SanityChecks_validateColumnIndex, Unchecked_tryGetCellAt, getRowCount, getColumnCount, SanityChecks_validate } from "./ArcTableAux.js";
|
|
2
2
|
import { Dictionary } from "../../fable_modules/fable-library-js.4.16.0/MutableMap.js";
|
|
3
3
|
import { compareArrays, safeHash, comparePrimitives, equals, arrayHash, equalArrays } from "../../fable_modules/fable-library-js.4.16.0/Util.js";
|
|
4
4
|
import { value as value_3, map as map_2, unwrap, defaultArg } from "../../fable_modules/fable-library-js.4.16.0/Option.js";
|
|
@@ -398,6 +398,27 @@ export class ArcTable {
|
|
|
398
398
|
static getOutputColumn() {
|
|
399
399
|
return (table) => table.GetOutputColumn();
|
|
400
400
|
}
|
|
401
|
+
MoveColumn(startCol, endCol) {
|
|
402
|
+
const this$ = this;
|
|
403
|
+
if (startCol === endCol) {
|
|
404
|
+
}
|
|
405
|
+
else if ((startCol < 0) ? true : (startCol >= this$.ColumnCount)) {
|
|
406
|
+
toFail(printf("Cannt move column. Invalid start column index: %i"))(startCol);
|
|
407
|
+
}
|
|
408
|
+
else if ((endCol < 0) ? true : (endCol >= this$.ColumnCount)) {
|
|
409
|
+
toFail(printf("Cannt move column. Invalid end column index: %i"))(endCol);
|
|
410
|
+
}
|
|
411
|
+
else {
|
|
412
|
+
Unchecked_moveColumnTo(this$.RowCount, startCol, endCol, this$.Headers, this$.Values);
|
|
413
|
+
}
|
|
414
|
+
}
|
|
415
|
+
static moveColumn(startCol, endCol) {
|
|
416
|
+
return (table) => {
|
|
417
|
+
const newTable = table.Copy();
|
|
418
|
+
newTable.MoveColumn(startCol, endCol);
|
|
419
|
+
return newTable;
|
|
420
|
+
};
|
|
421
|
+
}
|
|
401
422
|
AddRow(cells, index) {
|
|
402
423
|
const this$ = this;
|
|
403
424
|
const index_1 = defaultArg(index, this$.RowCount) | 0;
|
|
@@ -713,7 +734,8 @@ export class ArcTable {
|
|
|
713
734
|
}
|
|
714
735
|
toString() {
|
|
715
736
|
const this$ = this;
|
|
716
|
-
|
|
737
|
+
const rowCount = this$.RowCount | 0;
|
|
738
|
+
return join("\n", toList(delay(() => append_1(singleton(`Table: ${this$.Name}`), delay(() => append_1(singleton("-------------"), delay(() => append_1(singleton(join("\t|\t", map(toString, this$.Headers))), delay(() => ((rowCount > 50) ? append_1(map((rowI) => join("\t|\t", map(toString, this$.GetRow(rowI))), rangeDouble(0, 1, 19)), delay(() => append_1(singleton("..."), delay(() => map((rowI_1) => join("\t|\t", map(toString, this$.GetRow(rowI_1))), rangeDouble(rowCount - 20, 1, rowCount - 1)))))) : ((rowCount === 0) ? singleton("No rows") : map((rowI_2) => join("\t|\t", map(toString, this$.GetRow(rowI_2))), rangeDouble(0, 1, rowCount - 1)))))))))))));
|
|
717
739
|
}
|
|
718
740
|
StructurallyEquals(other) {
|
|
719
741
|
let a, b;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { head as head_1, toArray, filter, tryFindIndex, maxBy } from "../../fable_modules/fable-library-js.4.16.0/Seq.js";
|
|
1
|
+
import { toList, head as head_1, toArray, filter, tryFindIndex, maxBy } from "../../fable_modules/fable-library-js.4.16.0/Seq.js";
|
|
2
2
|
import { arrayHash, equalArrays, numberHash, disposeSafe, getEnumerator, compare, equals, safeHash, comparePrimitives } from "../../fable_modules/fable-library-js.4.16.0/Util.js";
|
|
3
3
|
import { addToDict, getItemFromDict } from "../../fable_modules/fable-library-js.4.16.0/MapUtil.js";
|
|
4
4
|
import { value as value_2 } from "../../fable_modules/fable-library-js.4.16.0/Option.js";
|
|
@@ -7,11 +7,13 @@ import { printf, toConsole } from "../../fable_modules/fable-library-js.4.16.0/S
|
|
|
7
7
|
import { List_tryPickAndRemove, Dictionary_tryFind } from "../Helper/Collections.js";
|
|
8
8
|
import { CompositeCell } from "./CompositeCell.js";
|
|
9
9
|
import { max } from "../../fable_modules/fable-library-js.4.16.0/Double.js";
|
|
10
|
-
import { item, map, iterateIndexed } from "../../fable_modules/fable-library-js.4.16.0/Array.js";
|
|
10
|
+
import { setItem, item, map, iterateIndexed } from "../../fable_modules/fable-library-js.4.16.0/Array.js";
|
|
11
11
|
import { tryFind, ofArray } from "../../fable_modules/fable-library-js.4.16.0/Map.js";
|
|
12
12
|
import { Array_groupBy } from "../../fable_modules/fable-library-js.4.16.0/Seq2.js";
|
|
13
13
|
import { FSharpSet__Contains, ofArray as ofArray_1 } from "../../fable_modules/fable-library-js.4.16.0/Set.js";
|
|
14
14
|
import { toString } from "../../fable_modules/fable-library-js.4.16.0/Types.js";
|
|
15
|
+
import { rangeDouble } from "../../fable_modules/fable-library-js.4.16.0/Range.js";
|
|
16
|
+
import { op_UnaryNegation_Int32 } from "../../fable_modules/fable-library-js.4.16.0/Int32.js";
|
|
15
17
|
import { Dictionary } from "../../fable_modules/fable-library-js.4.16.0/MutableMap.js";
|
|
16
18
|
|
|
17
19
|
export function getColumnCount(headers) {
|
|
@@ -472,6 +474,44 @@ export function Unchecked_compositeHeaderMainColumnEqual(ch1, ch2) {
|
|
|
472
474
|
return toString(ch1) === toString(ch2);
|
|
473
475
|
}
|
|
474
476
|
|
|
477
|
+
/**
|
|
478
|
+
* Moves a column from one position to another
|
|
479
|
+
*
|
|
480
|
+
* This function moves the column from `fromCol` to `toCol` and shifts all columns in between accordingly
|
|
481
|
+
*/
|
|
482
|
+
export function Unchecked_moveColumnTo(rowCount, fromCol, toCol, headers, values) {
|
|
483
|
+
const patternInput = (fromCol < toCol) ? [-1, fromCol + 1, toCol] : [1, fromCol - 1, toCol];
|
|
484
|
+
const shiftStart = patternInput[1] | 0;
|
|
485
|
+
const shiftEnd = patternInput[2] | 0;
|
|
486
|
+
const shift = patternInput[0] | 0;
|
|
487
|
+
const header = headers[fromCol];
|
|
488
|
+
const enumerator = getEnumerator(toList(rangeDouble(shiftStart, op_UnaryNegation_Int32(shift), shiftEnd)));
|
|
489
|
+
try {
|
|
490
|
+
while (enumerator["System.Collections.IEnumerator.MoveNext"]()) {
|
|
491
|
+
const c = enumerator["System.Collections.Generic.IEnumerator`1.get_Current"]() | 0;
|
|
492
|
+
setItem(headers, c + shift, headers[c]);
|
|
493
|
+
}
|
|
494
|
+
}
|
|
495
|
+
finally {
|
|
496
|
+
disposeSafe(enumerator);
|
|
497
|
+
}
|
|
498
|
+
setItem(headers, toCol, header);
|
|
499
|
+
for (let r = 0; r <= (rowCount - 1); r++) {
|
|
500
|
+
const cell = getItemFromDict(values, [fromCol, r]);
|
|
501
|
+
const enumerator_1 = getEnumerator(toList(rangeDouble(shiftStart, op_UnaryNegation_Int32(shift), shiftEnd)));
|
|
502
|
+
try {
|
|
503
|
+
while (enumerator_1["System.Collections.IEnumerator.MoveNext"]()) {
|
|
504
|
+
const c_1 = enumerator_1["System.Collections.Generic.IEnumerator`1.get_Current"]() | 0;
|
|
505
|
+
values.set([c_1 + shift, r], getItemFromDict(values, [c_1, r]));
|
|
506
|
+
}
|
|
507
|
+
}
|
|
508
|
+
finally {
|
|
509
|
+
disposeSafe(enumerator_1);
|
|
510
|
+
}
|
|
511
|
+
values.set([toCol, r], cell);
|
|
512
|
+
}
|
|
513
|
+
}
|
|
514
|
+
|
|
475
515
|
/**
|
|
476
516
|
* From a list of rows consisting of headers and values, creates a list of combined headers and the values as a sparse matrix
|
|
477
517
|
*
|
package/Core/Table/ArcTables.js
CHANGED
|
@@ -199,7 +199,7 @@ export function ArcTablesAux_SanityChecks_validateNewNamesUnique(newNames, exist
|
|
|
199
199
|
|
|
200
200
|
export class ArcTables {
|
|
201
201
|
constructor(initTables) {
|
|
202
|
-
this.tables = initTables;
|
|
202
|
+
this.tables = ((ArcTablesAux_SanityChecks_validateNamesUnique(map_1((t) => t.Name, initTables)), initTables));
|
|
203
203
|
}
|
|
204
204
|
get Tables() {
|
|
205
205
|
const this$ = this;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { map } from "../../fable_modules/fable-library-js.4.16.0/Array.js";
|
|
2
2
|
import { union_type, string_type, getUnionCases, name } from "../../fable_modules/fable-library-js.4.16.0/Reflection.js";
|
|
3
3
|
import { Union, toString } from "../../fable_modules/fable-library-js.4.16.0/Types.js";
|
|
4
|
-
import { ActivePatterns_$007CTermColumn$007C_$007C, Pattern_OutputPattern, Pattern_InputPattern, ActivePatterns_$007CRegex$007C_$007C, tryParseIOTypeHeader } from "../Helper/Regex.js";
|
|
4
|
+
import { ActivePatterns_$007CTermColumn$007C_$007C, Pattern_CommentPattern, Pattern_OutputPattern, Pattern_InputPattern, ActivePatterns_$007CRegex$007C_$007C, tryParseIOTypeHeader } from "../Helper/Regex.js";
|
|
5
5
|
import { equals } from "../../fable_modules/fable-library-js.4.16.0/Util.js";
|
|
6
6
|
import { printf, toFail } from "../../fable_modules/fable-library-js.4.16.0/String.js";
|
|
7
7
|
import { OntologyAnnotation_$reflection, OntologyAnnotation } from "../OntologyAnnotation.js";
|
|
@@ -199,21 +199,21 @@ export class CompositeHeader extends Union {
|
|
|
199
199
|
this.fields = fields;
|
|
200
200
|
}
|
|
201
201
|
cases() {
|
|
202
|
-
return ["Component", "Characteristic", "Factor", "Parameter", "ProtocolType", "ProtocolDescription", "ProtocolUri", "ProtocolVersion", "ProtocolREF", "Performer", "Date", "Input", "Output", "FreeText"];
|
|
202
|
+
return ["Component", "Characteristic", "Factor", "Parameter", "ProtocolType", "ProtocolDescription", "ProtocolUri", "ProtocolVersion", "ProtocolREF", "Performer", "Date", "Input", "Output", "FreeText", "Comment"];
|
|
203
203
|
}
|
|
204
204
|
static get Cases() {
|
|
205
205
|
return map((x) => [x.tag, name(x)], getUnionCases(CompositeHeader_$reflection()));
|
|
206
206
|
}
|
|
207
207
|
static jsGetColumnMetaType(inp) {
|
|
208
|
-
return (inp === 0) ? 1 : ((inp === 1) ? 1 : ((inp === 2) ? 1 : ((inp === 3) ? 1 : ((inp === 4) ? 0 : ((inp === 5) ? 0 : ((inp === 6) ? 0 : ((inp === 7) ? 0 : ((inp === 8) ? 0 : ((inp === 9) ? 0 : ((inp === 10) ? 0 : ((inp === 11) ? 2 : ((inp === 12) ? 2 : ((inp === 13) ? 3 : toFail(printf("Cannot assign input `Tag` (%i) to `CompositeHeader`"))(inp))))))))))))));
|
|
208
|
+
return (inp === 0) ? 1 : ((inp === 1) ? 1 : ((inp === 2) ? 1 : ((inp === 3) ? 1 : ((inp === 4) ? 0 : ((inp === 5) ? 0 : ((inp === 6) ? 0 : ((inp === 7) ? 0 : ((inp === 8) ? 0 : ((inp === 9) ? 0 : ((inp === 10) ? 0 : ((inp === 11) ? 2 : ((inp === 12) ? 2 : ((inp === 13) ? 3 : ((inp === 14) ? 3 : toFail(printf("Cannot assign input `Tag` (%i) to `CompositeHeader`"))(inp)))))))))))))));
|
|
209
209
|
}
|
|
210
210
|
toString() {
|
|
211
211
|
const this$ = this;
|
|
212
|
-
return (this$.tag === 2) ? (`Factor [${this$.fields[0].NameText}]`) : ((this$.tag === 1) ? (`Characteristic [${this$.fields[0].NameText}]`) : ((this$.tag === 0) ? (`Component [${this$.fields[0].NameText}]`) : ((this$.tag === 4) ? "Protocol Type" : ((this$.tag === 8) ? "Protocol REF" : ((this$.tag === 5) ? "Protocol Description" : ((this$.tag === 6) ? "Protocol Uri" : ((this$.tag === 7) ? "Protocol Version" : ((this$.tag === 9) ? "Performer" : ((this$.tag === 10) ? "Date" : ((this$.tag === 11) ? this$.fields[0].asInput : ((this$.tag === 12) ? this$.fields[0].asOutput : ((this$.tag === 13) ? this$.fields[0] : (`Parameter [${this$.fields[0].NameText}]`)))))))))))));
|
|
212
|
+
return (this$.tag === 2) ? (`Factor [${this$.fields[0].NameText}]`) : ((this$.tag === 1) ? (`Characteristic [${this$.fields[0].NameText}]`) : ((this$.tag === 0) ? (`Component [${this$.fields[0].NameText}]`) : ((this$.tag === 4) ? "Protocol Type" : ((this$.tag === 8) ? "Protocol REF" : ((this$.tag === 5) ? "Protocol Description" : ((this$.tag === 6) ? "Protocol Uri" : ((this$.tag === 7) ? "Protocol Version" : ((this$.tag === 9) ? "Performer" : ((this$.tag === 10) ? "Date" : ((this$.tag === 11) ? this$.fields[0].asInput : ((this$.tag === 12) ? this$.fields[0].asOutput : ((this$.tag === 14) ? (`Comment [${this$.fields[0]}]`) : ((this$.tag === 13) ? this$.fields[0] : (`Parameter [${this$.fields[0].NameText}]`))))))))))))));
|
|
213
213
|
}
|
|
214
214
|
ToTerm() {
|
|
215
215
|
const this$ = this;
|
|
216
|
-
return (this$.tag === 2) ? this$.fields[0] : ((this$.tag === 1) ? this$.fields[0] : ((this$.tag === 0) ? this$.fields[0] : ((this$.tag === 4) ? OntologyAnnotation.create(toString(this$), void 0, this$.GetFeaturedColumnAccession) : ((this$.tag === 8) ? OntologyAnnotation.create(toString(this$)) : ((this$.tag === 5) ? OntologyAnnotation.create(toString(this$)) : ((this$.tag === 6) ? OntologyAnnotation.create(toString(this$)) : ((this$.tag === 7) ? OntologyAnnotation.create(toString(this$)) : ((this$.tag === 9) ? OntologyAnnotation.create(toString(this$)) : ((this$.tag === 10) ? OntologyAnnotation.create(toString(this$)) : ((this$.tag === 11) ? OntologyAnnotation.create(toString(this$)) : ((this$.tag === 12) ? OntologyAnnotation.create(toString(this$)) : ((this$.tag === 13) ? OntologyAnnotation.create(toString(this$)) : this$.fields[0]))))))))))));
|
|
216
|
+
return (this$.tag === 2) ? this$.fields[0] : ((this$.tag === 1) ? this$.fields[0] : ((this$.tag === 0) ? this$.fields[0] : ((this$.tag === 4) ? OntologyAnnotation.create(toString(this$), void 0, this$.GetFeaturedColumnAccession) : ((this$.tag === 8) ? OntologyAnnotation.create(toString(this$)) : ((this$.tag === 5) ? OntologyAnnotation.create(toString(this$)) : ((this$.tag === 6) ? OntologyAnnotation.create(toString(this$)) : ((this$.tag === 7) ? OntologyAnnotation.create(toString(this$)) : ((this$.tag === 9) ? OntologyAnnotation.create(toString(this$)) : ((this$.tag === 10) ? OntologyAnnotation.create(toString(this$)) : ((this$.tag === 11) ? OntologyAnnotation.create(toString(this$)) : ((this$.tag === 12) ? OntologyAnnotation.create(toString(this$)) : ((this$.tag === 14) ? OntologyAnnotation.create(toString(this$)) : ((this$.tag === 13) ? OntologyAnnotation.create(toString(this$)) : this$.fields[0])))))))))))));
|
|
217
217
|
}
|
|
218
218
|
static OfHeaderString(str) {
|
|
219
219
|
const matchValue = str.trim();
|
|
@@ -231,29 +231,36 @@ export class CompositeHeader extends Union {
|
|
|
231
231
|
return new CompositeHeader(12, [IOType.ofString(iotype_1)]);
|
|
232
232
|
}
|
|
233
233
|
else {
|
|
234
|
-
const activePatternResult_2 = ActivePatterns_$
|
|
234
|
+
const activePatternResult_2 = ActivePatterns_$007CRegex$007C_$007C(Pattern_CommentPattern, matchValue);
|
|
235
235
|
if (activePatternResult_2 != null) {
|
|
236
236
|
const r_2 = activePatternResult_2;
|
|
237
|
-
|
|
238
|
-
switch (matchValue_1) {
|
|
239
|
-
case "Parameter":
|
|
240
|
-
case "Parameter Value":
|
|
241
|
-
return new CompositeHeader(3, [OntologyAnnotation.create(r_2.TermName)]);
|
|
242
|
-
case "Factor":
|
|
243
|
-
case "Factor Value":
|
|
244
|
-
return new CompositeHeader(2, [OntologyAnnotation.create(r_2.TermName)]);
|
|
245
|
-
case "Characteristic":
|
|
246
|
-
case "Characteristics":
|
|
247
|
-
case "Characteristics Value":
|
|
248
|
-
return new CompositeHeader(1, [OntologyAnnotation.create(r_2.TermName)]);
|
|
249
|
-
case "Component":
|
|
250
|
-
return new CompositeHeader(0, [OntologyAnnotation.create(r_2.TermName)]);
|
|
251
|
-
default:
|
|
252
|
-
return new CompositeHeader(13, [str]);
|
|
253
|
-
}
|
|
237
|
+
return new CompositeHeader(14, [(r_2.groups && r_2.groups.commentKey) || ""]);
|
|
254
238
|
}
|
|
255
239
|
else {
|
|
256
|
-
|
|
240
|
+
const activePatternResult_3 = ActivePatterns_$007CTermColumn$007C_$007C(matchValue);
|
|
241
|
+
if (activePatternResult_3 != null) {
|
|
242
|
+
const r_3 = activePatternResult_3;
|
|
243
|
+
const matchValue_1 = r_3.TermColumnType;
|
|
244
|
+
switch (matchValue_1) {
|
|
245
|
+
case "Parameter":
|
|
246
|
+
case "Parameter Value":
|
|
247
|
+
return new CompositeHeader(3, [OntologyAnnotation.create(r_3.TermName)]);
|
|
248
|
+
case "Factor":
|
|
249
|
+
case "Factor Value":
|
|
250
|
+
return new CompositeHeader(2, [OntologyAnnotation.create(r_3.TermName)]);
|
|
251
|
+
case "Characteristic":
|
|
252
|
+
case "Characteristics":
|
|
253
|
+
case "Characteristics Value":
|
|
254
|
+
return new CompositeHeader(1, [OntologyAnnotation.create(r_3.TermName)]);
|
|
255
|
+
case "Component":
|
|
256
|
+
return new CompositeHeader(0, [OntologyAnnotation.create(r_3.TermName)]);
|
|
257
|
+
default:
|
|
258
|
+
return new CompositeHeader(13, [str]);
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
else {
|
|
262
|
+
return (matchValue === "Date") ? (new CompositeHeader(10, [])) : ((matchValue === "Performer") ? (new CompositeHeader(9, [])) : ((matchValue === "Protocol Description") ? (new CompositeHeader(5, [])) : ((matchValue === "Protocol Uri") ? (new CompositeHeader(6, [])) : ((matchValue === "Protocol Version") ? (new CompositeHeader(7, [])) : ((matchValue === "Protocol Type") ? (new CompositeHeader(4, [])) : ((matchValue === "Protocol REF") ? (new CompositeHeader(8, [])) : (new CompositeHeader(13, [matchValue]))))))));
|
|
263
|
+
}
|
|
257
264
|
}
|
|
258
265
|
}
|
|
259
266
|
}
|
|
@@ -395,6 +402,7 @@ export class CompositeHeader extends Union {
|
|
|
395
402
|
case 13:
|
|
396
403
|
case 11:
|
|
397
404
|
case 12:
|
|
405
|
+
case 14:
|
|
398
406
|
case 8:
|
|
399
407
|
case 5:
|
|
400
408
|
case 6:
|
|
@@ -495,6 +503,10 @@ export class CompositeHeader extends Union {
|
|
|
495
503
|
const this$ = this;
|
|
496
504
|
return this$.tag === 10;
|
|
497
505
|
}
|
|
506
|
+
get isComment() {
|
|
507
|
+
const this$ = this;
|
|
508
|
+
return this$.tag === 14;
|
|
509
|
+
}
|
|
498
510
|
get isFreeText() {
|
|
499
511
|
const this$ = this;
|
|
500
512
|
return this$.tag === 13;
|
|
@@ -580,9 +592,12 @@ export class CompositeHeader extends Union {
|
|
|
580
592
|
else if (equals(header, "FreeText")) {
|
|
581
593
|
matchResult = 13;
|
|
582
594
|
}
|
|
583
|
-
else {
|
|
595
|
+
else if (equals(header, "Comment")) {
|
|
584
596
|
matchResult = 14;
|
|
585
597
|
}
|
|
598
|
+
else {
|
|
599
|
+
matchResult = 15;
|
|
600
|
+
}
|
|
586
601
|
}
|
|
587
602
|
else {
|
|
588
603
|
switch (header.tag) {
|
|
@@ -638,6 +653,10 @@ export class CompositeHeader extends Union {
|
|
|
638
653
|
matchResult = 13;
|
|
639
654
|
break;
|
|
640
655
|
}
|
|
656
|
+
case 14: {
|
|
657
|
+
matchResult = 14;
|
|
658
|
+
break;
|
|
659
|
+
}
|
|
641
660
|
default:
|
|
642
661
|
matchResult = 0;
|
|
643
662
|
}
|
|
@@ -671,6 +690,8 @@ export class CompositeHeader extends Union {
|
|
|
671
690
|
return "Only one output column per table. E.g. experimental samples or files.";
|
|
672
691
|
case 13:
|
|
673
692
|
return "Placeholder";
|
|
693
|
+
case 14:
|
|
694
|
+
return "Comment";
|
|
674
695
|
default:
|
|
675
696
|
throw new Error(`Unable to parse combination to existing CompositeHeader: \`${header}\``);
|
|
676
697
|
}
|
|
@@ -717,9 +738,12 @@ export class CompositeHeader extends Union {
|
|
|
717
738
|
static freeText(s) {
|
|
718
739
|
return new CompositeHeader(13, [s]);
|
|
719
740
|
}
|
|
741
|
+
static comment(s) {
|
|
742
|
+
return new CompositeHeader(14, [s]);
|
|
743
|
+
}
|
|
720
744
|
}
|
|
721
745
|
|
|
722
746
|
export function CompositeHeader_$reflection() {
|
|
723
|
-
return union_type("ARCtrl.CompositeHeader", [], CompositeHeader, () => [[["Item", OntologyAnnotation_$reflection()]], [["Item", OntologyAnnotation_$reflection()]], [["Item", OntologyAnnotation_$reflection()]], [["Item", OntologyAnnotation_$reflection()]], [], [], [], [], [], [], [], [["Item", IOType_$reflection()]], [["Item", IOType_$reflection()]], [["Item", string_type]]]);
|
|
747
|
+
return union_type("ARCtrl.CompositeHeader", [], CompositeHeader, () => [[["Item", OntologyAnnotation_$reflection()]], [["Item", OntologyAnnotation_$reflection()]], [["Item", OntologyAnnotation_$reflection()]], [["Item", OntologyAnnotation_$reflection()]], [], [], [], [], [], [], [], [["Item", IOType_$reflection()]], [["Item", IOType_$reflection()]], [["Item", string_type]], [["Item", string_type]]]);
|
|
724
748
|
}
|
|
725
749
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { OntologyAnnotation_decoder, OntologyAnnotation_encoder } from "../OntologyAnnotation.js";
|
|
2
|
+
import { Json } from "../../fable_modules/Thoth.Json.Core.0.2.1/Types.fs.js";
|
|
2
3
|
import { empty, singleton } from "../../fable_modules/fable-library-js.4.16.0/List.js";
|
|
3
4
|
import { IOType_decoder, IOType_encoder } from "./IOType.js";
|
|
4
|
-
import { Json } from "../../fable_modules/Thoth.Json.Core.0.2.1/Types.fs.js";
|
|
5
5
|
import { list } from "../../fable_modules/Thoth.Json.Core.0.2.1/Encode.fs.js";
|
|
6
6
|
import { index, string, object } from "../../fable_modules/Thoth.Json.Core.0.2.1/Decode.fs.js";
|
|
7
7
|
import { CompositeHeader } from "../../Core/Table/CompositeHeader.js";
|
|
@@ -13,11 +13,12 @@ import { unwrap } from "../../fable_modules/fable-library-js.4.16.0/Option.js";
|
|
|
13
13
|
|
|
14
14
|
export function CompositeHeader_encoder(ch) {
|
|
15
15
|
const oaToJsonString = OntologyAnnotation_encoder;
|
|
16
|
-
const patternInput = (ch.tag === 3) ? ["Parameter", singleton(oaToJsonString(ch.fields[0]))] : ((ch.tag === 2) ? ["Factor", singleton(oaToJsonString(ch.fields[0]))] : ((ch.tag === 1) ? ["Characteristic", singleton(oaToJsonString(ch.fields[0]))] : ((ch.tag === 0) ? ["Component", singleton(oaToJsonString(ch.fields[0]))] : ((ch.tag === 4) ? ["ProtocolType", empty()] : ((ch.tag === 8) ? ["ProtocolREF", empty()] : ((ch.tag === 5) ? ["ProtocolDescription", empty()] : ((ch.tag === 6) ? ["ProtocolUri", empty()] : ((ch.tag === 7) ? ["ProtocolVersion", empty()] : ((ch.tag === 9) ? ["Performer", empty()] : ((ch.tag === 10) ? ["Date", empty()] : ((ch.tag === 11) ? ["Input", singleton(IOType_encoder(ch.fields[0]))] : ((ch.tag === 12) ? ["Output", singleton(IOType_encoder(ch.fields[0]))] : [ch.fields[0], empty()]))))))))))));
|
|
16
|
+
const patternInput = (ch.tag === 14) ? ["Comment", singleton(new Json(0, [ch.fields[0]]))] : ((ch.tag === 3) ? ["Parameter", singleton(oaToJsonString(ch.fields[0]))] : ((ch.tag === 2) ? ["Factor", singleton(oaToJsonString(ch.fields[0]))] : ((ch.tag === 1) ? ["Characteristic", singleton(oaToJsonString(ch.fields[0]))] : ((ch.tag === 0) ? ["Component", singleton(oaToJsonString(ch.fields[0]))] : ((ch.tag === 4) ? ["ProtocolType", empty()] : ((ch.tag === 8) ? ["ProtocolREF", empty()] : ((ch.tag === 5) ? ["ProtocolDescription", empty()] : ((ch.tag === 6) ? ["ProtocolUri", empty()] : ((ch.tag === 7) ? ["ProtocolVersion", empty()] : ((ch.tag === 9) ? ["Performer", empty()] : ((ch.tag === 10) ? ["Date", empty()] : ((ch.tag === 11) ? ["Input", singleton(IOType_encoder(ch.fields[0]))] : ((ch.tag === 12) ? ["Output", singleton(IOType_encoder(ch.fields[0]))] : [ch.fields[0], empty()])))))))))))));
|
|
17
17
|
return new Json(5, [[["headertype", new Json(0, [patternInput[0]])], ["values", list(patternInput[1])]]]);
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
export const CompositeHeader_decoder = object((get$) => {
|
|
21
|
+
let arg_7, objectArg_3;
|
|
21
22
|
let headerType;
|
|
22
23
|
const objectArg = get$.Required;
|
|
23
24
|
headerType = objectArg.Field("headertype", string);
|
|
@@ -31,7 +32,7 @@ export const CompositeHeader_decoder = object((get$) => {
|
|
|
31
32
|
const objectArg_2 = get$.Required;
|
|
32
33
|
return objectArg_2.Field("values", arg_5);
|
|
33
34
|
};
|
|
34
|
-
return (headerType === "Characteristic") ? (new CompositeHeader(1, [oa()])) : ((headerType === "Parameter") ? (new CompositeHeader(3, [oa()])) : ((headerType === "Component") ? (new CompositeHeader(0, [oa()])) : ((headerType === "Factor") ? (new CompositeHeader(2, [oa()])) : ((headerType === "Input") ? (new CompositeHeader(11, [io()])) : ((headerType === "Output") ? (new CompositeHeader(12, [io()])) : ((headerType === "ProtocolType") ? (new CompositeHeader(4, [])) : ((headerType === "ProtocolREF") ? (new CompositeHeader(8, [])) : ((headerType === "ProtocolDescription") ? (new CompositeHeader(5, [])) : ((headerType === "ProtocolUri") ? (new CompositeHeader(6, [])) : ((headerType === "ProtocolVersion") ? (new CompositeHeader(7, [])) : ((headerType === "Performer") ? (new CompositeHeader(9, [])) : ((headerType === "Date") ? (new CompositeHeader(10, [])) : (new CompositeHeader(13, [headerType]))))))))))))));
|
|
35
|
+
return (headerType === "Characteristic") ? (new CompositeHeader(1, [oa()])) : ((headerType === "Parameter") ? (new CompositeHeader(3, [oa()])) : ((headerType === "Component") ? (new CompositeHeader(0, [oa()])) : ((headerType === "Factor") ? (new CompositeHeader(2, [oa()])) : ((headerType === "Input") ? (new CompositeHeader(11, [io()])) : ((headerType === "Output") ? (new CompositeHeader(12, [io()])) : ((headerType === "ProtocolType") ? (new CompositeHeader(4, [])) : ((headerType === "ProtocolREF") ? (new CompositeHeader(8, [])) : ((headerType === "ProtocolDescription") ? (new CompositeHeader(5, [])) : ((headerType === "ProtocolUri") ? (new CompositeHeader(6, [])) : ((headerType === "ProtocolVersion") ? (new CompositeHeader(7, [])) : ((headerType === "Performer") ? (new CompositeHeader(9, [])) : ((headerType === "Date") ? (new CompositeHeader(10, [])) : ((headerType === "Comment") ? (new CompositeHeader(14, [(arg_7 = index(0, string), (objectArg_3 = get$.Required, objectArg_3.Field("values", arg_7)))])) : (new CompositeHeader(13, [headerType])))))))))))))));
|
|
35
36
|
});
|
|
36
37
|
|
|
37
38
|
export function ARCtrl_CompositeHeader__CompositeHeader_fromJsonString_Static_Z721C83C5(s) {
|
|
@@ -2,7 +2,7 @@ import { printf, toFail } from "../../fable_modules/fable-library-js.4.16.0/Stri
|
|
|
2
2
|
import { singleton, ofArray, tryFindIndex, tail, head, isEmpty, map } from "../../fable_modules/fable-library-js.4.16.0/List.js";
|
|
3
3
|
import { OntologyAnnotation } from "../../Core/OntologyAnnotation.js";
|
|
4
4
|
import { freeTextFromFsCells, dataFromFsCells, unitizedFromFsCells, termFromFsCells } from "./CompositeCell.js";
|
|
5
|
-
import { ActivePatterns_$007COutputColumnHeader$007C_$007C, ActivePatterns_$007CInputColumnHeader$007C_$007C, tryParseComponentColumnHeader, tryParseCharacteristicColumnHeader, tryParseFactorColumnHeader, tryParseParameterColumnHeader, ActivePatterns_$007CTSRColumnHeader$007C_$007C, ActivePatterns_$007CTANColumnHeader$007C_$007C, ActivePatterns_$007CUnitColumnHeader$007C_$007C } from "../../Core/Helper/Regex.js";
|
|
5
|
+
import { ActivePatterns_$007CComment$007C_$007C, ActivePatterns_$007COutputColumnHeader$007C_$007C, ActivePatterns_$007CInputColumnHeader$007C_$007C, tryParseComponentColumnHeader, tryParseCharacteristicColumnHeader, tryParseFactorColumnHeader, tryParseParameterColumnHeader, ActivePatterns_$007CTSRColumnHeader$007C_$007C, ActivePatterns_$007CTANColumnHeader$007C_$007C, ActivePatterns_$007CUnitColumnHeader$007C_$007C } from "../../Core/Helper/Regex.js";
|
|
6
6
|
import { IOType, CompositeHeader } from "../../Core/Table/CompositeHeader.js";
|
|
7
7
|
import { map as map_1 } from "../../fable_modules/fable-library-js.4.16.0/Option.js";
|
|
8
8
|
import { FsCell } from "../../fable_modules/FsSpreadsheet.6.1.2/Cells/FsCell.fs.js";
|
|
@@ -388,6 +388,35 @@ export function ActivePattern_$007COutput$007C_$007C(cells) {
|
|
|
388
388
|
}
|
|
389
389
|
}
|
|
390
390
|
|
|
391
|
+
export function ActivePattern_$007CComment$007C_$007C(cells) {
|
|
392
|
+
const cellValues = map((c) => c.ValueAsString(), cells);
|
|
393
|
+
let matchResult, key;
|
|
394
|
+
if (!isEmpty(cellValues)) {
|
|
395
|
+
const activePatternResult = ActivePatterns_$007CComment$007C_$007C(head(cellValues));
|
|
396
|
+
if (activePatternResult != null) {
|
|
397
|
+
if (isEmpty(tail(cellValues))) {
|
|
398
|
+
matchResult = 0;
|
|
399
|
+
key = activePatternResult;
|
|
400
|
+
}
|
|
401
|
+
else {
|
|
402
|
+
matchResult = 1;
|
|
403
|
+
}
|
|
404
|
+
}
|
|
405
|
+
else {
|
|
406
|
+
matchResult = 1;
|
|
407
|
+
}
|
|
408
|
+
}
|
|
409
|
+
else {
|
|
410
|
+
matchResult = 1;
|
|
411
|
+
}
|
|
412
|
+
switch (matchResult) {
|
|
413
|
+
case 0:
|
|
414
|
+
return [new CompositeHeader(14, [key]), freeTextFromFsCells];
|
|
415
|
+
default:
|
|
416
|
+
return void 0;
|
|
417
|
+
}
|
|
418
|
+
}
|
|
419
|
+
|
|
391
420
|
export function ActivePattern_$007CProtocolType$007C_$007C(cells) {
|
|
392
421
|
const activePatternResult = ActivePattern_$007CTerm$007C_$007C((s) => {
|
|
393
422
|
if (s === "Protocol Type") {
|
|
@@ -562,13 +591,20 @@ export function fromFsCells(cells) {
|
|
|
562
591
|
return ph;
|
|
563
592
|
}
|
|
564
593
|
else {
|
|
565
|
-
const activePatternResult_8 = ActivePattern_$
|
|
594
|
+
const activePatternResult_8 = ActivePattern_$007CComment$007C_$007C(cells);
|
|
566
595
|
if (activePatternResult_8 != null) {
|
|
567
|
-
const
|
|
568
|
-
return
|
|
596
|
+
const c_2 = activePatternResult_8;
|
|
597
|
+
return c_2;
|
|
569
598
|
}
|
|
570
599
|
else {
|
|
571
|
-
|
|
600
|
+
const activePatternResult_9 = ActivePattern_$007CFreeText$007C_$007C(cells);
|
|
601
|
+
if (activePatternResult_9 != null) {
|
|
602
|
+
const ft = activePatternResult_9;
|
|
603
|
+
return ft;
|
|
604
|
+
}
|
|
605
|
+
else {
|
|
606
|
+
return toFail(printf("Could not parse header group %O"))(cells);
|
|
607
|
+
}
|
|
572
608
|
}
|
|
573
609
|
}
|
|
574
610
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"Version":"4.16.0","FableOptions":{"TypedArrays":true,"ClampByteArrays":false,"Language":["JavaScript"],"Define":["FABLE_COMPILER","FABLE_COMPILER_4","FABLE_COMPILER_JAVASCRIPT"],"DebugMode":false,"OptimizeFSharpAst":false,"Verbosity":["Normal"],"FileExtension":".js","TriggeredByDependency":false,"NoReflection":false},"ProjectPath":"C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/ARCtrl/ARCtrl.fsproj","SourcePaths":["C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/Fable.Promise.2.2.2/Promise.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/Fable.Promise.2.2.2/PromiseImpl.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/Fable.Fetch.2.6.0/Fetch.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/Thoth.Json.Core.0.2.1/Types.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/Thoth.Json.Core.0.2.1/Decode.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/Thoth.Json.Core.0.2.1/Encode.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/FsAddress.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/Cells/FsCell.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/Cells/FsCellsCollection.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/Ranges/FsRangeAddress.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/Ranges/FsRangeBase.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/Ranges/FsRangeRow.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/Ranges/FsRangeColumn.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/Ranges/FsRange.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/FsRow.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/FsColumn.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/Tables/FsTableField.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/Tables/FsTableRow.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/Tables/FsTable.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/FsWorksheet.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/FsWorkbook.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/SheetBuilder.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/DSL/Expression.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/DSL/Types.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/DSL/Transform.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/DSL/Operators.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/DSL/CellBuilder.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/DSL/RowBuilder.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/DSL/ColumnBuilder.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/DSL/TableBuilder.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/DSL/SheetBuilder.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/DSL/WorkbookBuilder.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/DSL/DSL.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/Json/Value.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/Json/Cell.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/Json/Row.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/Json/Table.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/Json/Worksheet.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/Json/Workbook.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/Thoth.Json.JavaScript.0.1.0/Decode.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/Thoth.Json.JavaScript.0.1.0/Encode.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/FileSystem/Path.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/FileSystem/Commit.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/FileSystem/DefaultGitignore.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/FileSystem/FileSystemTree.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/FileSystem/FileSystem.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/CWL/Library.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Helper/Url.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Helper/Regex.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Helper/Identifier.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Helper/Collections.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Helper/HashCodes.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Helper/Printer.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Helper/SemVer.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/URI.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Comment.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/CommentList.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/OntologyAnnotation.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/DataFile.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Data.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Person.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Publication.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/OntologySourceReference.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/Value.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/IPropertyValue.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/Factor.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/FactorValue.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/MaterialAttribute.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/MaterialAttributeValue.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/MaterialType.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/Material.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/Source.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/Sample.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/Component.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/ProtocolParameter.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/Protocol.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/ProcessInput.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/ProcessOutput.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/ProcessParameterValue.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/Process.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/ProcessSequence.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/ColumnIndex.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Table/CompositeHeader.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Table/CompositeCell.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Table/CompositeColumn.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Table/ArcTableAux.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Table/ArcTable.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Table/ArcTables.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Table/DataMap.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/ArcTypes.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Template.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Templates.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Conversion.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/IdentifierSetters.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/AssemblyInfo.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/CollectionAux.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/Metadata/Conversions.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/Metadata/Comment.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/Metadata/SparseTable.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/Metadata/Contacts.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/Metadata/OntologyAnnotation.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/Metadata/DesignDescriptors.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/Metadata/Factors.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/Metadata/Protocols.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/Metadata/Publication.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/Metadata/Assays.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/Metadata/Study.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/Metadata/OntologySourceReference.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/AnnotationTable/CompositeCell.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/AnnotationTable/CompositeHeader.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/AnnotationTable/CompositeColumn.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/AnnotationTable/ArcTable.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/DataMapTable/DataMapHeader.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/DataMapTable/DataMapColumn.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/DataMapTable/DataMapTable.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/DataMap.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/ArcAssay.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/ArcStudy.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/ArcInvestigation.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/Template.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/property_value_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_assay_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_comment_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_component_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_data_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_factor_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_factor_value_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_investigation_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_material_attribute_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_material_attribute_value_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_material_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_ontology_annotation_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_ontology_source_reference_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_organization_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_person_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_process_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_process_parameter_value_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_protocol_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_protocol_parameter_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_publication_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_sample_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_source_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_study_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/rocrate_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/ConverterOptions.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Decode.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Encode.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/StringTable.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Comment.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/OntologyAnnotation.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/OntologySourceReference.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Person.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Publication.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/Value.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/PropertyValue.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/Factor.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/FactorValue.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/ProtocolParameter.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/MaterialType.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/MaterialAttribute.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/Component.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/Protocol.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/MaterialAttributeValue.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/Material.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/DataFile.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/Data.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/Source.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/Sample.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/ProcessParameterValue.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/ProcessInput.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/ProcessOutput.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/Process.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/ProcessSequence.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/AssayMaterials.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/StudyMaterials.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Table/OATable.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Table/CompositeCell.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Table/CellTable.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Table/IOType.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Table/CompositeHeader.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Table/ArcTable.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Table/Compression.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Table/Templates.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Assay.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Study.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Investigation.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/ARC.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Contract/Contract.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Contract/Datamap.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Contract/ArcAssay.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Contract/ArcStudy.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Contract/ArcInvestigation.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Contract/Git.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Contract/ARC.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/ARCtrl/WebRequest/WebRequest.Node.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/ARCtrl/WebRequest/WebRequest.Py.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/ARCtrl/WebRequest/WebRequest.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/ARCtrl/Template.Web.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/ARCtrl/ARC.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/ARCtrl/Json.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/ARCtrl/Xlsx.fs"],"FSharpOptions":["--nowarn:1701,1702,1701,1702","--define:TRACE","--define:RELEASE","--define:NETSTANDARD","--define:NETSTANDARD2_0","--define:NETSTANDARD1_0_OR_GREATER","--define:NETSTANDARD1_1_OR_GREATER","--define:NETSTANDARD1_2_OR_GREATER","--define:NETSTANDARD1_3_OR_GREATER","--define:NETSTANDARD1_4_OR_GREATER","--define:NETSTANDARD1_5_OR_GREATER","--define:NETSTANDARD1_6_OR_GREATER","--define:NETSTANDARD2_0_OR_GREATER","--noframework","--nologo","--simpleresolution","--nocopyfsharpcore","--nowin32manifest","--warn:3","--fullpaths","--flaterrors","--optimize-","-r:C:/Users/HLWei/.nuget/packages/thoth.json.newtonsoft/0.1.0/lib/netstandard2.0/Thoth.Json.Newtonsoft.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.ValueTuple.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Threading.Thread.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Threading.Tasks.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Threading.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Text.RegularExpressions.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Text.Encoding.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Runtime.Numerics.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Runtime.InteropServices.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Runtime.Extensions.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Runtime.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Reflection.Primitives.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Reflection.Extensions.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Reflection.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Numerics.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Net.Requests.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.IO.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Globalization.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Diagnostics.Tracing.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Diagnostics.Tools.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Diagnostics.Debug.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Core.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Console.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.ComponentModel.Primitives.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.ComponentModel.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Collections.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Collections.Concurrent.dll","-r:C:/Users/HLWei/.nuget/packages/njsonschema/10.8.0/lib/netstandard2.0/NJsonSchema.dll","-r:C:/Users/HLWei/.nuget/packages/newtonsoft.json/13.0.1/lib/netstandard2.0/Newtonsoft.Json.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/netstandard.dll","-r:C:/Users/HLWei/.nuget/packages/namotion.reflection/2.1.0/lib/netstandard2.0/Namotion.Reflection.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/mscorlib.dll","-r:C:/Users/HLWei/.nuget/packages/fable.core/4.2.0/lib/netstandard2.0/Fable.Core.dll","-r:C:/Users/HLWei/.nuget/packages/fable.browser.xmlhttprequest/1.1.0/lib/netstandard2.0/Browser.XMLHttpRequest.dll","-r:C:/Users/HLWei/.nuget/packages/fable.browser.webstorage/1.0.0/lib/netstandard2.0/Browser.WebStorage.dll","-r:C:/Users/HLWei/.nuget/packages/fable.browser.gamepad/1.1.0/lib/netstandard2.0/Browser.Gamepad.dll","-r:C:/Users/HLWei/.nuget/packages/fable.browser.event/1.5.0/lib/netstandard2.0/Browser.Event.dll","-r:C:/Users/HLWei/.nuget/packages/fable.browser.dom/1.0.0/lib/netstandard2.0/Browser.Dom.dll","-r:C:/Users/HLWei/.nuget/packages/fable.browser.blob/1.2.0/lib/netstandard2.0/Browser.Blob.dll","-r:C:\\Users\\HLWei\\.nuget\\packages\\fable\\4.16.0\\tools\\net6.0\\any\\FSharp.Core.dll"],"References":["C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/FileSystem/ARCtrl.FileSystem.fsproj","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/CWL/ARCtrl.CWL.fsproj","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/ARCtrl.Core.fsproj","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/ARCtrl.Spreadsheet.fsproj","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/ARCtrl.Json.fsproj","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Contract/ARCtrl.Contract.fsproj"],"OutDir":["Some","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js"],"FableLibDir":"C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/fable-library-js.4.16.0","FableModulesDir":"C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules","OutputType":["Library"],"TargetFramework":["Some","netstandard2.0"],"Exclude":[],"SourceMaps":false,"SourceMapsRoot":null}
|
|
1
|
+
{"Version":"4.16.0","FableOptions":{"TypedArrays":true,"ClampByteArrays":false,"Language":["JavaScript"],"Define":["FABLE_COMPILER","FABLE_COMPILER_4","FABLE_COMPILER_JAVASCRIPT"],"DebugMode":false,"OptimizeFSharpAst":false,"Verbosity":["Normal"],"FileExtension":".js","TriggeredByDependency":false,"NoReflection":false},"ProjectPath":"C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/ARCtrl/ARCtrl.fsproj","SourcePaths":["C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/Fable.Promise.2.2.2/Promise.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/Fable.Promise.2.2.2/PromiseImpl.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/Fable.Fetch.2.6.0/Fetch.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/Fable.SimpleHttp.3.5.0/Types.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/Fable.SimpleHttp.3.5.0/Http.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/Thoth.Json.Core.0.2.1/Types.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/Thoth.Json.Core.0.2.1/Decode.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/Thoth.Json.Core.0.2.1/Encode.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/FsAddress.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/Cells/FsCell.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/Cells/FsCellsCollection.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/Ranges/FsRangeAddress.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/Ranges/FsRangeBase.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/Ranges/FsRangeRow.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/Ranges/FsRangeColumn.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/Ranges/FsRange.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/FsRow.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/FsColumn.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/Tables/FsTableField.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/Tables/FsTableRow.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/Tables/FsTable.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/FsWorksheet.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/FsWorkbook.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/SheetBuilder.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/DSL/Expression.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/DSL/Types.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/DSL/Transform.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/DSL/Operators.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/DSL/CellBuilder.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/DSL/RowBuilder.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/DSL/ColumnBuilder.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/DSL/TableBuilder.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/DSL/SheetBuilder.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/DSL/WorkbookBuilder.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/DSL/DSL.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/Json/Value.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/Json/Cell.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/Json/Row.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/Json/Table.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/Json/Worksheet.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/FsSpreadsheet.6.1.2/Json/Workbook.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/Thoth.Json.JavaScript.0.1.0/Decode.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/Thoth.Json.JavaScript.0.1.0/Encode.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/FileSystem/Path.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/FileSystem/Commit.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/FileSystem/DefaultGitignore.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/FileSystem/DefaultGitattributes.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/FileSystem/FileSystemTree.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/FileSystem/FileSystem.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/CWL/Library.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Helper/Url.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Helper/Regex.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Helper/Identifier.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Helper/Collections.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Helper/HashCodes.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Helper/Printer.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Helper/SemVer.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/URI.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Comment.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/CommentList.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/OntologyAnnotation.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/DataFile.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Data.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Person.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Publication.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/OntologySourceReference.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/Value.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/IPropertyValue.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/Factor.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/FactorValue.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/MaterialAttribute.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/MaterialAttributeValue.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/MaterialType.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/Material.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/Source.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/Sample.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/Component.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/ProtocolParameter.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/Protocol.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/ProcessInput.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/ProcessOutput.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/ProcessParameterValue.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/Process.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/ProcessSequence.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Process/ColumnIndex.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Table/CompositeHeader.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Table/CompositeCell.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Table/CompositeColumn.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Table/ArcTableAux.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Table/ArcTable.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Table/ArcTables.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Table/DataMap.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/ArcTypes.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Template.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Templates.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/Conversion.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/IdentifierSetters.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/AssemblyInfo.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/CollectionAux.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/Metadata/Conversions.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/Metadata/Comment.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/Metadata/SparseTable.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/Metadata/Contacts.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/Metadata/OntologyAnnotation.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/Metadata/DesignDescriptors.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/Metadata/Factors.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/Metadata/Protocols.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/Metadata/Publication.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/Metadata/Assays.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/Metadata/Study.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/Metadata/OntologySourceReference.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/AnnotationTable/CompositeCell.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/AnnotationTable/CompositeHeader.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/AnnotationTable/CompositeColumn.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/AnnotationTable/ArcTable.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/DataMapTable/DataMapHeader.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/DataMapTable/DataMapColumn.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/DataMapTable/DataMapTable.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/DataMap.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/ArcAssay.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/ArcStudy.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/ArcInvestigation.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/Template.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/property_value_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_assay_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_comment_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_component_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_data_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_factor_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_factor_value_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_investigation_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_material_attribute_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_material_attribute_value_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_material_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_ontology_annotation_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_ontology_source_reference_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_organization_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_person_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_process_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_process_parameter_value_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_protocol_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_protocol_parameter_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_publication_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_sample_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_source_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/isa_study_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/context/rocrate/rocrate_context.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/ConverterOptions.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Decode.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Encode.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/StringTable.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Comment.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/OntologyAnnotation.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/OntologySourceReference.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Person.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Publication.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/Value.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/PropertyValue.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/Factor.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/FactorValue.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/ProtocolParameter.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/MaterialType.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/MaterialAttribute.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/Component.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/Protocol.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/MaterialAttributeValue.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/Material.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/DataFile.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/Data.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/Source.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/Sample.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/ProcessParameterValue.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/ProcessInput.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/ProcessOutput.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/Process.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/ProcessSequence.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/AssayMaterials.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Process/StudyMaterials.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Table/OATable.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Table/CompositeCell.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Table/CellTable.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Table/IOType.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Table/CompositeHeader.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Table/ArcTable.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Table/Compression.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Table/Templates.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Assay.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Study.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/Investigation.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/ARC.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Contract/Contract.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Contract/Datamap.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Contract/ArcAssay.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Contract/ArcStudy.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Contract/ArcInvestigation.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Contract/Git.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Contract/ARC.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/ARCtrl/WebRequest/WebRequest.Node.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/ARCtrl/WebRequest/WebRequest.Py.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/ARCtrl/WebRequest/WebRequest.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/ARCtrl/Template.Web.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/ARCtrl/ARC.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/ARCtrl/Json.fs","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/ARCtrl/Xlsx.fs"],"FSharpOptions":["--nowarn:1701,1702,1701,1702","--define:TRACE","--define:RELEASE","--define:NETSTANDARD","--define:NETSTANDARD2_0","--define:NETSTANDARD1_0_OR_GREATER","--define:NETSTANDARD1_1_OR_GREATER","--define:NETSTANDARD1_2_OR_GREATER","--define:NETSTANDARD1_3_OR_GREATER","--define:NETSTANDARD1_4_OR_GREATER","--define:NETSTANDARD1_5_OR_GREATER","--define:NETSTANDARD1_6_OR_GREATER","--define:NETSTANDARD2_0_OR_GREATER","--noframework","--nologo","--simpleresolution","--nocopyfsharpcore","--nowin32manifest","--warn:3","--fullpaths","--flaterrors","--optimize-","-r:C:/Users/HLWei/.nuget/packages/thoth.json.newtonsoft/0.1.0/lib/netstandard2.0/Thoth.Json.Newtonsoft.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.ValueTuple.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Threading.Thread.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Threading.Tasks.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Threading.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Text.RegularExpressions.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Text.Encoding.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Runtime.Numerics.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Runtime.InteropServices.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Runtime.Extensions.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Runtime.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Reflection.Primitives.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Reflection.Extensions.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Reflection.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Numerics.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Net.Requests.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.IO.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Globalization.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Diagnostics.Tracing.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Diagnostics.Tools.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Diagnostics.Debug.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Core.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Console.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.ComponentModel.Primitives.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.ComponentModel.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Collections.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/System.Collections.Concurrent.dll","-r:C:/Users/HLWei/.nuget/packages/njsonschema/10.8.0/lib/netstandard2.0/NJsonSchema.dll","-r:C:/Users/HLWei/.nuget/packages/newtonsoft.json/13.0.1/lib/netstandard2.0/Newtonsoft.Json.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/netstandard.dll","-r:C:/Users/HLWei/.nuget/packages/namotion.reflection/2.1.0/lib/netstandard2.0/Namotion.Reflection.dll","-r:C:/Users/HLWei/.nuget/packages/netstandard.library/2.0.3/build/netstandard2.0/ref/mscorlib.dll","-r:C:/Users/HLWei/.nuget/packages/fable.core/4.2.0/lib/netstandard2.0/Fable.Core.dll","-r:C:/Users/HLWei/.nuget/packages/fable.browser.xmlhttprequest/1.1.0/lib/netstandard2.0/Browser.XMLHttpRequest.dll","-r:C:/Users/HLWei/.nuget/packages/fable.browser.webstorage/1.0.0/lib/netstandard2.0/Browser.WebStorage.dll","-r:C:/Users/HLWei/.nuget/packages/fable.browser.gamepad/1.1.0/lib/netstandard2.0/Browser.Gamepad.dll","-r:C:/Users/HLWei/.nuget/packages/fable.browser.event/1.5.0/lib/netstandard2.0/Browser.Event.dll","-r:C:/Users/HLWei/.nuget/packages/fable.browser.dom/1.0.0/lib/netstandard2.0/Browser.Dom.dll","-r:C:/Users/HLWei/.nuget/packages/fable.browser.blob/1.2.0/lib/netstandard2.0/Browser.Blob.dll","-r:C:\\Users\\HLWei\\.nuget\\packages\\fable\\4.16.0\\tools\\net6.0\\any\\FSharp.Core.dll"],"References":["C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/FileSystem/ARCtrl.FileSystem.fsproj","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/CWL/ARCtrl.CWL.fsproj","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Core/ARCtrl.Core.fsproj","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Spreadsheet/ARCtrl.Spreadsheet.fsproj","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Json/ARCtrl.Json.fsproj","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/src/Contract/ARCtrl.Contract.fsproj"],"OutDir":["Some","C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js"],"FableLibDir":"C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules/fable-library-js.4.16.0","FableModulesDir":"C:/Users/HLWei/source/repos/ARC_tools/ARCtrl/dist/js/fable_modules","OutputType":["Library"],"TargetFramework":["Some","netstandard2.0"],"Exclude":[],"SourceMaps":false,"SourceMapsRoot":null}
|