Browse Source

update dataset metadata

Stefan Appelhoff 2 years ago
parent
commit
a11e76cd04
4 changed files with 54 additions and 28 deletions
  1. 13 8
      CHANGES
  2. 30 14
      code/source_to_bids.py
  3. 7 3
      datacite.yml
  4. 4 3
      dataset_description.json

+ 13 - 8
CHANGES

@@ -1,11 +1,7 @@
-1.0.0 2021-05-25
-    - Initial release
-
-1.0.1 2021-06-04
-    - Updated link to preprint in dataset_description.json and datacite.yml
-    - Added Manufacturer and ManufacturersModelName to physio.json (Tobii 4C eyetracker)
-    - Rephrased acknowledgements in dataset_description.json
-    - Updated code/environment.yml
+1.0.3 2022-03-15
+    - Re-ordered CHANGES from recent to old
+    - Updated links in README, source_to_bids.py, datacite.yml, dataset_description.json
+    - Bumped BIDSVersion in dataset_description to 1.7.0
 
 1.0.2 2022-02-01
     - Minor updates to README, source_to_bids.py, datacite.yml, dataset_description.json
@@ -13,3 +9,12 @@
     - Removed unneeded code/environment.yml
     - The `source_to_bids.py` script is now licensed under the MIT license
     - Make dataset available under PDDL
+
+1.0.1 2021-06-04
+    - Updated link to preprint in dataset_description.json and datacite.yml
+    - Added Manufacturer and ManufacturersModelName to physio.json (Tobii 4C eyetracker)
+    - Rephrased acknowledgements in dataset_description.json
+    - Updated code/environment.yml
+
+1.0.0 2021-05-25
+    - Initial release

+ 30 - 14
code/source_to_bids.py

@@ -212,18 +212,22 @@ funding:
 # Supported sources are: DOI, arXiv, PMID
 # In the citation field, please provide the full reference, including title, authors, journal etc.
 references:
+  -
+    id: "doi:10.1093/cercor/bhac062"
+    reftype: "IsSupplementTo"
+    citation: "Stefan Appelhoff, Ralph Hertwig, Bernhard Spitzer, Control over sampling boosts numerical evidence processing in human decisions from experience, Cerebral Cortex, 2022;, bhac062"
   -
     id: "doi:10.1101/2021.06.03.446960"
     reftype: "IsSupplementTo"
     citation: "Control over sampling boosts numerical evidence processing in human decisions from experience Stefan Appelhoff, Ralph Hertwig, Bernhard Spitzer bioRxiv 2021.06.03.446960"
   -
-    id: "doi:10.5281/zenodo.3361717"
+    id: "doi:10.5281/zenodo.3354368"
     reftype: "IsReferencedBy"
-    citation: "Stefan Appelhoff. (2019, August 6). sappelhoff/sp_experiment: v1.0 (Version v1.0). Zenodo. http://doi.org/10.5281/zenodo.3361717"
+    citation: "Appelhoff, Stefan. (2022). sp_experiment. Zenodo. https://doi.org/10.5281/zenodo.3354368"
   -
     id: "doi:10.5281/zenodo.5929222"
     reftype: "IsReferencedBy"
-    citation: "Stefan Appelhoff. (2022). sappelhoff/sp_code: 1.0.0 (1.0.0). Zenodo. https://doi.org/10.5281/zenodo.5929223"
+    citation: "Appelhoff, Stefan. (2022). sp_code. Zenodo. https://doi.org/10.5281/zenodo.5929222"
 
 # Resource type. Default is Dataset, other possible values are Software, DataPaper, Image, Text.
 resourcetype: Dataset
