README 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. # README
  2. ## Contact person:
  3. - Rémi Gau
  4. - email: remi.gau@gmail.com
  5. - ORCID: 0000-0002-1535-9767
  6. ## Access to the data
  7. See the datalad section below.
  8. ## Overview
  9. - [ ] Project name (if relevant)
  10. - [x] Year(s) that the project ran
  11. - from 2007 to 2010
  12. - [ ] Brief overview of the tasks in the experiment
  13. A paragraph giving an overview of the experiment. This should include the goals
  14. or purpose and a discussion about how the experiment tries to achieve these
  15. goals.
  16. - [ ] Description of the contents of the dataset
  17. An easy thing to add is the output of the bids-validator that describes what
  18. type of data and the number of subject one can expect to find in the dataset.
  19. - [ ] Independent variables
  20. A brief discussion of condition variables (sometimes called contrasts or
  21. independent variables) that were varied across the experiment.
  22. - [ ] Dependent variables
  23. A brief discussion of the response variables (sometimes called the dependent
  24. variables) that were measured and or calculated to assess the effects of varying
  25. the condition variables. This might also include questionnaires administered to
  26. assess behavioral aspects of the experiment.
  27. - [ ] Control variables
  28. A brief discussion of the control variables --- that is what aspects were
  29. explicitly controlled in this experiment. The control variables might include
  30. subject pool, environmental conditions, set up, or other things that were
  31. explicitly controlled.
  32. - [ ] Quality assessment of the data
  33. ## Methods
  34. ### Apparatus
  35. A summary of the equipment and environment setup for the experiment. For
  36. example, was the experiment performed in a shielded room with the subject seated
  37. in a fixed position.
  38. ### Initial setup
  39. A summary of what setup was performed when a subject arrived.
  40. ### Task organization
  41. How the tasks were organized for a session. This is particularly important
  42. because BIDS datasets usually have task data separated into different files.)
  43. - [ ] Was task order counter-balanced?
  44. - [ ] What other activities were interspersed between tasks?
  45. - [ ] In what order were the tasks and other activities performed?
  46. ### Task details
  47. As much detail as possible about the task and the events that were recorded.
  48. ### Missing data
  49. Mention something if some participants are missing some aspects of the data.
  50. This can take the form of a processing log and/or abnormalities about the
  51. dataset.
  52. Some examples:
  53. - A brain lesion or defect only present in one participant
  54. - Some experimental conditions missing on a given run for a participant because
  55. of some technical issue.
  56. - Any noticeable feature of the data for certain participants
  57. - Differences (even slight) in protocol for certain participants.
  58. ................................................................................
  59. [![made-with-datalad](https://www.datalad.org/badges/made_with.svg)](https://datalad.org)
  60. ## DataLad datasets and how to use them
  61. This repository is a [DataLad](https://www.datalad.org/) dataset. It provides
  62. fine-grained data access down to the level of individual files, and allows for
  63. tracking future updates. In order to use this repository for data retrieval,
  64. [DataLad](https://www.datalad.org/) is required. It is a free and open source
  65. command line tool, available for all major operating systems, and builds up on
  66. Git and [git-annex](https://git-annex.branchable.com/) to allow sharing,
  67. synchronizing, and version controlling collections of large files. You can find
  68. information on how to install DataLad at
  69. [handbook.datalad.org/en/latest/intro/installation.html](http://handbook.datalad.org/en/latest/intro/installation.html).
  70. ### Get the dataset
  71. A DataLad dataset can be `cloned` by running
  72. ```
  73. datalad install git@gin.g-node.org:/RemiGau/example_ephys_bids_conversion.git
  74. ```
  75. Once a dataset is cloned, it is a light-weight directory on your local machine.
  76. At this point, it contains only small metadata and information on the identity
  77. of the files in the dataset, but not actual _content_ of the (sometimes large)
  78. data files.
  79. ### Retrieve dataset content
  80. After cloning a dataset, you can retrieve file contents by running
  81. ```
  82. datalad get <path/to/directory/or/file>`
  83. ```
  84. This command will trigger a download of the files, directories, or subdatasets
  85. you have specified.
  86. DataLad datasets can contain other datasets, so called _subdatasets_. If you
  87. clone the top-level dataset, subdatasets do not yet contain metadata and
  88. information on the identity of files, but appear to be empty directories. In
  89. order to retrieve file availability metadata in subdatasets, run
  90. ```
  91. datalad get -n <path/to/subdataset>
  92. ```
  93. Afterwards, you can browse the retrieved metadata to find out about subdataset
  94. contents, and retrieve individual files with `datalad get`. If you use
  95. `datalad get <path/to/subdataset>`, all contents of the subdataset will be
  96. downloaded at once.
  97. ### Stay up-to-date
  98. DataLad datasets can be updated. The command `datalad update` will _fetch_
  99. updates and store them on a different branch (by default
  100. `remotes/origin/master`). Running
  101. ```
  102. datalad update --merge
  103. ```
  104. will _pull_ available updates and integrate them in one go.
  105. ### Find out what has been done
  106. DataLad datasets contain their history in the `git log`. By running `git log`
  107. (or a tool that displays Git history) in the dataset or on specific files, you
  108. can find out what has been done to the dataset or to individual files by whom,
  109. and when.
  110. ### More information
  111. More information on DataLad and how to use it can be found in the DataLad
  112. Handbook at
  113. [handbook.datalad.org](http://handbook.datalad.org/en/latest/index.html). The
  114. chapter "DataLad datasets" can help you to familiarize yourself with the concept
  115. of a dataset.