-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #269 from nfdi4plants/python
Python 🚧
- Loading branch information
Showing
50 changed files
with
927 additions
and
438 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
"isRoot": true, | ||
"tools": { | ||
"fable": { | ||
"version": "4.5.0", | ||
"version": "4.6.0", | ||
"commands": [ | ||
"fable" | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,17 +6,17 @@ | |
"main": "index.js", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/nfdi4plants/arcAPI.git" | ||
"url": "git+https://github.com/nfdi4plants/ARCtrl.git" | ||
}, | ||
"author": "Heinrich Lukas Weil <[email protected]> (https://github.com/HLWeil)", | ||
"contributors": [ | ||
"Kevin Frey <[email protected]> (https://github.com/Freymaurer)" | ||
], | ||
"license": "ISC", | ||
"bugs": { | ||
"url": "https://github.com/nfdi4plants/arcAPI/issues" | ||
"url": "https://github.com/nfdi4plants/ARCtrl/issues" | ||
}, | ||
"homepage": "https://github.com/nfdi4plants/arcAPI#readme", | ||
"homepage": "https://github.com/nfdi4plants/ARCtrl#readme", | ||
"dependencies": { | ||
"fable-library": "^1.1.1", | ||
"isomorphic-fetch": "^3.0.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Tables | ||
|
||
🔗 The script files for this documentation can be found here: | ||
- [JavaScript](/scripts_js/Tables.js) | ||
- [F#](/scripts_fsharp/Tables.fsx) | ||
|
||
The Tables shown in xlsx files in ISA files are modelled in ARCtrl as `ArcTable` object. These objects are assigned as `ArcTables` interface in both `ArcAssay` and `ArcStudy`. | ||
|
||
`ArcTable` has the following fields: | ||
- `Name`: Unique (per `ArcTables`) identifier. | ||
- `Headers`: Array of `CompositeHeader`. | ||
- `Values` (might be changed in the future.): A Dictionary of key value pairs. Keys are of type `int * int`, representing `columnIndex * rowIndex` of the cell. The value is of type `CompositeCell`. | ||
|
||
`ArcTable`s are built on the system, that each "column" (built from a `CompositeHeader` and all `CompositeCell`s of the same column index) create a `CompositeColumn`, which can be translated to all types of columns in xlsx format. Each `CompositeColumn` may translate to 1, 3 or 4 xlsx columns, depending on the column type. | ||
|
||
🔗 Check out the code examples for a minimal table manipulation example! |
Oops, something went wrong.