@@ -356,6 +360,12 @@ cd mpib_sp_eeg
 datalad get participants.tsv
 ```
 
+## Paper
+
+The paper is available (open access) in Cerebral Cortex.
+
+- Cerebral Cortex: https://doi.org/10.1093/cercor/bhac062
+
 ## Preprint
 
 A preprint is available on BioRxiv.
@@ -423,7 +433,7 @@ def make_dataset_description(bids_root, overwrite):
     # Prepare and write participants JSON
     dataset_description_json = {
         "Name": "mpib_sp_eeg",
-        "BIDSVersion": "1.6.0",
+        "BIDSVersion": "1.7.0",
         "DatasetType": "raw",
         "License": "PDDL",
         "Authors": [
@@ -432,16 +442,17 @@ def make_dataset_description(bids_root, overwrite):
             "Bernhard Spitzer",
         ],
         "Acknowledgements": "We thank Agnessa Karapetian, Clara Wicharz, Jann Wäscher, Yoonsang Lee, and Zhiqi Kang for help with data collection, Dirk Ostwald and Casper Kerrén for helpful discussions and feedback, and Susannah Goss for editorial assistance.",
-        "HowToAcknowledge": "Please cite https://doi.org/10.1101/2021.06.03.446960",
+        "HowToAcknowledge": "Please cite https://doi.org/10.1093/cercor/bhac062",
         "EthicsApprovals": [
             "The study was approved by the ethics committee of the Max Planck Institute for Human Development, Berlin, Germany."
         ],
         "ReferencesAndLinks": [
+            "https://doi.org/10.1093/cercor/bhac062",
             "https://doi.org/10.1101/2021.06.03.446960",
             "https://doi.org/10.5281/zenodo.3354368",
             "https://doi.org/10.5281/zenodo.5929222"
         ],
-        "DatasetDOI": "https://gin.g-node.org/sappelhoff/mpib_sp_eeg/",
+        "DatasetDOI": "10.12751/g-node.dtyh14",
     }
 
     fname = op.join(bids_root, "dataset_description.json")
@@ -468,14 +479,10 @@ def make_LICENSE(bids_root, overwrite):
 
 def make_CHANGES(bids_root, overwrite):
     """Make CHANGES file."""
-    txt = """1.0.0 2021-05-25
-    - Initial release
-
-1.0.1 2021-06-04
-    - Updated link to preprint in dataset_description.json and datacite.yml
-    - Added Manufacturer and ManufacturersModelName to physio.json (Tobii 4C eyetracker)
-    - Rephrased acknowledgements in dataset_description.json
-    - Updated code/environment.yml
+    txt = """1.0.3 2022-03-15
+    - Re-ordered CHANGES from recent to old
+    - Updated links in README, source_to_bids.py, datacite.yml, dataset_description.json
+    - Bumped BIDSVersion in dataset_description to 1.7.0
 
 1.0.2 2022-02-01
     - Minor updates to README, source_to_bids.py, datacite.yml, dataset_description.json
@@ -483,6 +490,15 @@ def make_CHANGES(bids_root, overwrite):
     - Removed unneeded code/environment.yml
     - The `source_to_bids.py` script is now licensed under the MIT license
     - Make dataset available under PDDL
+
+1.0.1 2021-06-04
+    - Updated link to preprint in dataset_description.json and datacite.yml
+    - Added Manufacturer and ManufacturersModelName to physio.json (Tobii 4C eyetracker)
+    - Rephrased acknowledgements in dataset_description.json
+    - Updated code/environment.yml
+
+1.0.0 2021-05-25
+    - Initial release
 """
 
     fname = op.join(bids_root, "CHANGES")

+ 7 - 3
datacite.yml

@@ -69,18 +69,22 @@ funding:
 # Supported sources are: DOI, arXiv, PMID
 # In the citation field, please provide the full reference, including title, authors, journal etc.
 references:
+  -
+    id: "doi:10.1093/cercor/bhac062"
+    reftype: "IsSupplementTo"
+    citation: "Stefan Appelhoff, Ralph Hertwig, Bernhard Spitzer, Control over sampling boosts numerical evidence processing in human decisions from experience, Cerebral Cortex, 2022;, bhac062"
   -
     id: "doi:10.1101/2021.06.03.446960"
     reftype: "IsSupplementTo"
     citation: "Control over sampling boosts numerical evidence processing in human decisions from experience Stefan Appelhoff, Ralph Hertwig, Bernhard Spitzer bioRxiv 2021.06.03.446960"
   -
-    id: "doi:10.5281/zenodo.3361717"
+    id: "doi:10.5281/zenodo.3354368"
     reftype: "IsReferencedBy"
-    citation: "Stefan Appelhoff. (2019, August 6). sappelhoff/sp_experiment: v1.0 (Version v1.0). Zenodo. http://doi.org/10.5281/zenodo.3361717"
+    citation: "Appelhoff, Stefan. (2022). sp_experiment. Zenodo. https://doi.org/10.5281/zenodo.3354368"
   -
     id: "doi:10.5281/zenodo.5929222"
     reftype: "IsReferencedBy"
-    citation: "Stefan Appelhoff. (2022). sappelhoff/sp_code: 1.0.0 (1.0.0). Zenodo. https://doi.org/10.5281/zenodo.5929223"
+    citation: "Appelhoff, Stefan. (2022). sp_code. Zenodo. https://doi.org/10.5281/zenodo.5929222"
 
 # Resource type. Default is Dataset, other possible values are Software, DataPaper, Image, Text.
 resourcetype: Dataset

+ 4 - 3
dataset_description.json

@@ -1,6 +1,6 @@
 {
     "Name": "mpib_sp_eeg",
-    "BIDSVersion": "1.6.0",
+    "BIDSVersion": "1.7.0",
     "DatasetType": "raw",
     "License": "PDDL",
     "Authors": [
@@ -9,14 +9,15 @@
         "Bernhard Spitzer"
     ],
     "Acknowledgements": "We thank Agnessa Karapetian, Clara Wicharz, Jann Wäscher, Yoonsang Lee, and Zhiqi Kang for help with data collection, Dirk Ostwald and Casper Kerrén for helpful discussions and feedback, and Susannah Goss for editorial assistance.",
-    "HowToAcknowledge": "Please cite https://doi.org/10.1101/2021.06.03.446960",
+    "HowToAcknowledge": "Please cite https://doi.org/10.1093/cercor/bhac062",
     "EthicsApprovals": [
         "The study was approved by the ethics committee of the Max Planck Institute for Human Development, Berlin, Germany."
     ],
     "ReferencesAndLinks": [
+        "https://doi.org/10.1093/cercor/bhac062",
         "https://doi.org/10.1101/2021.06.03.446960",
         "https://doi.org/10.5281/zenodo.3354368",
         "https://doi.org/10.5281/zenodo.5929222"
     ],
-    "DatasetDOI": "https://gin.g-node.org/sappelhoff/mpib_sp_eeg/"
+    "DatasetDOI": "10.12751/g-node.dtyh14"
 }