Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding Sensolytics SDC example file #35

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
__pycache__

*.pyc
/.vs
NicolasCARPi marked this conversation as resolved.
Show resolved Hide resolved
98 changes: 98 additions & 0 deletions examples/sensolytics/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
#Sensolytics example

## Information
Sensolytics GmbH is developing and producing instruments for electrochemical research, focused on localised electrochemistry. Our Scanning Droplet Cell Systems are used to run user-defined electroanalytical experiments at defined positions of a sample surface, and can produce large numbers of datafiles (binary, undisclosed format of a third-party), depending on the users experimental settings. To provide users an easy way of loading the measured data into their electronic labbook, we added an export function which is saving a .eln file including the raw data and the scan parameters (*i.e. the grid definition*).

### SDC Experiment.eln
```json
{
"@context": "https://w3id.org/ro/crate/1.1/context",
"@graph": [
{
"@id": "ro-crate-metadata.json",
"@type": "CreativeWork",
"about": {
"@id": "./"
},
"conformsTo": {
"@id": "https://w3id.org/ro/crate/1.1"
},
"dateCreated": "2024-04-25T17:06:07+02:00",
"sdPublisher": {
"@type": "Organization",
"name": "Sensolytics GmbH",
"logo": "https://www.sensolytics.de/images/stories/sensolytics_cropped.png",
"slogan": "Electrochemistry at the tip.",
"url": "https://www.sensolytics.de"
}
},
{
"@id": "./",
"@type": [
"Dataset"
],
"hasPart": [
{
"@id": "./Data"
}
]
},
{
"@id": "./Data",
"@type": "Dataset",
"name": "MyExperiment",
"text": "<p>Description of the experiment!</p>",
"hasPart": [
{
"@id": "./Data/0001_16082,5_17494_CV.nox"
},
{
"@id": "./Data/0002_15582,5_17994_CV.nox"
},
{
"@id": "./Data/0003_16082,5_17994_CV.nox"
},
{
"@id": "./Data/0004_16582,5_17994_CV.nox"
},
{
"@id": "./Data/0005_16082,5_18494_CV.nox"
},
{
"@id": "./Data/24-04-25_045906 Experiment Info.txt"
}
]
},
{
"@id": "./Data/0001_16082,5_17494_CV.nox",
"@type": "File",
"sha256": "248c1631ff1ad27919cbed1c29baeb39822de2b91087582d7fc17a532cc91c76"
},
{
"@id": "./Data/0002_15582,5_17994_CV.nox",
"@type": "File",
"sha256": "1ef5b91dd127dc7120262d5c0433bf7afc95e4f188d75aea1c019972f6e67a6b"
},
{
"@id": "./Data/0003_16082,5_17994_CV.nox",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you add a an encodingFormat property maybe? (no idea what is a .nox)

"@type": "File",
"sha256": "e41409cdca9520410f8f47c4f215ffc02b03b55c60f902693e6618cc8f79dc2b"
},
{
"@id": "./Data/0004_16582,5_17994_CV.nox",
"@type": "File",
"sha256": "11adbbd769aecf7f78a9130c58607565f3c5fd4a557ba95a3efab3c0207a0eb1"
},
{
"@id": "./Data/0005_16082,5_18494_CV.nox",
"@type": "File",
"sha256": "cf028bc5a6f2760234bf60ab69df2d760c1aca963e4cf3e039f6834f07954deb"
},
{
"@id": "./Data/24-04-25_045906 Experiment Info.txt",
"@type": "File",
"sha256": "bd27a8bd0689a6ee8839d84beada231407103dfe96186662dbcbf8828b99f781"
}
]
}
```
4 changes: 4 additions & 0 deletions examples/sensolytics/README_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#Sensolytics example

## Information
Sensolytics GmbH is developing and producing instruments for electrochemical research, focused on localised electrochemistry. Our Scanning Droplet Cell Systems are used to run user-defined electroanalytical experiments at defined positions of a sample surface, and can produce large numbers of datafiles (binary, undisclosed format of a third-party), depending on the users experimental settings. To provide users an easy way of loading the measured data into their electronic labbook, we added an export function which is saving a .eln file including the raw data and the scan parameters (*i.e. the grid definition*).
Binary file added examples/sensolytics/SDC Experiment.eln
Binary file not shown.
Loading