You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/ISADotNet.XLSX/AssayFile/Assay.fs
+16-10Lines changed: 16 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -14,11 +14,11 @@ module Process =
14
14
/// matrixHeaders are the column headers of the table
15
15
///
16
16
/// sparseMatrix is a sparse representation of the sheet table, with the first part of the key being the column header and the second part being a zero based row index
/// matrixHeaders are the column headers of the table
47
47
///
48
48
/// sparseMatrix is a sparse representation of the sheet table, with the first part of the key being the column header and the second part being a zero based row index
|> Seq.map (fun(name,matrixHeaders,matrix)-> Process.fromSparseMatrix name matrixHeaders matrix)
@@ -72,16 +72,20 @@ module Assay =
72
72
73
73
/// Create a new ISADotNet.XLSX assay file constisting of two sheets. The first has the name of the assayIdentifier and is meant to store parameters used in the assay. The second stores additional assay metadata
74
74
letinit metadataSheetName assayIdentifier path =
75
-
Spreadsheet.initWithSST assayIdentifier path
75
+
Spreadsheet.initWithSst assayIdentifier path
76
76
|> MetaData.init metadataSheetName
77
77
|> Spreadsheet.close
78
78
79
-
/// Parses the assay file
79
+
/// Reads an assay from an xlsx spreadsheetdocument
80
+
///
81
+
/// As factors and protocols are used for the investigation file, they are returned individually
82
+
///
83
+
/// The persons from the metadata sheet are returned independently as they are not a part of the assay object
API.Update.UpdateByExisting.updateRecordType assayMetaData assay// Merges the assay containing the assay meta data and the assay containing the processes retrieved from the sheets
0 commit comments