diff --git a/.appveyor.yml b/.appveyor.yml index 822afd136..d8e2e2af1 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -26,7 +26,7 @@ shallow_clone: false environment: DTS: datalad_next APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu2004 - INSTALL_SYSPKGS: python3-virtualenv graphicsmagick-imagemagick-compat moreutils jq uidmap + INSTALL_SYSPKGS: graphicsmagick-imagemagick-compat moreutils jq uidmap # go with whatever is most recent to catch anything that might break # with them INSTALL_GITANNEX: git-annex -m snapshot diff --git a/Makefile b/Makefile index b4a12907a..bb843a4d5 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ SHELL := /bin/bash # this pattern rule lets you run "make build" (or any other target # in docs/Makefile) in this directory as though you were in docs/ %: - cd docs && make $@ + $(MAKE) -C docs $@ clean-build: rm -rf docs/_build diff --git a/docs/Makefile b/docs/Makefile index be92bfa43..36aab7406 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -2,7 +2,7 @@ # # You can set these variables from the command line. -SPHINXOPTS = -W -T -v +SPHINXOPTS = -W -T -v -n SPHINXBUILD = python -m sphinx PAPER = BUILDDIR = _build diff --git a/docs/_static/distribits-teaser.jpg b/docs/_static/distribits-teaser.jpg new file mode 100644 index 000000000..87f1a0241 Binary files /dev/null and b/docs/_static/distribits-teaser.jpg differ diff --git a/docs/basics/101-101-create.rst b/docs/basics/101-101-create.rst index b186de9c9..1d62116bc 100644 --- a/docs/basics/101-101-create.rst +++ b/docs/basics/101-101-create.rst @@ -24,7 +24,9 @@ concepts of DataLad datasets together by creating one. Find a nice place on your computer's file system to put a dataset for ``DataLad-101``, and create a fresh, empty dataset with the :dlcmd:`create` command. -Note the command structure of :dlcmd:`create` (optional bits are enclosed in ``[ ]``):: +Note the command structure of :dlcmd:`create` (optional bits are enclosed in ``[ ]``): + +.. code-block:: bash datalad create [--description "..."] [-c ] PATH diff --git a/docs/basics/101-102-populate.rst b/docs/basics/101-102-populate.rst index 6e7da589d..5b13c93f9 100644 --- a/docs/basics/101-102-populate.rst +++ b/docs/basics/101-102-populate.rst @@ -32,7 +32,7 @@ Below is a short list of optional readings. We decide to download them (they are all free, in total about 15 MB), and save them in ``DataLad-101/books``. - Additional reading about the command line: `The Linux Command Line `_ -- An intro to Python: `A byte of Python `_ +- An intro to Python: `A byte of Python `_ You can either visit the links and save them in ``books/``, or run the following commands [#f2]_ to download the books right from the terminal. @@ -46,7 +46,9 @@ are presented here, make sure to check the :windows-wit:`on peculiarities of its In Unix shells, ``\`` can be used to split a command into several lines, for example to aid readability. Standard Windows terminals (including the Anaconda prompt) do not support this. - They instead use the ``^`` character:: + They instead use the ``^`` character: + + .. code-block:: bash $ wget -q https://sourceforge.net/projects/linuxcommand/files/TLCL/19.01/TLCL-19.01.pdf/download ^ -O TLCL.pdf @@ -62,7 +64,7 @@ are presented here, make sure to check the :windows-wit:`on peculiarities of its $ cd books $ wget -q https://sourceforge.net/projects/linuxcommand/files/TLCL/19.01/TLCL-19.01.pdf/download \ -O TLCL.pdf - $ wget -q https://homepages.uc.edu/~becktl/byte_of_python.pdf \ + $ wget -q https://github.com/swaroopch/byte-of-python/releases/download/vadb91fc6fce27c58e3f931f5861806d3ccd1054c/byte-of-python.pdf \ -O byte-of-python.pdf # get back into the root of the dataset $ cd ../ @@ -75,12 +77,14 @@ curl `. :name: ww-curl-instead-wget Many versions of Windows do not ship with the tool ``wget``. - You can install it, but it may be easier to use the pre-installed ``curl`` command:: + You can install it, but it may be easier to use the pre-installed ``curl`` command: + + .. code-block:: bash $ cd books $ curl -L https://sourceforge.net/projects/linuxcommand/files/TLCL/19.01/TLCL-19.01.pdf/download \ -o TLCL.pdf - $ curl -L https://homepages.uc.edu/~becktl/byte_of_python.pdf \ + $ curl -L https://github.com/swaroopch/byte-of-python/releases/download/vadb91fc6fce27c58e3f931f5861806d3ccd1054c/byte-of-python.pdf \ -o byte-of-python.pdf $ cd ../ diff --git a/docs/basics/101-103-modify.rst b/docs/basics/101-103-modify.rst index f720b896b..ba62e5752 100644 --- a/docs/basics/101-103-modify.rst +++ b/docs/basics/101-103-modify.rst @@ -62,11 +62,13 @@ root of your ``DataLad-101`` dataset: Heredocs rely on Unix-type redirection and multi-line commands -- which is not supported on most native Windows terminals or the Anaconda prompt on Windows. If you are using an Anaconda prompt or a Windows terminal other than Git Bash, instead of executing heredocs, please open up an editor and paste and save the text into it. - The relevant text in the snippet below would be:: + The relevant text in the snippet below would be: + + .. code-block:: text One can create a new dataset with 'datalad create [--description] PATH'. The dataset is created empty - + If you are using Git Bash, however, here docs will work just fine. .. runrecord:: _examples/DL-101-103-101 diff --git a/docs/basics/101-105-install.rst b/docs/basics/101-105-install.rst index 5b1bdbe0e..bb4837685 100644 --- a/docs/basics/101-105-install.rst +++ b/docs/basics/101-105-install.rst @@ -115,14 +115,18 @@ chapters in this handbook will demonstrate how useful this information can be. important to keep in mind whenever you do not execute the :dlcmd:`clone` command from the root of this dataset. Luckily, there is a shortcut: ``-d^`` will always point to root of the top-most dataset. For example, if you navigate into ``recordings``, - the command would be:: + the command would be: + + .. code-block:: bash datalad clone -d^ https://github.com/datalad-datasets/longnow-podcasts.git longnow .. find-out-more:: What if I do not install into an existing dataset? If you do not install into an existing dataset, you only need to omit the ``-d/--dataset`` - option. You can try:: + option. You can try: + + .. code-block:: bash datalad clone https://github.com/datalad-datasets/longnow-podcasts.git diff --git a/docs/basics/101-106-nesting.rst b/docs/basics/101-106-nesting.rst index 081fd5d76..00d8a7684 100644 --- a/docs/basics/101-106-nesting.rst +++ b/docs/basics/101-106-nesting.rst @@ -104,7 +104,9 @@ we can set subdatasets to previous states, or *update* them. a Git command let's you run the command as if Git was started in this path instead of the current working directory. Thus, from the root of ``DataLad-101``, this command would have given you the - subdataset's history as well:: + subdataset's history as well: + + .. code-block:: bash $ git -C recordings/longnow log --oneline diff --git a/docs/basics/101-107-summary.rst b/docs/basics/101-107-summary.rst index d8c0dfef7..2e11f8362 100644 --- a/docs/basics/101-107-summary.rst +++ b/docs/basics/101-107-summary.rst @@ -6,7 +6,9 @@ and making simple modifications *locally*. * An empty dataset can be created with the :dlcmd:`create` command. It's useful to add a description to the dataset and use the ``-c text2git`` configuration, but we will see later why. - This is the command structure:: + This is the command structure: + + .. code-block:: bash datalad create --description "here is a description" -c text2git PATH @@ -19,7 +21,9 @@ and making simple modifications *locally*. exist in your dataset, specify the path to the precise file (change) that should be saved to history. Remember, if you run a :dlcmd:`save` without specifying a path, all untracked files and all file changes will be committed to the history together! - This is the command structure:: + This is the command structure: + + .. code-block:: bash datalad save -m "here is a commit message" [PATH] @@ -46,7 +50,9 @@ and experienced the concept of modular nesting datasets. .. index:: ! datalad command; clone -* A published dataset can be installed with the :dlcmd:`clone` command:: +* A published dataset can be installed with the :dlcmd:`clone` command: + + .. code-block:: bash $ datalad clone [--dataset PATH] SOURCE-PATH/URL [DESTINATION PATH] diff --git a/docs/basics/101-108-run.rst b/docs/basics/101-108-run.rst index 47cae4e18..48fde9081 100644 --- a/docs/basics/101-108-run.rst +++ b/docs/basics/101-108-run.rst @@ -74,7 +74,9 @@ will write it into the script. .. windows-wit:: Here's a script for Windows users Please use an editor of your choice to create a file ``list_titles.sh`` inside of the ``code`` directory. - These should be the contents:: + These should be the contents: + + .. code-block:: bash for i in recordings/longnow/Long_Now__Seminars*/*.mp3; do # get the filename diff --git a/docs/basics/101-109-rerun.rst b/docs/basics/101-109-rerun.rst index 8e4a41ec6..5e315bb53 100644 --- a/docs/basics/101-109-rerun.rst +++ b/docs/basics/101-109-rerun.rst @@ -12,7 +12,8 @@ Let's actually take a look into this file now: .. runrecord:: _examples/DL-101-109-101 :language: console :workdir: dl-101/DataLad-101 - :lines: 1-15 + :lines: 1-3,5-7 + :append: -✂--✂- :notes: The script produced a simple list of podcast titles. let's take a look into our output file. What's cool is that is was created in a way that the code and output are linked: :cast: 02_reproducible_execution @@ -33,7 +34,9 @@ with the following, fixed script: .. windows-wit:: Here's a script adjustment for Windows users - Please use an editor of your choice to replace the contents of ``list_titles.sh`` inside of the ``code`` directory with the following:: + Please use an editor of your choice to replace the contents of ``list_titles.sh`` inside of the ``code`` directory with the following: + + .. code-block:: bash for i in recordings/longnow/Long_Now*/*.mp3; do # get the filename @@ -175,7 +178,9 @@ of the dataset and the previous commit (called "``HEAD~1``" in Git terminology [ When executing this command, you will see *all* files being modified between the most recent and the second-most recent commit. On a technical level, this is correct given the underlying file handling on Windows, and chapter :ref:`chapter_gitannex` will shed light on why that is. - For now, to get the same output as shown in the code snippet below, use the following command where ``main`` (or ``master``) is the name of your default branch:: + For now, to get the same output as shown in the code snippet below, use the following command where ``main`` (or ``master``) is the name of your default branch: + + .. code-block:: bash datalad diff --from main --to HEAD~1 diff --git a/docs/basics/101-113-summary.rst b/docs/basics/101-113-summary.rst index 236817af5..93b9f4806 100644 --- a/docs/basics/101-113-summary.rst +++ b/docs/basics/101-113-summary.rst @@ -20,7 +20,9 @@ command, and discovered the concept of *locked* content. * With any :dlcmd:`run`, specify a commit message, and whenever appropriate, specify its inputs to the executed command (using the ``-i``/``--input`` flag) and/or its output (using the ``-o``/ - ``--output`` flag). The full command structure is:: + ``--output`` flag). The full command structure is: + + .. code-block:: bash $ datalad run -m "commit message here" --input "path/to/input/" --output "path/to/output" "command" diff --git a/docs/basics/101-115-symlinks.rst b/docs/basics/101-115-symlinks.rst index 685f6de56..80e8125b3 100644 --- a/docs/basics/101-115-symlinks.rst +++ b/docs/basics/101-115-symlinks.rst @@ -143,17 +143,17 @@ unnecessary, superfluous thing to do, right? The resulting symlinks that look like your files but only point to the actual content in ``.git/annex/objects`` are -small in size. An ``ls -lah`` reveals that all of these symlinks have roughly the same, +small in size. An ``ls -lh`` reveals that all of these symlinks have roughly the same, small size of ~130 Bytes: .. runrecord:: _examples/DL-101-115-103 :language: console :workdir: dl-101/DataLad-101/books - :realcommand: ls -lah --time-style=long-iso + :realcommand: ls -lh --time-style=long-iso :notes: Symlinks are super small in size, just the amount of characters in the symlink! :cast: 03_git_annex_basics - $ ls -lah + $ ls -lh Here you can see the reason why content is symlinked: Small file size means that *Git can handle those symlinks*! @@ -229,12 +229,12 @@ to manage the file system in a DataLad dataset (:ref:`filesystem`). .. runrecord:: _examples/DL-101-115-104 :language: console :workdir: dl-101/DataLad-101/books - :realcommand: ls -lah --time-style=long-iso TLCL.pdf + :realcommand: ls -lh --time-style=long-iso TLCL.pdf :notes: how does the symlink relate to the shasum of the file? :cast: 03_git_annex_basics # take a look at the last part of the target path: - $ ls -lah TLCL.pdf + $ ls -lh TLCL.pdf Let's take a closer look at the structure of the symlink. The key from the hash function is the last part of the name of the file the symlink links to (in which the actual data content is stored). diff --git a/docs/basics/101-116-sharelocal.rst b/docs/basics/101-116-sharelocal.rst index 0ce6fc143..6e1a3e915 100644 --- a/docs/basics/101-116-sharelocal.rst +++ b/docs/basics/101-116-sharelocal.rst @@ -326,7 +326,9 @@ it only installed the subdataset to retrieve the meta data about file availabili To explicitly install all potential subdatasets *recursively*, that is, all of the subdatasets inside it as well, one can give the -``-r``/``--recursive`` option to :dlcmd:`get`:: +``-r``/``--recursive`` option to :dlcmd:`get`: + +.. code-block:: bash datalad get -n -r @@ -344,7 +346,9 @@ a few dozen levels of nested subdatasets right away. However, there is a middle way [#f1]_: The ``--recursion-limit`` option let's you specify how many levels of subdatasets should be installed together -with the first subdataset:: +with the first subdataset: + +.. code-block:: bash datalad get -n -r --recursion-limit 1 diff --git a/docs/basics/101-121-siblings.rst b/docs/basics/101-121-siblings.rst index 94743e60e..cf8c665f3 100644 --- a/docs/basics/101-121-siblings.rst +++ b/docs/basics/101-121-siblings.rst @@ -22,9 +22,9 @@ but you can not get mine." Consider, for example, that your room mate might have googled about DataLad a bit. In the depths of the web, he might have found useful additional information, such -a script on `dataset nesting `_. +a script on `dataset nesting `_. Because he found this very helpful in understanding dataset -nesting concepts, he decided to download it `from GitHub `_, and saved it in the ``code/`` directory. +nesting concepts, he decided to download it from GitHub, and saved it in the ``code/`` directory. He does it using the datalad command :dlcmd:`download-url` that you experienced in section :ref:`createDS` already: This command will @@ -49,7 +49,7 @@ and run the following command -d . \ -m "Include nesting demo from datalad website" \ -O code/nested_repos.sh \ - https://raw.githubusercontent.com/datalad/datalad.org/7e8e39b1f08d0a54ab521586f27ee918b4441d69/content/asciicast/seamless_nested_repos.sh + https://raw.githubusercontent.com/datalad/datalad.org/7e8e39b1/content/asciicast/seamless_nested_repos.sh Run a quick datalad status: @@ -226,7 +226,9 @@ the former for a different lecture: .. windows-wit:: Please use datalad diff --from main --to remotes/roommate/master - Please use the following command instead:: + Please use the following command instead: + + .. code-block:: bash datalad diff --from main --to remotes/roommate/master @@ -246,7 +248,9 @@ that there is a difference in ``notes.txt``! Let's ask .. windows-wit:: Please use git diff master..remotes/roommate/master - Please use the following command instead:: + Please use the following command instead: + + .. code-block:: bash git diff master..remotes/roommate/master diff --git a/docs/basics/101-122-config.rst b/docs/basics/101-122-config.rst index e03b229c8..df55c024a 100644 --- a/docs/basics/101-122-config.rst +++ b/docs/basics/101-122-config.rst @@ -46,7 +46,9 @@ Git configuration." the lecturer says. At one point in time, you likely followed instructions such as in :ref:`install` and configured your -*Git identity* with the commands:: +*Git identity* with the commands: + +.. code-block:: bash git config --global --add user.name "Elena Piscopia" git config --global --add user.email elena@example.net @@ -175,7 +177,9 @@ configuration to your repository's ``.git/config`` file, whereas ``--global`` would apply it as a user specific configuration, and ``--system`` as a system-wide configuration. If you would want to change this existing line in your ``.git/config`` -file, you would replace ``--add`` with ``--replace-all`` such as in:: +file, you would replace ``--add`` with ``--replace-all`` such as in: + +.. code-block:: bash git config --local --replace-all core.editor "vim" @@ -206,28 +210,20 @@ it is also useful to find out which configurations are already set in which way and where. For this, the :gitcmd:`config --list --show-origin` is useful. It will display all configurations and their location: -.. code-block:: bash +.. code-block:: console $ git config --list --show-origin file:/home/bob/.gitconfig user.name=Bob McBobface file:/home/bob/.gitconfig user.email=bob@mcbobface.com - file:/home/bob/.gitconfig core.editor=vim - file:/home/bob/.gitconfig annex.security.allowed-url-schemes=http https file - file:.git/config core.repositoryformatversion=0 - file:.git/config core.filemode=true - file:.git/config core.bare=false - file:.git/config core.logallrefupdates=true file:.git/config annex.uuid=1f83595e-bcba-4226-aa2c-6f0153eb3c54 - file:.git/config annex.version=5 file:.git/config annex.backends=MD5E - file:.git/config submodule.recordings/longnow.url=https://github.com/datalad-datasets/longnow-podcasts.git + file:.git/config submodule.recordings/longnow.url=https://github.com/✂ file:.git/config submodule.recordings/longnow.active=true file:.git/config remote.roommate.url=../mock_user/onemoredir/DataLad-101 - file:.git/config remote.roommate.fetch=+refs/heads/*:refs/remotes/roommate/* file:.git/config remote.roommate.annex-uuid=a5ae24de-1533-4b09-98b9-cd9ba6bf303c - file:.git/config remote.roommate.annex-ignore=false - file:.git/config submodule.longnow.url=https://github.com/datalad-datasets/longnow-podcasts.git + file:.git/config submodule.longnow.url=https://github.com/✂ file:.git/config submodule.longnow.active=true + ... This example shows some configurations in the global ``.gitconfig`` file, and the configurations within ``DataLad-101/.git/config``. diff --git a/docs/basics/101-123-config2.rst b/docs/basics/101-123-config2.rst index eb985fb42..3ece377d5 100644 --- a/docs/basics/101-123-config2.rst +++ b/docs/basics/101-123-config2.rst @@ -39,7 +39,9 @@ you will recognize it as a reference to the type of key used by git-annex to identify and store file content in the object-tree. The first row, ``* annex.backend=MD5E``, therefore translates to "Everything in this directory should be hashed with a MD5E hash function". -But what is the rest? We'll start with the last row:: +But what is the rest? We'll start with the last row: + +.. code-block:: bash * annex.largefiles=((mimeencoding=binary)and(largerthan=0)) @@ -75,7 +77,9 @@ However, rules can be even simpler. The second row simply takes a complete direc The second row, ``**/.git* annex.largefiles=nothing`` means that no ``.git`` repository in this directory or a subdirectory should be considered a "large file". This way, the ``.git`` repositories are protected from being annexed. -If you had a single file (``myfile.pdf``) you would not want annexed, specifying a rule such as:: +If you had a single file (``myfile.pdf``) you would not want annexed, specifying a rule such as: + +.. code-block:: bash myfile.pdf annex.largefiles=nothing @@ -91,7 +95,9 @@ and view this dataset's ``.gitattributes`` file: The relevant part is ``README.md annex.largefiles=nothing``. This instructs git-annex to specifically not annex ``README.md``. -Lastly, if you wanted to configure a rule based on **size**, you could add a row such as:: +Lastly, if you wanted to configure a rule based on **size**, you could add a row such as: + +.. code-block:: bash ** annex.largefiles(largerthan=20kb) @@ -538,7 +544,9 @@ Write a note about configurations in datasets into ``notes.txt``. has MIME type ``text/plain`` as does a bash script (``.sh``), a Python script has MIME type ``text/x-python``, a ``.jpg`` file is ``image/jpg``, and a ``.pdf`` file has MIME type ``application/pdf``. You can find out the MIME type - of a file by running:: + of a file by running: + + .. code-block:: bash $ file --mime-type path/to/file @@ -546,7 +554,9 @@ Write a note about configurations in datasets into ``notes.txt``. "portable" -- shared copies of your dataset will retain these configurations. You could however also set largefiles rules in your ``.git/config`` file. Rules specified in there take precedence over rules in ``.gitattributes``. You can set - them using the :gitcmd:`config` command:: + them using the :gitcmd:`config` command: + + .. code-block:: bash $ git config annex.largefiles 'largerthan=100kb and not (include=*.c or include=*.h)' diff --git a/docs/basics/101-124-procedures.rst b/docs/basics/101-124-procedures.rst index 405d01938..9185e2ffa 100644 --- a/docs/basics/101-124-procedures.rst +++ b/docs/basics/101-124-procedures.rst @@ -25,7 +25,7 @@ In order to learn about procedures in general, let's demystify what the ``text2git`` procedure exactly is: It is nothing more than a simple script that -- writes the relevant configuration (``annex_largefiles = '((mimeencoding=binary)and(largerthan=0))'``, i.e., "Do not put anything that is a text file in the annex") to the ``.gitattributes`` file of a dataset, and +- writes the relevant ``annex_largefiles`` configuration, i.e., "Do not put anything that is a text file in the annex") to the ``.gitattributes`` file of a dataset, and - saves this modification with the commit message "Instruct annex to add text files to Git". This particular procedure lives in a script called @@ -120,7 +120,9 @@ Applying procedures but also *executes* procedures. If given the name of a procedure, this command will apply the procedure to the current dataset, or the dataset that is specified -with the ``-d/--dataset`` flag:: +with the ``-d/--dataset`` flag: + +.. code-block:: bash datalad run-procedure [-d ] cfg_text2git @@ -131,7 +133,9 @@ However, some procedures shipped with DataLad or its extensions with a with the ``-c/--cfg-proc `` option in a :dlcmd:`create` command. This is a peculiarity of these procedures because, by convention, all of these procedures are written to not require arguments. -The command structure looks like this:: +The command structure looks like this: + +.. code-block:: bash datalad create -c text2git DataLad-101 @@ -146,7 +150,9 @@ could thus be applied within a :dlcmd:`create` as .. find-out-more:: Applying multiple procedures If you want to apply several configurations at once, feel free to do so, - for example like this:: + for example like this: + + .. code-block:: bash $ datalad create -c yoda -c text2git @@ -233,7 +239,9 @@ was applied. dataset-procedures = relative/path/from/dataset-root - By default, DataLad will call a procedure with a standard template - defined by a format string:: + defined by a format string: + + .. code-block:: bash interpreter {script} {ds} {arguments} diff --git a/docs/basics/101-125-summary.rst b/docs/basics/101-125-summary.rst index d2d88b6b7..8a2550245 100644 --- a/docs/basics/101-125-summary.rst +++ b/docs/basics/101-125-summary.rst @@ -15,9 +15,11 @@ your horizon about configurations of datasets: therefore distributed. More specialized scopes take precedence over more global scopes. - Almost all configurations can be set with the :gitcmd:`config`. - Its structure looks like this:: + Its structure looks like this: - git config --local/--global/--system --add/remove-all/--list section.[subsection.]variable "value" + .. code-block:: bash + + git config --local/--global/--system --add/remove-all/--list section.[subsection.]variable "value" - The ``.git/config`` configuration file is not version controlled, other configuration files (``.gitmodules``, ``.gitattributes``, ``.datalad/config``) diff --git a/docs/basics/101-130-yodaproject.rst b/docs/basics/101-130-yodaproject.rst index 4bf15d054..8b3c09810 100644 --- a/docs/basics/101-130-yodaproject.rst +++ b/docs/basics/101-130-yodaproject.rst @@ -25,7 +25,9 @@ a Python API for DataLad's functionality that you can read about in :ref:`a Find Thus, DataLad's functionality can also be used within interactive Python sessions or Python scripts. All of DataLad's user-oriented commands are exposed via ``datalad.api``. - Thus, any command can be imported as a stand-alone command like this:: + Thus, any command can be imported as a stand-alone command like this: + + .. code-block:: python >>> from datalad.api import @@ -42,11 +44,15 @@ a Python API for DataLad's functionality that you can read about in :ref:`a Find of DataLad lists an overview of all commands, but naming is congruent to the command line interface. The only functionality that is not available at the command line is ``datalad.api.Dataset``, DataLad's core Python data type. - Just like any other command, it can be imported like this:: + Just like any other command, it can be imported like this: + + .. code-block:: python >>> from datalad.api import Dataset - or like this:: + or like this: + + .. code-block:: python >>> import datalad.api as dl >>> dl.Dataset() @@ -56,7 +62,9 @@ a Python API for DataLad's functionality that you can read about in :ref:`a Find stand-alone commands, all of DataLad's functionality is also available via `methods `_ of this class. Thus, these are two equally valid ways to create a new - dataset with DataLad in Python:: + dataset with DataLad in Python: + + .. code-block:: python >>> from datalad.api import create, Dataset # create as a stand-alone command @@ -76,7 +84,9 @@ a Python API for DataLad's functionality that you can read about in :ref:`a Find ``-d/--dataset`` option in their command-line equivalent. You can specify the ``dataset=`` argument with a path (string) to your dataset (such as ``dataset='.'`` for the current directory, or ``dataset='path/to/ds'`` to - another location). Alternatively, you can pass a ``Dataset`` instance to it:: + another location). Alternatively, you can pass a ``Dataset`` instance to it: + + .. code-block:: python >>> from datalad.api import save, Dataset # use save with dataset specified as a path @@ -335,9 +345,10 @@ To compute the analysis you create the following Python script inside of ``code/ Y = array[:,4] test_size = 0.20 seed = 7 - X_train, X_test, Y_train, Y_test = model_selection.train_test_split(X, Y, - test_size=test_size, - random_state=seed) + X_train, X_test, Y_train, Y_test = model_selection.train_test_split( + X, Y, + test_size=test_size, + random_state=seed) # Step 2: Fit the model and make predictions on the test dataset knn = KNeighborsClassifier() knn.fit(X_train, Y_train) @@ -418,7 +429,9 @@ point with the ``--version-tag`` option of :dlcmd:`save`. was added. Later we can use this tag to identify the point in time at which the analysis setup was ready -- much more intuitive than a 40-character shasum! - This is handy in the context of a :dlcmd:`rerun` for example:: + This is handy in the context of a :dlcmd:`rerun` for example: + + .. code-block:: bash $ datalad rerun --since ready4analysis @@ -450,7 +463,9 @@ re-execution with :dlcmd:`rerun` easy. .. windows-wit:: You may need to use "python", not "python3" If executing the code below returns an exit code of 9009, there may be no ``python3`` -- instead, it is called solely ``python``. - Please run the following instead (adjusted for line breaks, you should be able to copy-paste this as a whole):: + Please run the following instead (adjusted for line breaks, you should be able to copy-paste this as a whole): + + .. code-block:: bash datalad run -m "analyze iris data with classification analysis" ^ --input "input/iris.csv" ^ @@ -735,11 +750,15 @@ an additional :gitcmd:`push` with the ``--tags`` option is required: on a per-sibling basis in ``.git/config`` in the ``remote.*.push`` configuration. If you had a :term:`sibling` "github", the following configuration would push all tags that start with a ``v`` upon a - :dlcmd:`push --to github`:: + :dlcmd:`push --to github`: + + .. code-block:: bash $ git config --local remote.github.push 'refs/tags/v*' - This configuration would result in the following entry in ``.git/config``:: + This configuration would result in the following entry in ``.git/config``: + + .. code-block:: bash [remote "github"] url = git@github.com/adswa/midtermproject.git @@ -854,7 +873,9 @@ reproduce your data science project easily from scratch (take a look into the :r .. [#f1] Note that you could have applied the YODA procedure not only right at creation of the dataset with ``-c yoda``, but also after creation - with the :dlcmd:`run-procedure` command:: + with the :dlcmd:`run-procedure` command: + + .. code-block:: bash $ cd midterm_project $ datalad run-procedure cfg_yoda diff --git a/docs/basics/101-132-advancednesting.rst b/docs/basics/101-132-advancednesting.rst index fbaf9d40a..57823d1ba 100644 --- a/docs/basics/101-132-advancednesting.rst +++ b/docs/basics/101-132-advancednesting.rst @@ -190,20 +190,26 @@ dataset, i.e., ``DataLad-101``, as the dataset to save to: If you want to save the current state of the subdataset into the superdataset (as necessary here), start a ``save`` from the superdataset and have the - ``-d/--dataset`` option point to its root:: + ``-d/--dataset`` option point to its root: + + .. code-block:: bash # in the root of the superds $ datalad save -d . -m "update subdataset" If you are in the superdataset, and you want to save an unsaved modification in a subdataset to the *subdatasets* history, let ``-d/--dataset`` point to - the subdataset:: + the subdataset: + + .. code-block:: bash # in the superds $ datalad save -d path/to/subds -m "modified XY" The recursive option allows you to save any content underneath the specified - directory, and recurse into any potential subdatasets:: + directory, and recurse into any potential subdatasets: + + .. code-block:: bash $ datalad save . --recursive diff --git a/docs/basics/101-133-containersrun.rst b/docs/basics/101-133-containersrun.rst index 425a8f364..8bfc9b60f 100644 --- a/docs/basics/101-133-containersrun.rst +++ b/docs/basics/101-133-containersrun.rst @@ -170,7 +170,9 @@ name to give to the container, and a path or url to a container Image: .. find-out-more:: How do I add an Image from Dockerhub, Amazon ECR, or a local container? Should the Image you want to use lie on Dockerhub, specify the ``--url`` - option prefixed with ``docker://`` or ``dhub://`` instead of ``shub://``:: + option prefixed with ``docker://`` or ``dhub://`` instead of ``shub://``: + + .. code-block:: bash datalad containers-add midterm-software --url docker://adswa/resources:2 @@ -181,7 +183,9 @@ name to give to the container, and a path or url to a container Image: datalad containers-add --url dhub://12345678.dkr.ecr.us-west-2.amazonaws.com/maze-code/data-import:latest data-import If you want to add a container that exists locally, specify the path to it - like this:: + like this: + + .. code-block:: bash datalad containers-add midterm-software --url path/to/container @@ -217,7 +221,9 @@ container under its name "midterm-software" in the dataset's configuration at This can be useful to, for example, automatically bind-mount the current working directory in the container. In the alternative call format, the placeholders ``{img}``, ``{cmd}``, and ``{img_dspath}`` (a relative path to the dataset containing the image) are available. In all other cases with variables that use curly brackets, you need to escape them with another curly bracket. - Here is an example call format that bind-mounts the current working directory (and thus the dataset) automatically:: + Here is an example call format that bind-mounts the current working directory (and thus the dataset) automatically: + + .. code-block:: bash datalad containers-add --call-fmt 'singularity exec -B {{pwd}} --cleanenv {img} {cmd}' @@ -256,7 +262,9 @@ dataset, we can execute commands in this environment. Let us for example try to the :dlcmd:`run` command from the section :ref:`yoda_project` as a :dlcmd:`containers-run` command. -The previous ``run`` command looked like this:: +The previous ``run`` command looked like this: + +.. code-block:: bash $ datalad run -m "analyze iris data with classification analysis" \ --input "input/iris.csv" \ @@ -284,7 +292,9 @@ is ``container-name``. At this point, though, the ``--container-name`` flag is even *optional* because there is only a single container registered to the dataset. But if your dataset contains more than one container you will *need* to specify the name of the container you want to use in your command. -The complete command's structure looks like this:: +The complete command's structure looks like this: + +.. code-block:: bash $ datalad containers-run --name [-m ...] [--input ...] [--output ...] diff --git a/docs/basics/101-134-summary.rst b/docs/basics/101-134-summary.rst index 7abe785bd..3b03604e1 100644 --- a/docs/basics/101-134-summary.rst +++ b/docs/basics/101-134-summary.rst @@ -12,9 +12,11 @@ The last two sections have first of all extended your knowledge on dataset nesti - Once the subdataset evolves, the superdataset recognizes this as a ``modification`` of the subdatasets version state. If you want to record this, you need to - :dlcmd:`save` it in the superdataset:: + :dlcmd:`save` it in the superdataset: - $ datalad save -m "a short summary of changes in subds" + .. code-block:: bash + + $ datalad save -m "a short summary of changes in subds" But more than nesting concepts, they have also extended your knowledge on reproducible analyses with :dlcmd:`run` and you have experienced diff --git a/docs/basics/101-135-help.rst b/docs/basics/101-135-help.rst index be13fc4dc..ab1d969bd 100644 --- a/docs/basics/101-135-help.rst +++ b/docs/basics/101-135-help.rst @@ -73,25 +73,23 @@ Does the help list any caveats? There are multiple ways to find help on DataLad commands. You could turn to the `documentation `_. Alternatively, to get help right inside the terminal, -run any command with the ``-h``/``--help`` option (also shown +run any command with the ``-h``/``--help`` option (shown as an excerpt here): .. runrecord:: _examples/DL-101-135-103 :language: console :workdir: dl-101/DataLad-101 - :lines: 1-28, 72-108 + :lines: 1-16,83-92,101-112 + :append: -✂--✂- $ datalad get --help -This for example is the help page on :dlcmd:`get` -(the same you would find in the documentation, -but in your terminal, here - for brevity - slightly cut). +This, for example, is the help page on :dlcmd:`get`, the same you would find in the documentation, but in your terminal (here heavily trimmed to only show the main components). It contains a command description, a list of all the available options with a short explanation of them, and -example commands. The paragraph *Options* shows all -optional flags, and all required parts of -the command are listed in the paragraph *Arguments*. One first thing -to check for example is whether your command call +example commands. The two *arguments* sections provide a comprehensive +list of command arguments with details on their possibilities and +requirements. A first thing to check would be whether your command call specified all of the required arguments. Asking questions (right) @@ -178,7 +176,7 @@ To get extensive information on what :dlcmd:`status` does underneath the hood, y .. runrecord:: _examples/DL-101-135-105 :language: console :workdir: dl-101/DataLad-101 - :lines: 1, 3-5, 60- + :lines: 1,6, 67- $ datalad --log-level debug status @@ -186,11 +184,15 @@ To get extensive information on what :dlcmd:`status` does underneath the hood, y The log level can also be set (for different scopes) using the ``datalad.log.level`` configuration variable, or the corresponding environment variable ``DATALAD_LOG_LEVEL``. - To set the log level for a single command, for example, set it in front of the command:: + To set the log level for a single command, for example, set it in front of the command: + + .. code-block:: bash $ DATALAD_LOG_LEVEL=debug datalad status - And to set the log level for the rest of the shell session, export it:: + And to set the log level for the rest of the shell session, export it: + + .. code-block:: bash $ export DATALAD_LOG_LEVEL=debug $ datalad status @@ -198,7 +200,9 @@ To get extensive information on what :dlcmd:`status` does underneath the hood, y You can find out a bit more on environment variable :ref:`in the Findoutmore on environment variables `. - The configuration variable can be used to set the log level on a user (global) or system-wide level with the :gitcmd:`config` command:: + The configuration variable can be used to set the log level on a user (global) or system-wide level with the :gitcmd:`config` command: + + .. code-block:: bash $ git config --global datalad.log.level debug @@ -252,7 +256,9 @@ Output produced by Git **Unset Git identity** If you have not configured your Git identity, you will -see warnings like this when running any DataLad command:: +see warnings like this when running any DataLad command: + +.. code-block:: bash [WARNING] It is highly recommended to configure git first (set both user.name and user.email) before using DataLad. @@ -263,7 +269,9 @@ To set your Git identity, go back to section :ref:`installconfig`. One error you can run into when publishing dataset contents is that your :dlcmd:`push` to a sibling is rejected. -One example is this:: +One example is this: + +.. code-block:: bash $ datalad push --to public [ERROR ] refs/heads/main->public:refs/heads/main [rejected] (non-fast-forward) [publish(/home/me/dl-101/DataLad-101)] @@ -276,7 +284,9 @@ know about. It can be fixed by updating from the sibling first with a .. _nonbarepush: -Here is a different push rejection:: +Here is a different push rejection: + +.. code-block:: bash $ datalad push --to roommate publish(ok): . (dataset) [refs/heads/git-annex->roommate:refs/heads/git-annex 023a541..59a6f8d] @@ -305,7 +315,9 @@ on ``receive.denyCurrentBranch`` for more. **Detached HEADs** -One warning that you may encounter during an installation of a dataset is:: +One warning that you may encounter during an installation of a dataset is: + +.. code-block:: bash [INFO ] Submodule HEAD got detached. Resetting branch main to point to 046713bb. Original location was 47e53498 @@ -320,7 +332,9 @@ Output produced by git-annex **Unusable annexes** -Upon installation of a dataset, you may see:: +Upon installation of a dataset, you may see: + +.. code-block:: bash [INFO ] Remote origin not usable by git-annex; setting annex-ignore [INFO ] This could be a problem with the git-annex installation on the @@ -334,7 +348,9 @@ many reasons, but as long as there are other remotes you can access the data from, you are fine. A similar warning message may appear when adding a sibling that is a pure Git -:term:`remote`, for example a repository on GitHub:: +:term:`remote`, for example a repository on GitHub: + +.. code-block:: bash [INFO ] Failed to enable annex remote github, could be a pure git or not accessible @@ -359,7 +375,9 @@ Other errors ^^^^^^^^^^^^ Sometimes, registered subdatasets URLs have an :term:`SSH` instead of :term:`https` address, for example ``git@github.com:datalad-datasets/longnow-podcasts.git`` instead of ``https://github.com/datalad-datasets/longnow-podcasts.git``. -If one does not have an SSH key configured for the required service (e.g., GitHub, or a server), installing or getting the subdataset and its contents fails, with messages starting similar to this:: +If one does not have an SSH key configured for the required service (e.g., GitHub, or a server), installing or getting the subdataset and its contents fails, with messages starting similar to this: + +.. code-block:: bash [INFO ] Cloning https://github.com/psychoinformatics-de/paper-remodnav.git/remodnav [2 other candidates] into '/home/.../remodnav' Permission denied (publickey). diff --git a/docs/basics/101-136-filesystem.rst b/docs/basics/101-136-filesystem.rst index f997dcee8..0b502e393 100644 --- a/docs/basics/101-136-filesystem.rst +++ b/docs/basics/101-136-filesystem.rst @@ -40,13 +40,13 @@ moving a file, and uses the :shcmd:`mv` command. .. runrecord:: _examples/DL-101-136-101 :language: console :workdir: dl-101/DataLad-101 - :realcommand: cd books/ && mv TLCL.pdf The_Linux_Command_Line.pdf && ls -lah --time-style=long-iso + :realcommand: cd books/ && mv TLCL.pdf The_Linux_Command_Line.pdf && ls -lh --time-style=long-iso :notes: Let's look into file system operations. What does renaming does to a file that is symlinked? :cast: 03_git_annex_basics $ cd books/ $ mv TLCL.pdf The_Linux_Command_Line.pdf - $ ls -lah The_Linux_Command_Line.pdf + $ ls -lh The_Linux_Command_Line.pdf Try to open the renamed file, e.g., with ``evince The_Linux_Command_Line.pdf``. @@ -100,7 +100,9 @@ together with the file name change, you could give both the new and the deleted file as a path specification to :dlcmd:`save`, even if it feels unintuitive to save a change that is marked as a deletion in a -:dlcmd:`status`:: +:dlcmd:`status`: + +.. code-block:: bash datalad save -m "rename file" oldname newname @@ -784,7 +786,9 @@ section. # attempt a datalad update $ datalad update - Here we go:: + Here we go: + + .. code-block:: text 'fatal: '../mock_user/DataLad-101' does not appear to be a git repository fatal: Could not read from remote repository. @@ -1178,7 +1182,7 @@ If for whatever reason you at one point tried to remove a DataLad dataset, whether with a GUI or the command line call ``rm -rf ``, you likely have seen permission denied errors such as -.. code-block:: +.. code-block: bash rm: cannot remove '/.git/annex/objects/Mz/M1/MD5E-s422982--2977b5c6ea32de1f98689bc42613aac7.jpg/MD5E-s422982--2977b5c6ea32de1f98689bc42613aac7.jpg': Permission denied rm: cannot remove '/.git/annex/objects/FP/wv/MD5E-s543180--6209797211280fc0a95196b0f781311e.jpg/MD5E-s543180--6209797211280fc0a95196b0f781311e.jpg': Permission denied @@ -1190,7 +1194,9 @@ stored in the object tree of git-annex. If you want, you can re-read the section :ref:`symlink` to find out how git-annex revokes write permission for the user to protect the file content given to it. To remove a dataset with annexed content one has to regain write permissions to everything in the dataset. This is done -with the Unix ``chmod`` command:: +with the Unix ``chmod`` command: + +.. code-block:: bash chmod -R u+w diff --git a/docs/basics/101-137-history.rst b/docs/basics/101-137-history.rst index 47acd0d15..5ab729e40 100644 --- a/docs/basics/101-137-history.rst +++ b/docs/basics/101-137-history.rst @@ -173,7 +173,9 @@ DataLad in the editor)! message". To apply this action and reword the top-most commit message in this list (``8503f26 Add note on adding siblings``, three commits back in the history), exchange the word ``pick`` in the beginning of the line with the word - ``reword`` or simply ``r`` like this:: + ``reword`` or simply ``r`` like this: + + .. code-block:: bash r 8503f26 Add note on adding siblings @@ -214,7 +216,9 @@ This is a task for the :gitcmd:`reset` command. It essentially allows to undo commits by resetting the history of a dataset to an earlier version. :gitcmd:`reset` comes with several *modes* that determine the exact behavior it, but the relevant one for this aim is ``--mixed`` [#f3]_. -Specifying the command:: +Specifying the command: + +.. code-block:: bash git reset --mixed COMMIT @@ -423,7 +427,7 @@ to specify the point in time you want to go back to: :language: console :workdir: dl-101/DataLad-101 - $ git log -n 20 --oneline + $ git log -n 16 --oneline Let's go 15 commits back in time: @@ -487,7 +491,9 @@ prior :gitcmd:`checkout` (note that the output is shortened for brevity and show The cat-file command is very versatile, and `it's documentation `_ will list all of its functionality. To use it to see the contents of a file at a previous -state as done above, this is how the general structure looks like:: +state as done above, this is how the general structure looks like: + +.. code-block:: bash $ git cat-file --textconv SHASUM: @@ -632,7 +638,9 @@ be reverted. .. find-out-more:: Reverting more than a single commit - You can also specify a range of commits like this:: + You can also specify a range of commits like this: + + .. code-block:: bash $ git revert OLDER_SHASUM..NEWERSHASUM diff --git a/docs/basics/101-139-dropbox.rst b/docs/basics/101-139-dropbox.rst index 70cd889d5..ac98ca884 100644 --- a/docs/basics/101-139-dropbox.rst +++ b/docs/basics/101-139-dropbox.rst @@ -32,7 +32,7 @@ from a large number of commercial providers [#f2]_. configuration of the dataset we want to publish). The interactive dialog is outlined below, and all parts that require user input are highlighted. -.. code-block:: +.. code-block:: text :emphasize-lines: 7-8, 22, 26, 30, 36 $ rclone config @@ -80,7 +80,7 @@ from a large number of commercial providers [#f2]_. in the interactive prompt. Accepting will bring you back into the terminal to the final configuration prompts: -.. code-block:: bash +.. code-block:: text :emphasize-lines: 12, 26 Got code @@ -114,7 +114,9 @@ from a large number of commercial providers [#f2]_. It is a wrapper around rclone_ that makes any destination supported by rclone usable with :term:`git-annex`. If you are on a recent version of Debian or Ubuntu (or have enabled the `NeuroDebian `_ repository), you can get it conveniently via your package manager, e.g., with ``sudo apt-get install git-annex-remote-rclone``. Alternatively, ``git clone`` the `git-annex-remote-rclone `_ repository to your machine (do not clone it into ``DataLad-101`` but somewhere else on your computer), and copy the path to this repository into your ``$PATH`` variable. If you - clone into ``/home/user-bob/repos``, the command would look like this [#f3]_:: + clone into ``/home/user-bob/repos``, the command would look like this [#f3]_: + + .. code-block:: bash $ git clone https://github.com/DanielDent/git-annex-remote-rclone.git $ export PATH="/home/user-bob/repos/git-annex-remote-rclone:$PATH" @@ -247,7 +249,9 @@ the annexed files (e.g., by sharing an access link), here is what they would have to do: If the repository is on GitHub, a :dlcmd:`clone` with the URL -will install the dataset:: +will install the dataset: + +.. code-block:: bash $ datalad clone https://github.com//DataLad-101.git [INFO ] Cloning https://github.com//DataLad-101.git [1 other candidates] into '/Users/awagner/Documents/DataLad-101' @@ -256,7 +260,9 @@ will install the dataset:: | datalad siblings -d "/Users/awagner/Documents/DataLad-101" enable -s dropbox-for-friends install(ok): /Users/awagner/Documents/DataLad-101 (dataset) -Pay attention to one crucial information in this output:: +Pay attention to one crucial information in this output: + +.. code-block:: bash [INFO ] access to 1 dataset sibling dropbox-for-friends not auto-enabled, enable with: | datalad siblings -d "/Users//Documents/DataLad-101" enable -s dropbox-for-friends @@ -276,14 +282,18 @@ the same as before: - install git-annex-remote-rclone_ (as described above). After this is done, you can execute what DataLad's output message suggests -to "enable" this special remote (inside of the installed ``DataLad-101``):: +to "enable" this special remote (inside of the installed ``DataLad-101``): + +.. code-block:: bash $ datalad siblings -d "/Users/awagner/Documents/DataLad-101" \ enable -s dropbox-for-friends .: dropbox-for-friends(?) [git] And once this is done, you can get any annexed file contents, for example the -books, or the cropped logos from chapter :ref:`chapter_run`:: +books, or the cropped logos from chapter :ref:`chapter_run`: + +.. code-block:: bash $ datalad get books/TLCL.pdf get(ok): /home/some/other/user/DataLad-101/books/TLCL.pdf (file) [from dropbox-for-friends] diff --git a/docs/basics/101-139-gin.rst b/docs/basics/101-139-gin.rst index abdc09622..3b57858a4 100644 --- a/docs/basics/101-139-gin.rst +++ b/docs/basics/101-139-gin.rst @@ -62,7 +62,9 @@ Afterwards, add this repository as a sibling of your dataset. To do this, use th :dlcmd:`siblings add` command and the SSH URL of the repository as shown below. Note that since this is the first time you will be connecting to the GIN server via SSH, you will likely be asked to confirm to connect. This is a safety measure, -and you can type "yes" to continue:: +and you can type "yes" to continue: + +.. code-block:: text $ datalad siblings add -d . \ --name gin \ @@ -258,7 +260,9 @@ Then, follow these steps: - First, create a new repository on Gin (see step by step instructions above). - In your to-be-published dataset, add this repository as a sibling, this time setting `--url` and `--pushurl` arguments explicitly. Make sure to configure a :term:`SSH` URL as a ``--pushurl`` but a :term:`HTTPS` URL as a ``url``. Please also note that the :term:`HTTPS` URL written after ``--url`` DOES NOT have the ``.git`` suffix. - Here is the command:: + Here is the command: + +.. code-block:: bash $ datalad siblings add \ -d . \ @@ -268,7 +272,9 @@ Then, follow these steps: - Locally, run ``git config --unset-all remote.gin.annex-ignore`` to prevent :term:`git-annex` from ignoring this new dataset - Push your data to the repository on Gin (``datalad push --to gin``). This pushes the actual state of the repository, including content, but also adjusts the :term:`git-annex` configuration. -- Configure this sibling as a "common data source". Use the same name as previously in ``--name`` (to indicate which sibling you are configuring) and give a new, different, name after ``--as-common-datasrc``:: +- Configure this sibling as a "common data source". Use the same name as previously in ``--name`` (to indicate which sibling you are configuring) and give a new, different, name after ``--as-common-datasrc``: + +.. code-block:: bash $ datalad siblings configure \ --name gin \ @@ -292,7 +298,9 @@ Afterwards, :dlcmd:`get` retrieves files from Gin, even if the dataset has been and `client `_ are useful tools with a variety of features that are worthwhile to check out, as well. -.. [#f3] Alternatively, you can configure the siblings url with :gitcmd:`config`:: +.. [#f3] Alternatively, you can configure the siblings url with :gitcmd:`config`: + + .. code-block:: bash $ git config -f .gitmodules --replace-all submodule.midterm_project.url https://github.com/adswa/midtermproject diff --git a/docs/basics/101-139-gitlfs.rst b/docs/basics/101-139-gitlfs.rst index ce64eae85..ae8eb5d68 100644 --- a/docs/basics/101-139-gitlfs.rst +++ b/docs/basics/101-139-gitlfs.rst @@ -9,36 +9,48 @@ A free GitHub subscription allows up to `1GB of free storage and up to 1GB of ba As such, it might be sufficient for some use cases, and could be configured quite easily. -In order to store annexed dataset contents on GitHub, we need first to create a repository on GitHub:: +In order to store annexed dataset contents on GitHub, we need first to create a repository on GitHub: + +.. code-block:: bash $ datalad create-sibling-github test-github-lfs --access-protocol ssh .: github(-) [git@github.com:yarikoptic/test-github-lfs.git (git)] 'git@github.com:yarikoptic/test-github-lfs.git' configured as sibling 'github' for -and then initialize a :term:`special remote` of type ``git-lfs``, pointing to the same GitHub repository:: +and then initialize a :term:`special remote` of type ``git-lfs``, pointing to the same GitHub repository: + +.. code-block:: bash $ git annex initremote github-lfs type=git-lfs url=git@github.com:yarikoptic/test-github-lfs autoenable=true encryption=none embedcreds=no If you would like to compress data in Git LFS, you need to take a detour via encryption during :gitannexcmd:`initremote` -- this has compression as a -convenient side effect. Here is an example initialization:: +convenient side effect. Here is an example initialization: + +.. code-block:: bash $ git annex initremote --force github-lfs type=git-lfs url=git@github.com:yarikoptic/test-github-lfs autoenable=true encryption=shared -With this single step it becomes possible to transfer contents to GitHub:: +With this single step it becomes possible to transfer contents to GitHub: + +.. code-block:: bash $ git annex copy --to=github-lfs file.dat copy file.dat (to github-lfs...) ok (recording state in git...) -and the entire dataset to the same GitHub repository:: +and the entire dataset to the same GitHub repository: + +.. code-block:: bash $ datalad push --to=github [INFO ] Publishing to github publish(ok): . (dataset) [pushed to github: ['[new branch]', '[new branch]']] -Alternatively, to make publication even easier for you, the dataset provider, you can establish a :term:`publication dependency` such that a :dlcmd:`push` performs the data transfer to ``git-lfs`` automatically:: +Alternatively, to make publication even easier for you, the dataset provider, you can establish a :term:`publication dependency` such that a :dlcmd:`push` performs the data transfer to ``git-lfs`` automatically: + +.. code-block:: bash $ datalad siblings configure -s github --publish-depends github-lfs # afterwards, only datalad push is needed to publish dataset contents and history diff --git a/docs/basics/101-139-hostingservices.rst b/docs/basics/101-139-hostingservices.rst index 3a24be038..f6ae7acd6 100644 --- a/docs/basics/101-139-hostingservices.rst +++ b/docs/basics/101-139-hostingservices.rst @@ -158,7 +158,9 @@ Often, you can specifically select which set of permissions a specific token has For creating and updating repositories with DataLad commands it is usually sufficient to grant only repository-related permissions. However, broader permission sets may also make sense. -Should you employ GitHub workflows, for example, a token without "workflow" scope could not push changes to workflow files, resulting in errors like this one:: +Should you employ GitHub workflows, for example, a token without "workflow" scope could not push changes to workflow files, resulting in errors like this one: + +.. code-block:: bash [remote rejected] (refusing to allow a Personal Access Token to create or update workflow `.github/workflows/benchmarks.yml` without `workflow` scope)] @@ -227,7 +229,9 @@ Due to the distinction between groups and projects, GitLab allows two different * **collection**: A new group is created for the dataset. The root dataset (the topmost superdataset) is placed in a "project" project inside this group, and all nested subdatasets are represented inside the group using a "flat" layout [#f4]_. This layout is the default. -Consider the ``DataLad-101`` dataset, a superdataset with a several subdatasets in the following layout:: +Consider the ``DataLad-101`` dataset, a superdataset with a several subdatasets in the following layout: + +.. code-block:: bash /home/me/dl-101/DataLad-101 # dataset ├── books/ @@ -287,7 +291,7 @@ Publishing datasets recursively When publishing a series of datasets recursively, the ``--project`` argument can not be used anymore - otherwise, all datasets in the hierarchy would attempt to create the same group or project over and over again. Instead, one configures the root level dataset, and the names for underlying datasets will be derived from this configuration: -.. code-block:: +.. code-block:: bash # do the configuration for the top-most dataset # either configure with Git diff --git a/docs/basics/101-141-push.rst b/docs/basics/101-141-push.rst index 615b48d07..6a99f9a97 100644 --- a/docs/basics/101-141-push.rst +++ b/docs/basics/101-141-push.rst @@ -32,7 +32,9 @@ or storage of datasets [#f1]_, or a regular clone. .. index:: ! datalad command; create-sibling-ria - Add an existing repository as a sibling with the :dlcmd:`siblings` - command. Here are common examples:: + command. Here are common examples: + + .. code-block:: bash # to a remote repository $ datalad siblings add --name github-repo --url @@ -55,7 +57,9 @@ or storage of datasets [#f1]_, or a regular clone. In order to publish dataset content, DataLad needs to know to which sibling content shall be pushed. This can be specified with the ``--to`` option directly -from the command line:: +from the command line: + +.. code-block:: bash $ datalad push --to @@ -142,7 +146,9 @@ targets are configured throughout the dataset hierarchy. update to the public dataset is pushed, apart from pushing only the ``master`` branch, all branches starting with the section identifier ``sct`` are pushed automatically as well. This configuration was achieved by specifying these branches - (using :term:`globbing` with ``*``) in the ``push`` specification of this :term:`remote`:: + (using :term:`globbing` with ``*``) in the ``push`` specification of this :term:`remote`: + + .. code-block:: bash $ git config --local remote.public.push 'refs/heads/sct*' diff --git a/docs/basics/101-146-gists.rst b/docs/basics/101-146-gists.rst index 5929aeaba..e45a6e814 100644 --- a/docs/basics/101-146-gists.rst +++ b/docs/basics/101-146-gists.rst @@ -79,7 +79,9 @@ Alternatively, to get very comprehensive output, you can use The output will be returned as json, and the key ``has_content`` indicates local content availability (``true`` or ``false``). To filter through it, the command -line tool `jq `_ works well:: +line tool `jq `_ works well: + +.. code-block:: bash $ datalad -f json status --recursive --annex all | jq '. | select(.has_content == true).path' @@ -150,7 +152,9 @@ Datasets can be either GitRepos (i.e., sole Git repositories; this happens when they are created with the ``--no-annex`` flag, for example), or AnnexRepos (i.e., datasets that contain an annex). Information on what kind of repository it is is stored in the dataset report of :dlcmd:`wtf` under the key ``repo``. -Here is a one-liner to get this info:: +Here is a one-liner to get this info: + +.. code-block:: bash $ datalad -f'{infos[dataset][repo]}' wtf @@ -180,7 +184,9 @@ A sketch of how to implement a sibling for backups is below: In order to push not only the current branch, but refs, add the option ``--publish-by-default "refs/*"`` to the :dlcmd:`create-sibling` call. Should you want to back up all annexed data, even past versions of files, use -:gitannexcmd:`sync` to push to the sibling:: +:gitannexcmd:`sync` to push to the sibling: + +.. code-block:: bash $ git annex sync --all --content @@ -201,7 +207,9 @@ Example: consider retrieving all ``ribbon.nii.gz`` files for all subjects in the :ref:`usecase_HCP_dataset`). If all subject-subdatasets are installed (e.g., with ``datalad get -n -r`` for a recursive installation without file retrieval), :term:`globbing` with the -shell works fine:: +shell works fine: + +.. code-block:: bash $ datalad get HCP1200/*/T1W/ribbon.nii.gz @@ -209,13 +217,17 @@ The Gist :ref:`parallelize` can show you how to parallelize this. If the subdatasets are not yet installed, globbing will not work, because the shell can't expand non-existent paths. As an alternative, you can pipe the output of an (arbitrarily complex) :dlcmd:`search` command into -:dlcmd:`get`:: +:dlcmd:`get`: + +.. code-block:: bash $ datalad -f '{path}' -c datalad.search.index-egrep-documenttype=all search 'path:.*T1w.*\.nii.gz' | xargs -n 100 datalad get However, if you know the file locations within the dataset hierarchy and they are predictably named and consistent, you can create a file containing all paths to -be retrieved and pipe that into :dlcmd:`get` as well:: +be retrieved and pipe that into :dlcmd:`get` as well: + +.. code-block:: bash # create file with all file paths $ for sub in HCP1200/*; do echo ${sub}/T1w/ribbons.nii.gz; done > toget.txt diff --git a/docs/basics/101-180-FAQ.rst b/docs/basics/101-180-FAQ.rst index f5b937477..c95755fd8 100644 --- a/docs/basics/101-180-FAQ.rst +++ b/docs/basics/101-180-FAQ.rst @@ -142,7 +142,9 @@ How can I convert/import/transform an existing Git or git-annex repository into ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ You can transform any existing Git or git-annex repository of yours into a -DataLad dataset by running:: +DataLad dataset by running: + +.. code-block:: bash $ datalad create -f @@ -171,15 +173,18 @@ How can I help others get started with a shared dataset? If you want to share your dataset with users that are not already familiar with DataLad, it is helpful to include some information on how to interact with -DataLad datasets in your dataset's ``README`` (or similar) file. Below, we -provide a standard text block that you can use (and adapt as you wish) for -such purposes. -If you do not want to copy-and-paste these snippets yourself, you can run -:dlcmd:`add-readme` in your dataset, and have it added automatically. +DataLad datasets in your dataset's ``README`` (or similar) file. +If you do not want to invent a description yourself, you can run +:dlcmd:`add-readme` in your dataset, and have one added automatically. + +.. only:: html -.. find-out-more:: Textblock in .rst format: + Below, we provide a standard text block that you can use (and adapt as you + wish) for such purposes. - .. code-block:: rst + .. find-out-more:: Textblock in .rst format: + + .. code-block:: rst DataLad datasets and how to use them ------------------------------------ @@ -198,7 +203,9 @@ If you do not want to copy-and-paste these snippets yourself, you can run Get the dataset ^^^^^^^^^^^^^^^ - A DataLad dataset can be ``cloned`` by running:: + A DataLad dataset can be ``cloned`` by running: + + .. code-block:: bash datalad clone @@ -210,7 +217,9 @@ If you do not want to copy-and-paste these snippets yourself, you can run Retrieve dataset content ^^^^^^^^^^^^^^^^^^^^^^^^ - After cloning a dataset, you can retrieve file contents by running:: + After cloning a dataset, you can retrieve file contents by running: + + .. code-block:: bash datalad get @@ -220,7 +229,9 @@ If you do not want to copy-and-paste these snippets yourself, you can run DataLad datasets can contain other datasets, so called *subdatasets*. If you clone the top-level dataset, subdatasets do not yet contain metadata and information on the identity of files, but appear to be empty directories. In - order to retrieve file availability metadata in subdatasets, run:: + order to retrieve file availability metadata in subdatasets, run: + + .. code-block:: bash datalad get -n @@ -234,7 +245,9 @@ If you do not want to copy-and-paste these snippets yourself, you can run DataLad datasets can be updated. The command ``datalad update`` will *fetch* updates and store them on a different branch (by default - ``remotes/origin/master``). Running:: + ``remotes/origin/master``). Running: + + .. code-block:: bash datalad update --merge @@ -256,9 +269,9 @@ If you do not want to copy-and-paste these snippets yourself, you can run chapter "DataLad datasets" can help you to familiarize yourself with the concept of a dataset. -.. find-out-more:: Textblock in markdown format + .. find-out-more:: Textblock in markdown format - .. code-block:: md + .. code-block:: md [![made-with-datalad](https://www.datalad.org/badges/made_with.svg)](https://datalad.org) @@ -338,67 +351,69 @@ If you do not want to copy-and-paste these snippets yourself, you can run [handbook.datalad.org](https://handbook.datalad.org/index.html). The chapter "DataLad datasets" can help you to familiarize yourself with the concept of a dataset. -.. find-out-more:: Textblock without formatting + .. find-out-more:: Textblock without formatting + + .. code-block:: md - DataLad datasets and how to use them + DataLad datasets and how to use them - This repository is a DataLad (https://www.datalad.org) dataset. It provides - fine-grained data access down to the level of individual files, and allows - for tracking future updates. In order to use this repository for data - retrieval, DataLad is required. It is a free and open source command line - tool, available for all major operating systems, and builds up on Git and - git-annex (https://git-annex.branchable.com) to allow sharing, - synchronizing, and version controlling collections of large files. You can - find information on how to install DataLad at - https://handbook.datalad.org/intro/installation.html. + This repository is a DataLad (https://www.datalad.org) dataset. It provides + fine-grained data access down to the level of individual files, and allows + for tracking future updates. In order to use this repository for data + retrieval, DataLad is required. It is a free and open source command line + tool, available for all major operating systems, and builds up on Git and + git-annex (https://git-annex.branchable.com) to allow sharing, + synchronizing, and version controlling collections of large files. You can + find information on how to install DataLad at + https://handbook.datalad.org/intro/installation.html. - Get the dataset + Get the dataset - A DataLad dataset can be "cloned" by running 'datalad clone '. - Once a dataset is cloned, it is a light-weight directory on your local - machine. - At this point, it contains only small metadata and information on the - identity of the files in the dataset, but not actual *content* of the - (sometimes large) data files. + A DataLad dataset can be "cloned" by running 'datalad clone '. + Once a dataset is cloned, it is a light-weight directory on your local + machine. + At this point, it contains only small metadata and information on the + identity of the files in the dataset, but not actual *content* of the + (sometimes large) data files. - Retrieve dataset content + Retrieve dataset content - After cloning a dataset, you can retrieve file contents by running - 'datalad get ' + After cloning a dataset, you can retrieve file contents by running + 'datalad get ' - This command will trigger a download of the files, directories, or - subdatasets you have specified. + This command will trigger a download of the files, directories, or + subdatasets you have specified. - DataLad datasets can contain other datasets, so called "subdatasets". - If you clone the top-level dataset, subdatasets do not yet contain - metadata and information on the identity of files, but appear to be - empty directories. In order to retrieve file availability metadata in - subdatasets, run 'datalad get -n ' + DataLad datasets can contain other datasets, so called "subdatasets". + If you clone the top-level dataset, subdatasets do not yet contain + metadata and information on the identity of files, but appear to be + empty directories. In order to retrieve file availability metadata in + subdatasets, run 'datalad get -n ' - Afterwards, you can browse the retrieved metadata to find out about - subdataset contents, and retrieve individual files with `datalad get`. - If you use 'datalad get ', all contents of the - subdataset will be downloaded at once. + Afterwards, you can browse the retrieved metadata to find out about + subdataset contents, and retrieve individual files with `datalad get`. + If you use 'datalad get ', all contents of the + subdataset will be downloaded at once. - Stay up-to-date + Stay up-to-date - DataLad datasets can be updated. The command 'datalad update' will - "fetch" updates and store them on a different branch (by default - 'remotes/origin/master'). Running 'datalad update --merge' will "pull" - available updates and integrate them in one go. + DataLad datasets can be updated. The command 'datalad update' will + "fetch" updates and store them on a different branch (by default + 'remotes/origin/master'). Running 'datalad update --merge' will "pull" + available updates and integrate them in one go. - Find out what has been done + Find out what has been done - DataLad datasets contain their history in the Git log. - By running 'git log' (or a tool that displays Git history) in the dataset or on - specific files, you can find out what has been done to the dataset or to individual files - by whom, and when. + DataLad datasets contain their history in the Git log. + By running 'git log' (or a tool that displays Git history) in the dataset or on + specific files, you can find out what has been done to the dataset or to individual files + by whom, and when. - More information + More information - More information on DataLad and how to use it can be found in the DataLad Handbook at - https://handbook.datalad.org/index.html. The chapter "DataLad datasets" - can help you to familiarize yourself with the concept of a dataset. + More information on DataLad and how to use it can be found in the DataLad Handbook at + https://handbook.datalad.org/index.html. The chapter "DataLad datasets" + can help you to familiarize yourself with the concept of a dataset. What is the difference between DataLad, Git LFS, and Flywheel? diff --git a/docs/basics/_examples/DL-101-101-103 b/docs/basics/_examples/DL-101-101-103 index e465f092b..6f76a7fb5 100644 --- a/docs/basics/_examples/DL-101-101-103 +++ b/docs/basics/_examples/DL-101-101-103 @@ -1,11 +1,11 @@ $ git log -commit e0ff3a73986b382f985522bde9bc57fa6889e118 +commit e0ff3a73✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 Instruct annex to add text files to Git -commit 4ce681d61d3a0351844ae48b79e965818a7ce636 +commit 4ce681d6✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 diff --git a/docs/basics/_examples/DL-101-102-107 b/docs/basics/_examples/DL-101-102-107 index 16be22e68..074dbc1f4 100644 --- a/docs/basics/_examples/DL-101-102-107 +++ b/docs/basics/_examples/DL-101-102-107 @@ -1,5 +1,5 @@ $ git log -p -n 1 -commit d2bb1a86cf75a3bd49fe16d700f460cc12d11c81 +commit d2bb1a86✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 @@ -11,7 +11,7 @@ index 0000000..4c84b61 --- /dev/null +++ b/books/TLCL.pdf @@ -0,0 +1 @@ -+../.git/annex/objects/jf/3M/MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf/MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf ++../.git/annex/objects/jf/3M/✂/MD5E-s2120211--06d1efcb✂MD5.pdf \ No newline at end of file diff --git a/books/byte-of-python.pdf b/books/byte-of-python.pdf new file mode 120000 @@ -19,5 +19,5 @@ index 0000000..b9fcbff --- /dev/null +++ b/books/byte-of-python.pdf @@ -0,0 +1 @@ -+../.git/annex/objects/P5/qK/MD5E-s2693891--e61afe4b3c5d76c849c4e61f6547ed03.pdf/MD5E-s2693891--e61afe4b3c5d76c849c4e61f6547ed03.pdf ++../.git/annex/objects/P5/qK/✂/MD5E-s2693891--e61afe4b✂MD5.pdf \ No newline at end of file diff --git a/docs/basics/_examples/DL-101-102-112 b/docs/basics/_examples/DL-101-102-112 index 79deb27f4..6796f302e 100644 --- a/docs/basics/_examples/DL-101-102-112 +++ b/docs/basics/_examples/DL-101-102-112 @@ -1,9 +1,9 @@ $ datalad download-url \ - http://www.tldp.org/LDP/Bash-Beginners-Guide/Bash-Beginners-Guide.pdf \ + https://www.tldp.org/LDP/Bash-Beginners-Guide/Bash-Beginners-Guide.pdf \ --dataset . \ -m "add beginners guide on bash" \ -O books/bash_guide.pdf -[INFO] Downloading 'http://www.tldp.org/LDP/Bash-Beginners-Guide/Bash-Beginners-Guide.pdf' into '/home/me/dl-101/DataLad-101/books/bash_guide.pdf' +[INFO] Downloading 'https://www.tldp.org/LDP/Bash-Beginners-Guide/Bash-Beginners-Guide.pdf' into '/home/me/dl-101/DataLad-101/books/bash_guide.pdf' download_url(ok): /home/me/dl-101/DataLad-101/books/bash_guide.pdf (file) add(ok): books/bash_guide.pdf (file) save(ok): . (dataset) diff --git a/docs/basics/_examples/DL-101-102-115 b/docs/basics/_examples/DL-101-102-115 index e580ccf83..d4586eaef 100644 --- a/docs/basics/_examples/DL-101-102-115 +++ b/docs/basics/_examples/DL-101-102-115 @@ -1,5 +1,5 @@ $ git log -p -n 1 -commit bcb0ffe8446f7b2dcad2e2ff3881417669cb6dbd +commit bcb0ffe8✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 @@ -11,5 +11,5 @@ index 0000000..00ca6bd --- /dev/null +++ b/books/bash_guide.pdf @@ -0,0 +1 @@ -+../.git/annex/objects/WF/Gq/MD5E-s1198170--0ab2c121bcf68d7278af266f6a399c5f.pdf/MD5E-s1198170--0ab2c121bcf68d7278af266f6a399c5f.pdf ++../.git/annex/objects/WF/Gq/✂/MD5E-s1198170--0ab2c121✂MD5.pdf \ No newline at end of file diff --git a/docs/basics/_examples/DL-101-103-107 b/docs/basics/_examples/DL-101-103-107 index 1eb82b088..c980506a5 100644 --- a/docs/basics/_examples/DL-101-103-107 +++ b/docs/basics/_examples/DL-101-103-107 @@ -1,5 +1,5 @@ $ git log -p -n 2 -commit 9783a90cd737630fdcd2cdd512ae7821e2f4ff01 +commit 9783a90c✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 @@ -18,7 +18,7 @@ index 3a7a1fe..0142412 100644 +Note to self: Always use informative, concise commit messages. + -commit b538dae379ed2963ca6cb29ec155ea8403c7fb1b +commit b538dae3✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 diff --git a/docs/basics/_examples/DL-101-105-114 b/docs/basics/_examples/DL-101-105-114 index 283be289d..a8ce3b935 100644 --- a/docs/basics/_examples/DL-101-105-114 +++ b/docs/basics/_examples/DL-101-105-114 @@ -1,35 +1,35 @@ $ git log --reverse -commit 8df130bb825f99135c34b8bf0cbedb1b05edd581 +commit 8df130bb✂SHA1 Author: Michael Hanke Date: Mon Jul 16 16:08:23 2018 +0200 [DATALAD] Set default backend for all files to be MD5E -commit 3d0dc8f5e9e4032784bc5a08d243995ad5cf92f9 +commit 3d0dc8f5✂SHA1 Author: Michael Hanke Date: Mon Jul 16 16:08:24 2018 +0200 [DATALAD] new dataset -commit b81bdea645d83c2ddef360faddafd0a778d03e1a +commit b81bdea6✂SHA1 Author: Michael Hanke Date: Mon Jul 16 17:03:21 2018 +0200 Import SALT feed -commit 9f3127fad2dbb3848d8d9a0ff85e6a151a47b50f +commit 9f3127fa✂SHA1 Author: Michael Hanke Date: Mon Jul 16 17:18:10 2018 +0200 Import Interval feed -commit a052af9c059a82f36ee20ec708252568767ed067 +commit a052af9c✂SHA1 Author: Michael Hanke Date: Mon Jul 16 17:30:47 2018 +0200 Include publication date in the filename -commit ff007135c3c290c24ebdb2b3f1459236a25f7410 +commit ff007135✂SHA1 Author: Michael Hanke Date: Fri Dec 14 18:58:03 2018 +0100 @@ -37,7 +37,7 @@ Date: Fri Dec 14 18:58:03 2018 +0100 Via: git annex importfeed --template '${feedtitle}/${itempubdate}__${itemtitle}${extension}' --force http://longnow.org/projects/seminars/SALT.xml -commit 7f36dea615f0fe117aed74a04ad325aacc714111 +commit 7f36dea6✂SHA1 Author: Michael Hanke Date: Fri Dec 14 19:00:08 2018 +0100 @@ -45,7 +45,7 @@ Date: Fri Dec 14 19:00:08 2018 +0100 Via: git annex importfeed --template '${feedtitle}/${itempubdate}__${itemtitle}${extension}' --force http://longnow.org/projects/seminars/interval.xml -commit 21d92907c1d05b246ea5eee805ac00c91366ae04 +commit 21d92907✂SHA1 Author: Michael Hanke Date: Wed Jul 10 09:41:13 2019 +0200 @@ -64,7 +64,7 @@ Date: Wed Jul 10 09:41:13 2019 +0200 } ^^^ Do not change lines above ^^^ -commit e1bf31e3e91d97944b17c678036183e1d08d1598 +commit e1bf31e3✂SHA1 Author: Michael Hanke Date: Wed Jul 10 09:43:02 2019 +0200 @@ -83,13 +83,13 @@ Date: Wed Jul 10 09:43:02 2019 +0200 } ^^^ Do not change lines above ^^^ -commit e64d00f3c00309ec35cc360011563cdba474978a +commit e64d00f3✂SHA1 Author: Michael Hanke Date: Thu Jul 11 18:37:01 2019 +0200 Prepare for addition of RSS feed metadata on episodes -commit f0831b9c00b6fd11359321aa6bb9e2c58557961f +commit f0831b9c✂SHA1 Author: Michael Hanke Date: Thu Jul 11 18:42:08 2019 +0200 @@ -97,37 +97,37 @@ Date: Thu Jul 11 18:42:08 2019 +0200 For consumption by the `custom` metadata extractor -commit 9bece59fbd606290a124bbf9a3dc3218e4b7612e +commit 9bece59f✂SHA1 Author: Michael Hanke Date: Thu Jul 11 18:48:51 2019 +0200 Add duration to the metadata -commit ead809e901232746e89ab3c1ecacef4fcb0e6f49 +commit ead809e9✂SHA1 Author: Michael Hanke Date: Thu Jul 11 19:18:30 2019 +0200 Be resilient with different delimiters -commit 979bd25bd55538ff6f5efd1c780fc3bdc30c7701 +commit 979bd25b✂SHA1 Author: Michael Hanke Date: Thu Jul 11 19:19:04 2019 +0200 Single update maintainer script -commit 3e96466a522e36c1cbe70cf577a322917b5961e9 +commit 3e96466a✂SHA1 Author: Michael Hanke Date: Thu Jul 11 19:23:56 2019 +0200 More diff-able -commit 61f46fca4bc9b19e9e812353e3cf75a9edc7e694 +commit 61f46fca✂SHA1 Author: Michael Hanke Date: Thu Jul 11 19:27:50 2019 +0200 Add base dataset metadata -commit 740fa141299f852d37dbb3dd58f964c0df4c8fd3 +commit 740fa141✂SHA1 Author: Michael Hanke Date: Thu Jul 11 19:28:23 2019 +0200 @@ -146,19 +146,19 @@ Date: Thu Jul 11 19:28:23 2019 +0200 } ^^^ Do not change lines above ^^^ -commit 39226e9f8a9a11df3c8e86ca360f80f4c3a236e9 +commit 39226e9f✂SHA1 Author: Michael Hanke Date: Thu Jul 11 19:35:10 2019 +0200 Update aggregated metadata -commit 0553111de6eb48deabd3efeee070cb7e070702aa +commit 0553111d✂SHA1 Author: Michael Hanke Date: Fri Jul 12 12:36:53 2019 +0200 content removed from git annex -commit b9c517e007437677f1e0d54395a7852960a57918 +commit b9c517e0✂SHA1 Author: Michael Hanke Date: Fri Jul 12 12:37:16 2019 +0200 @@ -166,31 +166,31 @@ Date: Fri Jul 12 12:37:16 2019 +0200 to avoid the need for separate hosting -commit 5dd77723418c5c25bf49a29d55e8db273dd39217 +commit 5dd77723✂SHA1 Author: Michael Hanke Date: Fri Jul 12 12:38:16 2019 +0200 Manually place extracted metadata in Git -commit 75d7f3fde28f63d14c506cfdd4bbf5e4854d83ec +commit 75d7f3fd✂SHA1 Author: Michael Hanke Date: Mon Jul 15 07:10:28 2019 +0200 Rename metadata directory -commit 1a396a641473ea95441c42891cf8dffdde837503 +commit 1a396a64✂SHA1 Author: Michael Hanke Date: Mon Jul 15 07:19:22 2019 +0200 Prepare to annex big feed logos -commit 8053eed2a84780369cf156e3f856fbe57c0f688e +commit 8053eed2✂SHA1 Author: Michael Hanke Date: Mon Jul 15 07:20:06 2019 +0200 Add annexed feed logos -commit 80310175aa64035d0a18248cb882586d2e6ea394 +commit 80310175✂SHA1 Author: Michael Hanke Date: Mon Jul 15 07:50:44 2019 +0200 @@ -199,37 +199,37 @@ Date: Mon Jul 15 07:50:44 2019 +0200 This prevents such content from being intermingled with the "intentional" dataset components. -commit 997e07abf57669dcf818bffdc819fa92eddf5659 +commit 997e07ab✂SHA1 Author: Michael Hanke Date: Mon Jul 15 07:51:50 2019 +0200 Update aggregated metadata -commit 43fdea19c2f87c70c3317c8886d4701b8acfe708 +commit 43fdea19✂SHA1 Author: Michael Hanke Date: Mon Jul 15 09:57:35 2019 +0200 Add script to generate a README from DataLad metadata -commit 4b37790cd97f03a7807f82f20497218dc18898d0 +commit 4b37790c✂SHA1 Author: Michael Hanke Date: Mon Jul 15 10:03:27 2019 +0200 Fix README generator to parse correct directory -commit e8296151fa2d1592791c8882a1c10c00c523267c +commit e8296151✂SHA1 Author: Michael Hanke Date: Mon Jul 15 10:10:27 2019 +0200 Link to the handbook as a source of wisdom -commit 7ee3ded7f0c18dc767fc32c850b57a03fcb792b9 +commit 7ee3ded7✂SHA1 Author: Michael Hanke Date: Mon Jul 15 10:22:06 2019 +0200 Sort episodes newest-first -commit 004e484d05a93c6ca46438ffe7878f8e3d53312e +commit 004e484d✂SHA1 Author: Michael Hanke Date: Mon Jul 15 10:22:38 2019 +0200 @@ -252,7 +252,7 @@ Date: Mon Jul 15 10:22:38 2019 +0200 } ^^^ Do not change lines above ^^^ -commit bafdc041eac093760faa7cab3ca6196da99a39d9 +commit bafdc041✂SHA1 Author: Michael Hanke Date: Mon Jul 15 12:45:36 2019 +0200 @@ -260,7 +260,7 @@ Date: Mon Jul 15 12:45:36 2019 +0200 This makes it easier to merge documents for a joint report. -commit 36a30a1a1d8725658410b650d516d9d3c640427d +commit 36a30a1a✂SHA1 Author: Michael Hanke Date: Mon Jul 15 12:59:27 2019 +0200 @@ -269,7 +269,7 @@ Date: Mon Jul 15 12:59:27 2019 +0200 === Do not change lines below === { "chain": [ - "740fa141299f852d37dbb3dd58f964c0df4c8fd3" + "740fa141✂SHA1" ], "cmd": ".datalad/maint/update.sh", "dsid": "b3ca2718-8901-11e8-99aa-a0369f7c647e", @@ -281,7 +281,7 @@ Date: Mon Jul 15 12:59:27 2019 +0200 } ^^^ Do not change lines above ^^^ -commit dcc34fbe669b06ced84ced381ba0db21cf5e665f +commit dcc34fbe✂SHA1 Author: Michael Hanke Date: Mon Jul 15 13:06:52 2019 +0200 diff --git a/docs/basics/_examples/DL-101-106-101 b/docs/basics/_examples/DL-101-106-101 index 6b0875dc9..474cd04a4 100644 --- a/docs/basics/_examples/DL-101-106-101 +++ b/docs/basics/_examples/DL-101-106-101 @@ -1,5 +1,5 @@ $ git log -p -n 3 -commit fa63a083fe1669f6b8571bfd9b8d6870b91c0911 +commit fa63a083✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 @@ -19,7 +19,7 @@ index 0142412..e34ef1f 100644 +superdataset with the '-d' option. + -commit 7c489fbfa3dcf880e5008670c2d623f9fb1950ff +commit 7c489fbf✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 @@ -42,9 +42,9 @@ index 0000000..dcc34fb --- /dev/null +++ b/recordings/longnow @@ -0,0 +1 @@ -+Subproject commit dcc34fbe669b06ced84ced381ba0db21cf5e665f ++Subproject commit dcc34fbe✂SHA1 -commit 9783a90cd737630fdcd2cdd512ae7821e2f4ff01 +commit 9783a90c✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 @@ -63,7 +63,7 @@ index 3a7a1fe..0142412 100644 +Note to self: Always use informative, concise commit messages. + -commit b538dae379ed2963ca6cb29ec155ea8403c7fb1b +commit b538dae3✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 @@ -79,7 +79,7 @@ index 0000000..3a7a1fe +The dataset is created empty + -commit bcb0ffe8446f7b2dcad2e2ff3881417669cb6dbd +commit bcb0ffe8✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 @@ -91,10 +91,10 @@ index 0000000..00ca6bd --- /dev/null +++ b/books/bash_guide.pdf @@ -0,0 +1 @@ -+../.git/annex/objects/WF/Gq/MD5E-s1198170--0ab2c121bcf68d7278af266f6a399c5f.pdf/MD5E-s1198170--0ab2c121bcf68d7278af266f6a399c5f.pdf ++../.git/annex/objects/WF/Gq/✂/MD5E-s1198170--0ab2c121✂MD5.pdf \ No newline at end of file -commit 8e5dc8087a5ba91a380afef36daabcdb61eacaa9 +commit 8e5dc808✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 @@ -106,10 +106,10 @@ index 0000000..c5d2ab2 --- /dev/null +++ b/books/progit.pdf @@ -0,0 +1 @@ -+../.git/annex/objects/G6/Gj/MD5E-s12465653--05cd7ed561d108c9bcf96022bc78a92c.pdf/MD5E-s12465653--05cd7ed561d108c9bcf96022bc78a92c.pdf ++../.git/annex/objects/G6/Gj/✂/MD5E-s12465653--05cd7ed5✂MD5.pdf \ No newline at end of file -commit d2bb1a86cf75a3bd49fe16d700f460cc12d11c81 +commit d2bb1a86✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 @@ -121,7 +121,7 @@ index 0000000..4c84b61 --- /dev/null +++ b/books/TLCL.pdf @@ -0,0 +1 @@ -+../.git/annex/objects/jf/3M/MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf/MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf ++../.git/annex/objects/jf/3M/✂/MD5E-s2120211--06d1efcb✂MD5.pdf \ No newline at end of file diff --git a/books/byte-of-python.pdf b/books/byte-of-python.pdf new file mode 120000 @@ -129,10 +129,10 @@ index 0000000..b9fcbff --- /dev/null +++ b/books/byte-of-python.pdf @@ -0,0 +1 @@ -+../.git/annex/objects/P5/qK/MD5E-s2693891--e61afe4b3c5d76c849c4e61f6547ed03.pdf/MD5E-s2693891--e61afe4b3c5d76c849c4e61f6547ed03.pdf ++../.git/annex/objects/P5/qK/✂/MD5E-s2693891--e61afe4b✂MD5.pdf \ No newline at end of file -commit e0ff3a73986b382f985522bde9bc57fa6889e118 +commit e0ff3a73✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 @@ -147,7 +147,7 @@ index af926ef..6e474fe 100644 **/.git* annex.largefiles=nothing +* annex.largefiles=((mimeencoding=binary)and(largerthan=0)) -commit 4ce681d61d3a0351844ae48b79e965818a7ce636 +commit 4ce681d6✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 diff --git a/docs/basics/_examples/DL-101-108-106 b/docs/basics/_examples/DL-101-108-106 index 3088652fe..0acce7e09 100644 --- a/docs/basics/_examples/DL-101-108-106 +++ b/docs/basics/_examples/DL-101-108-106 @@ -1,5 +1,5 @@ $ git log -p -n 1 # On Windows, you may just want to type "git log". -commit f4f30396538221ec1301ddd10bd3fc5e8462a0b0 +commit f4f30396✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 diff --git a/docs/basics/_examples/DL-101-109-105 b/docs/basics/_examples/DL-101-109-105 index 623a68888..f07a1f963 100644 --- a/docs/basics/_examples/DL-101-109-105 +++ b/docs/basics/_examples/DL-101-109-105 @@ -1,11 +1,11 @@ $ git log -n 2 -commit 07db512b0e359209df3948202071c2a52c616458 +commit 07db512b✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 BF: list both directories content -commit f4f30396538221ec1301ddd10bd3fc5e8462a0b0 +commit f4f30396✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 diff --git a/docs/basics/_examples/DL-101-109-106 b/docs/basics/_examples/DL-101-109-106 index aef80bb0d..07649da23 100644 --- a/docs/basics/_examples/DL-101-109-106 +++ b/docs/basics/_examples/DL-101-109-106 @@ -1,5 +1,5 @@ -$ datalad rerun f4f30396538221ec1301ddd10bd3fc5e8462a0b0 +$ datalad rerun f4f30396✂SHA1 [INFO] run commit f4f3039; (create a list of ...) [INFO] == Command start (output follows) ===== [INFO] == Command exit (modification check follows) ===== diff --git a/docs/basics/_examples/DL-101-109-107 b/docs/basics/_examples/DL-101-109-107 index 2cd9975a7..a5323a3fc 100644 --- a/docs/basics/_examples/DL-101-109-107 +++ b/docs/basics/_examples/DL-101-109-107 @@ -1,5 +1,5 @@ $ git log -n 1 -commit f4916ccb5d704fda1b3ae94e24fe6803feb3150b +commit f4916ccb✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 @@ -8,7 +8,7 @@ Date: Tue Jun 18 16:13:00 2019 +0000 === Do not change lines below === { "chain": [ - "f4f30396538221ec1301ddd10bd3fc5e8462a0b0" + "f4f30396✂SHA1" ], "cmd": "bash code/list_titles.sh > recordings/podcasts.tsv", "dsid": "e3e70682-c209-4cac-629f-6fbed82c07cd", diff --git a/docs/basics/_examples/DL-101-109-112 b/docs/basics/_examples/DL-101-109-112 index 00a76929c..4c425af7b 100644 --- a/docs/basics/_examples/DL-101-109-112 +++ b/docs/basics/_examples/DL-101-109-112 @@ -1,5 +1,5 @@ $ git log -- recordings/podcasts.tsv -commit f4916ccb5d704fda1b3ae94e24fe6803feb3150b +commit f4916ccb✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 @@ -8,7 +8,7 @@ Date: Tue Jun 18 16:13:00 2019 +0000 === Do not change lines below === { "chain": [ - "f4f30396538221ec1301ddd10bd3fc5e8462a0b0" + "f4f30396✂SHA1" ], "cmd": "bash code/list_titles.sh > recordings/podcasts.tsv", "dsid": "e3e70682-c209-4cac-629f-6fbed82c07cd", @@ -20,7 +20,7 @@ Date: Tue Jun 18 16:13:00 2019 +0000 } ^^^ Do not change lines above ^^^ -commit f4f30396538221ec1301ddd10bd3fc5e8462a0b0 +commit f4f30396✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 diff --git a/docs/basics/_examples/DL-101-112-109 b/docs/basics/_examples/DL-101-112-109 index 6f0a1713f..2b8ba061d 100644 --- a/docs/basics/_examples/DL-101-112-109 +++ b/docs/basics/_examples/DL-101-112-109 @@ -1,5 +1,5 @@ $ git log -p -n 2 -commit b5fc1296ac0f2918369716ee21917da2744ac228 +commit b5fc1296✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 @@ -20,7 +20,7 @@ index 6a465f0..e2829b2 100644 +those changes done to the files listed with --output flags. + -commit d5845d332dc06ed2311900d9c08cefda69df5af5 +commit d5845d33✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 @@ -48,7 +48,7 @@ index 0985399..d90c601 120000 --- a/recordings/salt_logo_small.jpg +++ b/recordings/salt_logo_small.jpg @@ -1 +1 @@ --../.git/annex/objects/jX/gq/MD5E-s87553--4b3c61df2486e3db7a5db905a8946fcb.jpg/MD5E-s87553--4b3c61df2486e3db7a5db905a8946fcb.jpg +-../.git/annex/objects/jX/gq/✂/MD5E-s87553--4b3c61df✂MD5.jpg \ No newline at end of file -+../.git/annex/objects/fZ/wg/MD5E-s76402--87da732ff6d9a92c6afcaed7fefb133f.jpg/MD5E-s76402--87da732ff6d9a92c6afcaed7fefb133f.jpg ++../.git/annex/objects/fZ/wg/✂/MD5E-s76402--87da732f✂MD5.jpg \ No newline at end of file diff --git a/docs/basics/_examples/DL-101-115-101 b/docs/basics/_examples/DL-101-115-101 index bdadf2598..31a129c09 100644 --- a/docs/basics/_examples/DL-101-115-101 +++ b/docs/basics/_examples/DL-101-115-101 @@ -2,9 +2,9 @@ $ cd books $ tree . -├── bash_guide.pdf -> ../.git/annex/objects/WF/Gq/MD5E-s1198170--0ab2c121bcf68d7278af266f6a399c5f.pdf/MD5E-s1198170--0ab2c121bcf68d7278af266f6a399c5f.pdf -├── byte-of-python.pdf -> ../.git/annex/objects/P5/qK/MD5E-s2693891--e61afe4b3c5d76c849c4e61f6547ed03.pdf/MD5E-s2693891--e61afe4b3c5d76c849c4e61f6547ed03.pdf -├── progit.pdf -> ../.git/annex/objects/G6/Gj/MD5E-s12465653--05cd7ed561d108c9bcf96022bc78a92c.pdf/MD5E-s12465653--05cd7ed561d108c9bcf96022bc78a92c.pdf -└── TLCL.pdf -> ../.git/annex/objects/jf/3M/MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf/MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf +├── bash_guide.pdf -> ../.git/annex/objects/WF/Gq/✂/MD5E-s1198170--0ab2c121✂MD5.pdf +├── byte-of-python.pdf -> ../.git/annex/objects/P5/qK/✂/MD5E-s2693891--e61afe4b✂MD5.pdf +├── progit.pdf -> ../.git/annex/objects/G6/Gj/✂/MD5E-s12465653--05cd7ed5✂MD5.pdf +└── TLCL.pdf -> ../.git/annex/objects/jf/3M/✂/MD5E-s2120211--06d1efcb✂MD5.pdf 0 directories, 4 files diff --git a/docs/basics/_examples/DL-101-115-102 b/docs/basics/_examples/DL-101-115-102 index 56c34b842..74952b808 100644 --- a/docs/basics/_examples/DL-101-115-102 +++ b/docs/basics/_examples/DL-101-115-102 @@ -1,2 +1,2 @@ -evince ../.git/annex/objects/jf/3M/MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf/MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf +evince ../.git/annex/objects/jf/3M/✂/MD5E-s2120211--06d1efcb✂MD5.pdf diff --git a/docs/basics/_examples/DL-101-115-103 b/docs/basics/_examples/DL-101-115-103 index f2a446f70..f5b77a2f9 100644 --- a/docs/basics/_examples/DL-101-115-103 +++ b/docs/basics/_examples/DL-101-115-103 @@ -1,8 +1,6 @@ -$ ls -lah -total 24K -drwxr-xr-x 2 elena elena 4.0K 2019-06-18 16:13 . -drwxr-xr-x 7 elena elena 4.0K 2019-06-18 16:13 .. -lrwxrwxrwx 1 elena elena 131 2019-06-18 16:13 bash_guide.pdf -> ../.git/annex/objects/WF/Gq/MD5E-s1198170--0ab2c121bcf68d7278af266f6a399c5f.pdf/MD5E-s1198170--0ab2c121bcf68d7278af266f6a399c5f.pdf -lrwxrwxrwx 1 elena elena 131 2019-06-18 16:13 byte-of-python.pdf -> ../.git/annex/objects/P5/qK/MD5E-s2693891--e61afe4b3c5d76c849c4e61f6547ed03.pdf/MD5E-s2693891--e61afe4b3c5d76c849c4e61f6547ed03.pdf -lrwxrwxrwx 1 elena elena 133 2019-06-18 16:13 progit.pdf -> ../.git/annex/objects/G6/Gj/MD5E-s12465653--05cd7ed561d108c9bcf96022bc78a92c.pdf/MD5E-s12465653--05cd7ed561d108c9bcf96022bc78a92c.pdf -lrwxrwxrwx 1 elena elena 131 2019-06-18 16:13 TLCL.pdf -> ../.git/annex/objects/jf/3M/MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf/MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf +$ ls -lh +total 16K +lrwxrwxrwx 1 elena elena 131 2019-06-18 16:13 bash_guide.pdf -> ../.git/annex/objects/WF/Gq/✂/MD5E-s1198170--0ab2c121✂MD5.pdf +lrwxrwxrwx 1 elena elena 131 2019-06-18 16:13 byte-of-python.pdf -> ../.git/annex/objects/P5/qK/✂/MD5E-s2693891--e61afe4b✂MD5.pdf +lrwxrwxrwx 1 elena elena 133 2019-06-18 16:13 progit.pdf -> ../.git/annex/objects/G6/Gj/✂/MD5E-s12465653--05cd7ed5✂MD5.pdf +lrwxrwxrwx 1 elena elena 131 2019-06-18 16:13 TLCL.pdf -> ../.git/annex/objects/jf/3M/✂/MD5E-s2120211--06d1efcb✂MD5.pdf diff --git a/docs/basics/_examples/DL-101-115-104 b/docs/basics/_examples/DL-101-115-104 index 7cf638f21..af5d890bf 100644 --- a/docs/basics/_examples/DL-101-115-104 +++ b/docs/basics/_examples/DL-101-115-104 @@ -1,3 +1,3 @@ # take a look at the last part of the target path: -$ ls -lah TLCL.pdf -lrwxrwxrwx 1 elena elena 131 2019-06-18 16:13 TLCL.pdf -> ../.git/annex/objects/jf/3M/MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf/MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf +$ ls -lh TLCL.pdf +lrwxrwxrwx 1 elena elena 131 2019-06-18 16:13 TLCL.pdf -> ../.git/annex/objects/jf/3M/✂/MD5E-s2120211--06d1efcb✂MD5.pdf diff --git a/docs/basics/_examples/DL-101-115-105 b/docs/basics/_examples/DL-101-115-105 index 4be984492..8e92c264a 100644 --- a/docs/basics/_examples/DL-101-115-105 +++ b/docs/basics/_examples/DL-101-115-105 @@ -1,3 +1,3 @@ # compare it to the checksum (here of type md5sum) of the PDF file and the subdirectory name $ md5sum TLCL.pdf -06d1efcb05bb2c55cd039dab3fb28455 TLCL.pdf +06d1efcb✂MD5 TLCL.pdf diff --git a/docs/basics/_examples/DL-101-116-103 b/docs/basics/_examples/DL-101-116-103 index f7f9090b2..2da69fa4b 100644 --- a/docs/basics/_examples/DL-101-116-103 +++ b/docs/basics/_examples/DL-101-116-103 @@ -2,17 +2,17 @@ $ cd DataLad-101 $ tree . ├── books -│   ├── bash_guide.pdf -> ../.git/annex/objects/WF/Gq/MD5E-s1198170--0ab2c121bcf68d7278af266f6a399c5f.pdf/MD5E-s1198170--0ab2c121bcf68d7278af266f6a399c5f.pdf -│   ├── byte-of-python.pdf -> ../.git/annex/objects/P5/qK/MD5E-s2693891--e61afe4b3c5d76c849c4e61f6547ed03.pdf/MD5E-s2693891--e61afe4b3c5d76c849c4e61f6547ed03.pdf -│   ├── progit.pdf -> ../.git/annex/objects/G6/Gj/MD5E-s12465653--05cd7ed561d108c9bcf96022bc78a92c.pdf/MD5E-s12465653--05cd7ed561d108c9bcf96022bc78a92c.pdf -│   └── TLCL.pdf -> ../.git/annex/objects/jf/3M/MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf/MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf +│   ├── bash_guide.pdf -> ../.git/annex/objects/WF/Gq/✂/MD5E-s1198170--0ab2c121✂MD5.pdf +│   ├── byte-of-python.pdf -> ../.git/annex/objects/P5/qK/✂/MD5E-s2693891--e61afe4b✂MD5.pdf +│   ├── progit.pdf -> ../.git/annex/objects/G6/Gj/✂/MD5E-s12465653--05cd7ed5✂MD5.pdf +│   └── TLCL.pdf -> ../.git/annex/objects/jf/3M/✂/MD5E-s2120211--06d1efcb✂MD5.pdf ├── code │   └── list_titles.sh ├── notes.txt └── recordings - ├── interval_logo_small.jpg -> ../.git/annex/objects/pw/Mf/MD5E-s70348--4b2ec0db16882082d6bddffbabcfc45b.jpg/MD5E-s70348--4b2ec0db16882082d6bddffbabcfc45b.jpg + ├── interval_logo_small.jpg -> ../.git/annex/objects/pw/Mf/✂/MD5E-s70348--4b2ec0db✂MD5.jpg ├── longnow ├── podcasts.tsv - └── salt_logo_small.jpg -> ../.git/annex/objects/fZ/wg/MD5E-s76402--87da732ff6d9a92c6afcaed7fefb133f.jpg/MD5E-s76402--87da732ff6d9a92c6afcaed7fefb133f.jpg + └── salt_logo_small.jpg -> ../.git/annex/objects/fZ/wg/✂/MD5E-s76402--87da732f✂MD5.jpg 4 directories, 9 files diff --git a/docs/basics/_examples/DL-101-116-105 b/docs/basics/_examples/DL-101-116-105 index be43c44ee..8c6441906 100644 --- a/docs/basics/_examples/DL-101-116-105 +++ b/docs/basics/_examples/DL-101-116-105 @@ -1,4 +1,4 @@ $ git annex whereis books/TLCL.pdf whereis books/TLCL.pdf (1 copy) - REDACTED-UUID -- me@appveyor-vm:~/dl-101/DataLad-101 [origin] + ✂UUID✂ -- me@appveyor-vm:~/dl-101/DataLad-101 [origin] ok diff --git a/docs/basics/_examples/DL-101-116-106 b/docs/basics/_examples/DL-101-116-106 index b520253f3..4ab064f56 100644 --- a/docs/basics/_examples/DL-101-116-106 +++ b/docs/basics/_examples/DL-101-116-106 @@ -1,7 +1,7 @@ $ git annex whereis books/bash_guide.pdf whereis books/bash_guide.pdf (2 copies) 00000000-0000-0000-0000-000000000001 -- web - REDACTED-UUID -- me@appveyor-vm:~/dl-101/DataLad-101 [origin] + ✂UUID✂ -- me@appveyor-vm:~/dl-101/DataLad-101 [origin] - web: http://www.tldp.org/LDP/Bash-Beginners-Guide/Bash-Beginners-Guide.pdf + web: https://www.tldp.org/LDP/Bash-Beginners-Guide/Bash-Beginners-Guide.pdf ok diff --git a/docs/basics/_examples/DL-101-116-108 b/docs/basics/_examples/DL-101-116-108 index d186b701c..7875f7be6 100644 --- a/docs/basics/_examples/DL-101-116-108 +++ b/docs/basics/_examples/DL-101-116-108 @@ -1,254 +1,254 @@ $ tree . ├── books -│   ├── bash_guide.pdf -> ../.git/annex/objects/WF/Gq/MD5E-s1198170--0ab2c121bcf68d7278af266f6a399c5f.pdf/MD5E-s1198170--0ab2c121bcf68d7278af266f6a399c5f.pdf -│   ├── byte-of-python.pdf -> ../.git/annex/objects/P5/qK/MD5E-s2693891--e61afe4b3c5d76c849c4e61f6547ed03.pdf/MD5E-s2693891--e61afe4b3c5d76c849c4e61f6547ed03.pdf -│   ├── progit.pdf -> ../.git/annex/objects/G6/Gj/MD5E-s12465653--05cd7ed561d108c9bcf96022bc78a92c.pdf/MD5E-s12465653--05cd7ed561d108c9bcf96022bc78a92c.pdf -│   └── TLCL.pdf -> ../.git/annex/objects/jf/3M/MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf/MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf +│   ├── bash_guide.pdf -> ../.git/annex/objects/WF/Gq/✂/MD5E-s1198170--0ab2c121✂MD5.pdf +│   ├── byte-of-python.pdf -> ../.git/annex/objects/P5/qK/✂/MD5E-s2693891--e61afe4b✂MD5.pdf +│   ├── progit.pdf -> ../.git/annex/objects/G6/Gj/✂/MD5E-s12465653--05cd7ed5✂MD5.pdf +│   └── TLCL.pdf -> ../.git/annex/objects/jf/3M/✂/MD5E-s2120211--06d1efcb✂MD5.pdf ├── code │   └── list_titles.sh ├── notes.txt └── recordings - ├── interval_logo_small.jpg -> ../.git/annex/objects/pw/Mf/MD5E-s70348--4b2ec0db16882082d6bddffbabcfc45b.jpg/MD5E-s70348--4b2ec0db16882082d6bddffbabcfc45b.jpg + ├── interval_logo_small.jpg -> ../.git/annex/objects/pw/Mf/✂/MD5E-s70348--4b2ec0db✂MD5.jpg ├── longnow │   ├── Long_Now__Conversations_at_The_Interval - │   │   ├── 2017_06_09__How_Digital_Memory_Is_Shaping_Our_Future__Abby_Smith_Rumsey.mp3 -> ../.git/annex/objects/8j/kQ/MD5E-s66305442--c723d53d207e6d82dd64c3909a6a93b0.mp3/MD5E-s66305442--c723d53d207e6d82dd64c3909a6a93b0.mp3 - │   │   ├── 2017_06_09__Pace_Layers_Thinking__Stewart_Brand__Paul_Saffo.mp3 -> ../.git/annex/objects/Qk/9M/MD5E-s112801659--00a42a1a617485fb2c03cbf8482c905c.mp3/MD5E-s112801659--00a42a1a617485fb2c03cbf8482c905c.mp3 - │   │   ├── 2017_06_09__Proof__The_Science_of_Booze__Adam_Rogers.mp3 -> ../.git/annex/objects/FP/96/MD5E-s60091960--6e48eceb5c54d458164c2d0f47b540bc.mp3/MD5E-s60091960--6e48eceb5c54d458164c2d0f47b540bc.mp3 - │   │   ├── 2017_06_09__Seveneves_at_The_Interval__Neal_Stephenson.mp3 -> ../.git/annex/objects/Wf/5Q/MD5E-s66431897--aff90c838a1c4a363bb9d83a46fa989b.mp3/MD5E-s66431897--aff90c838a1c4a363bb9d83a46fa989b.mp3 - │   │   ├── 2017_06_09__Talking_with_Robots_about_Architecture__Jeffrey_McGrew.mp3 -> ../.git/annex/objects/Fj/9V/MD5E-s61491081--c4e88ea062c0afdbea73d295922c5759.mp3/MD5E-s61491081--c4e88ea062c0afdbea73d295922c5759.mp3 - │   │   ├── 2017_06_09__The_Red_Planet_for_Real__Andy_Weir.mp3 -> ../.git/annex/objects/xq/Q3/MD5E-s136924472--0d1072105caa56475df9037670d35a06.mp3/MD5E-s136924472--0d1072105caa56475df9037670d35a06.mp3 - │   │   ├── 2017_07_03__Transforming_Perception__One_Sense_at_a_Time__Kara_Platoni.mp3 -> ../.git/annex/objects/J6/88/MD5E-s62941770--77ae65e0f84c4b1fbefe74183284c305.mp3/MD5E-s62941770--77ae65e0f84c4b1fbefe74183284c305.mp3 - │   │   ├── 2017_08_01__How_Climate_Will_Evolve_Government_and_Society__Kim_Stanley_Robinson.mp3 -> ../.git/annex/objects/kw/PF/MD5E-s60929439--86a30b6bab51e59af52ca8aa6684498f.mp3/MD5E-s60929439--86a30b6bab51e59af52ca8aa6684498f.mp3 - │   │   ├── 2017_09_01__Envisioning_Deep_Time__Jonathon_Keats.mp3 -> ../.git/annex/objects/W4/2q/MD5E-s57113552--82a985abe7fa362e29e4ffa3a9951cc3.mp3/MD5E-s57113552--82a985abe7fa362e29e4ffa3a9951cc3.mp3 - │   │   ├── 2017_10_01__Thinking_Long_term_About_the_Evolving_Global_Challenge__The_Refugee_Reality.mp3 -> ../.git/annex/objects/81/qF/MD5E-s78362767--5b077807c50d1fa02bebd399ec1431e0.mp3/MD5E-s78362767--5b077807c50d1fa02bebd399ec1431e0.mp3 - │   │   ├── 2017_11_01__The_Web_In_An_Eye_Blink__Jason_Scott.mp3 -> ../.git/annex/objects/03/4v/MD5E-s64398689--049e8d1c9288d201b275331afb71b316.mp3/MD5E-s64398689--049e8d1c9288d201b275331afb71b316.mp3 - │   │   ├── 2017_12_01__Ideology_in_our_Genes__The_Biological_Basis_for_Political_Traits__Rose_McDermott.mp3 -> ../.git/annex/objects/x0/2j/MD5E-s59979926--05127d163371d1152b72d98263d7848a.mp3/MD5E-s59979926--05127d163371d1152b72d98263d7848a.mp3 - │   │   ├── 2017_12_07__Can_Democracy_Survive_the_Internet___Nathaniel_Persily.mp3 -> ../.git/annex/objects/5M/Pv/MD5E-s64541470--64960bf95544bc76ed564b541ebb36bc.mp3/MD5E-s64541470--64960bf95544bc76ed564b541ebb36bc.mp3 - │   │   ├── 2018_01_02__The_New_Deal_You_Don_t_Know__Louis_Hyman.mp3 -> ../.git/annex/objects/MZ/MP/MD5E-s61802477--8c3056079a4d3bfe1adbbf0195d57f3c.mp3/MD5E-s61802477--8c3056079a4d3bfe1adbbf0195d57f3c.mp3 - │   │   ├── 2018_02_01__Humanity_and_the_Deep_Ocean__James_Nestor.mp3 -> ../.git/annex/objects/3G/5v/MD5E-s55707819--6bb054946ca3e3e95fd1b1792693706c.mp3/MD5E-s55707819--6bb054946ca3e3e95fd1b1792693706c.mp3 - │   │   ├── 2018_03_01__Our_Future_in_Algorithm_Farming__Mike_Kuniavsky.mp3 -> ../.git/annex/objects/GJ/J2/MD5E-s70246964--5a9f4538aa4d7bc3163067a9e7f093ca.mp3/MD5E-s70246964--5a9f4538aa4d7bc3163067a9e7f093ca.mp3 - │   │   ├── 2018_04_18__The_Organized_Pursuit_of_Knowledge__Margaret_Levi.mp3 -> ../.git/annex/objects/p3/k2/MD5E-s73210485--7c9aae9a75d469ba7f3f66c53b666537.mp3/MD5E-s73210485--7c9aae9a75d469ba7f3f66c53b666537.mp3 - │   │   ├── 2018_08_15__Facts__Feelings_and_Stories__How_to_Motivate_Action_on_Climate_Change__Shahzeen_Attari.mp3 -> ../.git/annex/objects/KP/K2/MD5E-s65132611--24512f7ec67223ccf780e0f2b97834f6.mp3/MD5E-s65132611--24512f7ec67223ccf780e0f2b97834f6.mp3 - │   │   ├── 2019_03_26__Charting_the_High_Frontier_of_Space__Ed_Lu.mp3 -> ../.git/annex/objects/M4/ZV/MD5E-s63544942--eb26888680eb46cccf0582e3786988fb.mp3/MD5E-s63544942--eb26888680eb46cccf0582e3786988fb.mp3 - │   │   ├── 2019_04_04__The_Science_of_Climate_Fiction__Can_Stories_Lead_to_Social_Action___James_Holland_Jones.mp3 -> ../.git/annex/objects/kq/wm/MD5E-s75248104--494600f8f37afa79751f20e67ca8e826.mp3/MD5E-s75248104--494600f8f37afa79751f20e67ca8e826.mp3 - │   │   ├── 2019_04_10__The_Spirit_Singularity__Science_and_the_Afterlife_at_the_Turn_of_the_20th_Century__Hannu_Rajaniemi.mp3 -> ../.git/annex/objects/7M/gQ/MD5E-s62773439--bd7517903216f342bfab76f2f1b6ed69.mp3/MD5E-s62773439--bd7517903216f342bfab76f2f1b6ed69.mp3 - │   │   ├── 2019_04_18__The_Evolving_Science_of_Behavior_Change__Christopher_Bryan.mp3 -> ../.git/annex/objects/61/x0/MD5E-s69287107--391d1447ccfe4b209e420dc84c2ba8e6.mp3/MD5E-s69287107--391d1447ccfe4b209e420dc84c2ba8e6.mp3 - │   │   ├── 2019_04_30__Siberia__A_Journey_to_the_Mammoth_Steppe__Stewart_Brand__Kevin_Kelly__Alexander_Rose.mp3 -> ../.git/annex/objects/zF/Jf/MD5E-s79917988--d6ffcd9308f9d9bf5a94249f074121a2.mp3/MD5E-s79917988--d6ffcd9308f9d9bf5a94249f074121a2.mp3 - │   │   ├── 2019_05_06__Can_Nationalism_be_a_Resource_for_Democracy___Maya_Tudor.mp3 -> ../.git/annex/objects/pW/Q1/MD5E-s64503403--d29cd91accc19df6e0090043992ce60b.mp3/MD5E-s64503403--d29cd91accc19df6e0090043992ce60b.mp3 - │   │   ├── 2019_05_14__Growing_Up_Ape__The_Long_term_Science_of_Studying_Our_Closest_Living_Relatives__Elizabeth__Lonsdorf.mp3 -> ../.git/annex/objects/77/qX/MD5E-s62173059--07f3975be35e756305308936799cd6cf.mp3/MD5E-s62173059--07f3975be35e756305308936799cd6cf.mp3 - │   │   ├── 2019_05_21__Time_Poverty_Amidst_Digital_Abundance__Judy_Wajcman.mp3 -> ../.git/annex/objects/3v/FQ/MD5E-s65763064--225a21c8990ae360b14af1268226c889.mp3/MD5E-s65763064--225a21c8990ae360b14af1268226c889.mp3 - │   │   ├── 2019_06_07__A_Foundation_of_Trust__Building_a_Blockchain_Future__Brian_Behlendorf.mp3 -> ../.git/annex/objects/Vp/f9/MD5E-s68634064--11ef7afe27bd66af4ef011c724809384.mp3/MD5E-s68634064--11ef7afe27bd66af4ef011c724809384.mp3 - │   │   └── 2019_07_12__Learning_From_Le_Guin__Kim_Stanley_Robinson.mp3 -> ../.git/annex/objects/X8/4w/MD5E-s91272796--0d45409155e6fab7bd0812aa25d34c77.mp3/MD5E-s91272796--0d45409155e6fab7bd0812aa25d34c77.mp3 + │   │   ├── 2017_06_09__How_Digital_Memory_Is_Shaping_Our_Future__Abby_Smith_Rumsey.mp3 -> ../.git/annex/objects/8j/kQ/✂/MD5E-s66305442--c723d53d✂MD5.mp3 + │   │   ├── 2017_06_09__Pace_Layers_Thinking__Stewart_Brand__Paul_Saffo.mp3 -> ../.git/annex/objects/Qk/9M/✂/MD5E-s112801659--00a42a1a✂MD5.mp3 + │   │   ├── 2017_06_09__Proof__The_Science_of_Booze__Adam_Rogers.mp3 -> ../.git/annex/objects/FP/96/✂/MD5E-s60091960--6e48eceb✂MD5.mp3 + │   │   ├── 2017_06_09__Seveneves_at_The_Interval__Neal_Stephenson.mp3 -> ../.git/annex/objects/Wf/5Q/✂/MD5E-s66431897--aff90c83✂MD5.mp3 + │   │   ├── 2017_06_09__Talking_with_Robots_about_Architecture__Jeffrey_McGrew.mp3 -> ../.git/annex/objects/Fj/9V/✂/MD5E-s61491081--c4e88ea0✂MD5.mp3 + │   │   ├── 2017_06_09__The_Red_Planet_for_Real__Andy_Weir.mp3 -> ../.git/annex/objects/xq/Q3/✂/MD5E-s136924472--0d107210✂MD5.mp3 + │   │   ├── 2017_07_03__Transforming_Perception__One_Sense_at_a_Time__Kara_Platoni.mp3 -> ../.git/annex/objects/J6/88/✂/MD5E-s62941770--77ae65e0✂MD5.mp3 + │   │   ├── 2017_08_01__How_Climate_Will_Evolve_Government_and_Society__Kim_Stanley_Robinson.mp3 -> ../.git/annex/objects/kw/PF/✂/MD5E-s60929439--86a30b6b✂MD5.mp3 + │   │   ├── 2017_09_01__Envisioning_Deep_Time__Jonathon_Keats.mp3 -> ../.git/annex/objects/W4/2q/✂/MD5E-s57113552--82a985ab✂MD5.mp3 + │   │   ├── 2017_10_01__Thinking_Long_term_About_the_Evolving_Global_Challenge__The_Refugee_Reality.mp3 -> ../.git/annex/objects/81/qF/✂/MD5E-s78362767--5b077807✂MD5.mp3 + │   │   ├── 2017_11_01__The_Web_In_An_Eye_Blink__Jason_Scott.mp3 -> ../.git/annex/objects/03/4v/✂/MD5E-s64398689--049e8d1c✂MD5.mp3 + │   │   ├── 2017_12_01__Ideology_in_our_Genes__The_Biological_Basis_for_Political_Traits__Rose_McDermott.mp3 -> ../.git/annex/objects/x0/2j/✂/MD5E-s59979926--05127d16✂MD5.mp3 + │   │   ├── 2017_12_07__Can_Democracy_Survive_the_Internet___Nathaniel_Persily.mp3 -> ../.git/annex/objects/5M/Pv/✂/MD5E-s64541470--64960bf9✂MD5.mp3 + │   │   ├── 2018_01_02__The_New_Deal_You_Don_t_Know__Louis_Hyman.mp3 -> ../.git/annex/objects/MZ/MP/✂/MD5E-s61802477--8c305607✂MD5.mp3 + │   │   ├── 2018_02_01__Humanity_and_the_Deep_Ocean__James_Nestor.mp3 -> ../.git/annex/objects/3G/5v/✂/MD5E-s55707819--6bb05494✂MD5.mp3 + │   │   ├── 2018_03_01__Our_Future_in_Algorithm_Farming__Mike_Kuniavsky.mp3 -> ../.git/annex/objects/GJ/J2/✂/MD5E-s70246964--5a9f4538✂MD5.mp3 + │   │   ├── 2018_04_18__The_Organized_Pursuit_of_Knowledge__Margaret_Levi.mp3 -> ../.git/annex/objects/p3/k2/✂/MD5E-s73210485--7c9aae9a✂MD5.mp3 + │   │   ├── 2018_08_15__Facts__Feelings_and_Stories__How_to_Motivate_Action_on_Climate_Change__Shahzeen_Attari.mp3 -> ../.git/annex/objects/KP/K2/✂/MD5E-s65132611--24512f7e✂MD5.mp3 + │   │   ├── 2019_03_26__Charting_the_High_Frontier_of_Space__Ed_Lu.mp3 -> ../.git/annex/objects/M4/ZV/✂/MD5E-s63544942--eb268886✂MD5.mp3 + │   │   ├── 2019_04_04__The_Science_of_Climate_Fiction__Can_Stories_Lead_to_Social_Action___James_Holland_Jones.mp3 -> ../.git/annex/objects/kq/wm/✂/MD5E-s75248104--494600f8✂MD5.mp3 + │   │   ├── 2019_04_10__The_Spirit_Singularity__Science_and_the_Afterlife_at_the_Turn_of_the_20th_Century__Hannu_Rajaniemi.mp3 -> ../.git/annex/objects/7M/gQ/✂/MD5E-s62773439--bd751790✂MD5.mp3 + │   │   ├── 2019_04_18__The_Evolving_Science_of_Behavior_Change__Christopher_Bryan.mp3 -> ../.git/annex/objects/61/x0/✂/MD5E-s69287107--391d1447✂MD5.mp3 + │   │   ├── 2019_04_30__Siberia__A_Journey_to_the_Mammoth_Steppe__Stewart_Brand__Kevin_Kelly__Alexander_Rose.mp3 -> ../.git/annex/objects/zF/Jf/✂/MD5E-s79917988--d6ffcd93✂MD5.mp3 + │   │   ├── 2019_05_06__Can_Nationalism_be_a_Resource_for_Democracy___Maya_Tudor.mp3 -> ../.git/annex/objects/pW/Q1/✂/MD5E-s64503403--d29cd91a✂MD5.mp3 + │   │   ├── 2019_05_14__Growing_Up_Ape__The_Long_term_Science_of_Studying_Our_Closest_Living_Relatives__Elizabeth__Lonsdorf.mp3 -> ../.git/annex/objects/77/qX/✂/MD5E-s62173059--07f3975b✂MD5.mp3 + │   │   ├── 2019_05_21__Time_Poverty_Amidst_Digital_Abundance__Judy_Wajcman.mp3 -> ../.git/annex/objects/3v/FQ/✂/MD5E-s65763064--225a21c8✂MD5.mp3 + │   │   ├── 2019_06_07__A_Foundation_of_Trust__Building_a_Blockchain_Future__Brian_Behlendorf.mp3 -> ../.git/annex/objects/Vp/f9/✂/MD5E-s68634064--11ef7afe✂MD5.mp3 + │   │   └── 2019_07_12__Learning_From_Le_Guin__Kim_Stanley_Robinson.mp3 -> ../.git/annex/objects/X8/4w/✂/MD5E-s91272796--0d454091✂MD5.mp3 │   ├── Long_Now__Seminars_About_Long_term_Thinking - │   │   ├── 2003_11_15__Brian_Eno__The_Long_Now.mp3 -> ../.git/annex/objects/wM/Pp/MD5E-s37400577--d2608f34da71aa80fa08ea4247af8e43.mp3/MD5E-s37400577--d2608f34da71aa80fa08ea4247af8e43.mp3 - │   │   ├── 2003_12_13__Peter_Schwartz__The_Art_Of_The_Really_Long_View.mp3 -> ../.git/annex/objects/9G/kv/MD5E-s60647011--bb4bece3953e14297c5f4e3bfbc6d139.mp3/MD5E-s60647011--bb4bece3953e14297c5f4e3bfbc6d139.mp3 - │   │   ├── 2004_01_10__George_Dyson__There_s_Plenty_of_Room_at_the_Top__Long_term_Thinking_About_Large_scale_Computing.mp3 -> ../.git/annex/objects/9g/Mw/MD5E-s43592996--65d7e0dd7a7ac5b85be870ba18c27ff7.mp3/MD5E-s43592996--65d7e0dd7a7ac5b85be870ba18c27ff7.mp3 - │   │   ├── 2004_02_14__James_Dewar__Long_term_Policy_Analysis.mp3 -> ../.git/annex/objects/vz/2x/MD5E-s33341653--b4af70a252071edc065742499c7faf94.mp3/MD5E-s33341653--b4af70a252071edc065742499c7faf94.mp3 - │   │   ├── 2004_03_13__Rusty_Schweickart__The_Asteroid_Threat_Over_the_Next_100_000_Years.mp3 -> ../.git/annex/objects/6z/QM/MD5E-s43829532--bfc1ea14ca5245ba07331765a5899fa2.mp3/MD5E-s43829532--bfc1ea14ca5245ba07331765a5899fa2.mp3 - │   │   ├── 2004_04_10__Daniel_Janzen__Third_World_Conservation__It_s_ALL_Gardening.mp3 -> ../.git/annex/objects/Wz/Wv/MD5E-s40902765--879848c838d9e5e972a2202b7553441f.mp3/MD5E-s40902765--879848c838d9e5e972a2202b7553441f.mp3 - │   │   ├── 2004_05_15__David_Rumsey__Mapping_Time.mp3 -> ../.git/annex/objects/xV/zW/MD5E-s48573955--b15b5759429bf78545fe63b7bbcf6c45.mp3/MD5E-s48573955--b15b5759429bf78545fe63b7bbcf6c45.mp3 - │   │   ├── 2004_06_12__Bruce_Sterling__The_Singularity__Your_Future_as_a_Black_Hole.mp3 -> ../.git/annex/objects/XX/6Q/MD5E-s47082293--a1fee27420e268eff863112b1250b9f5.mp3/MD5E-s47082293--a1fee27420e268eff863112b1250b9f5.mp3 - │   │   ├── 2004_07_10__Jill_Tarter__The_Search_for_Extra_terrestrial_Intelligence__Necessarily_a_Long_term_Strategy.mp3 -> ../.git/annex/objects/JZ/9Z/MD5E-s39026026--5b1cfe3b7a5f1e376856b2dc402cbf99.mp3/MD5E-s39026026--5b1cfe3b7a5f1e376856b2dc402cbf99.mp3 - │   │   ├── 2004_08_14__Phillip_Longman__The_Depopulation_Problem.mp3 -> ../.git/annex/objects/mj/2W/MD5E-s29912301--05fd6bf6a9c8687f4fca30fd9c23461d.mp3/MD5E-s29912301--05fd6bf6a9c8687f4fca30fd9c23461d.mp3 - │   │   ├── 2004_09_11__Danny_Hillis__Progress_on_the_10_000_year_Clock.mp3 -> ../.git/annex/objects/J1/9Z/MD5E-s32394149--a6b80e97513f1d08f1a7d861f3039485.mp3/MD5E-s32394149--a6b80e97513f1d08f1a7d861f3039485.mp3 - │   │   ├── 2004_10_16__Paul_Hawken__The_Long_Green.mp3 -> ../.git/annex/objects/Km/pg/MD5E-s38341709--e22fcde71de602dc1f20867e99817fcf.mp3/MD5E-s38341709--e22fcde71de602dc1f20867e99817fcf.mp3 - │   │   ├── 2004_11_13__Michael_West__The_Prospects_of_Human_Life_Extension.mp3 -> ../.git/annex/objects/4v/qp/MD5E-s40719691--8745bc0681272c6957044681d22abaf8.mp3/MD5E-s40719691--8745bc0681272c6957044681d22abaf8.mp3 - │   │   ├── 2004_12_04__Ken_Dychtwald__The_Consequences_of_Human_Life_Extension.mp3 -> ../.git/annex/objects/V9/07/MD5E-s60009557--1761225dfd602083b8ea22531149f946.mp3/MD5E-s60009557--1761225dfd602083b8ea22531149f946.mp3 - │   │   ├── 2005_01_15__James_Carse__Religious_War_In_Light_of_the_Infinite_Game.mp3 -> ../.git/annex/objects/W6/1z/MD5E-s42159493--02cfb776004e688ec5a88d4a35fa7a40.mp3/MD5E-s42159493--02cfb776004e688ec5a88d4a35fa7a40.mp3 - │   │   ├── 2005_02_26__Roger_Kennedy__The_Political_History_of_North_America_from_25_000_BC_to_12_000_AD.mp3 -> ../.git/annex/objects/jK/J4/MD5E-s40927311--8bc53f940863e7caec094afc04361b43.mp3/MD5E-s40927311--8bc53f940863e7caec094afc04361b43.mp3 - │   │   ├── 2005_03_12__Spencer_Beebe__Very_Long_term_Very_Large_scale_Biomimicry.mp3 -> ../.git/annex/objects/8v/XM/MD5E-s36572151--b606f5cf4ad1c31158ae76f965e82e84.mp3/MD5E-s36572151--b606f5cf4ad1c31158ae76f965e82e84.mp3 - │   │   ├── 2005_04_09__Stewart_Brand__Cities___Time.mp3 -> ../.git/annex/objects/2x/w6/MD5E-s39295836--2a112247f6015c4c8250289ab9d63668.mp3/MD5E-s39295836--2a112247f6015c4c8250289ab9d63668.mp3 - │   │   ├── 2005_06_11__Robert_Neuwirth__The_21st_Century_Medieval_City.mp3 -> ../.git/annex/objects/Vp/q8/MD5E-s38550688--05ad0ff6388ed786e568ef1e58d389fb.mp3/MD5E-s38550688--05ad0ff6388ed786e568ef1e58d389fb.mp3 - │   │   ├── 2005_07_16__Jared_Diamond__How_Societies_Fail_And_Sometimes_Succeed.mp3 -> ../.git/annex/objects/Q2/mw/MD5E-s34753748--d1fa4290b0dad993bd9011e0e2ad5a1f.mp3/MD5E-s34753748--d1fa4290b0dad993bd9011e0e2ad5a1f.mp3 - │   │   ├── 2005_08_13__Robert_Fuller__Patient_Revolution__Human_Rights_Past_and_Future.mp3 -> ../.git/annex/objects/X8/05/MD5E-s29838138--80c496ec104bede97272691744dbe0b2.mp3/MD5E-s29838138--80c496ec104bede97272691744dbe0b2.mp3 - │   │   ├── 2005_09_24__Ray_Kurzweil__Kurzweil_s_Law.mp3 -> ../.git/annex/objects/Xp/Pp/MD5E-s51068756--1a8e1b9bd5c0781b5798ad6fe1fe64f0.mp3/MD5E-s51068756--1a8e1b9bd5c0781b5798ad6fe1fe64f0.mp3 - │   │   ├── 2005_10_06__Esther_Dyson__Freeman_Dyson__George_Dyson__The_Difficulty_of_Looking_Far_Ahead.mp3 -> ../.git/annex/objects/Xp/qX/MD5E-s45116431--b98b672ebd13005ea800f7f96df6cf9b.mp3/MD5E-s45116431--b98b672ebd13005ea800f7f96df6cf9b.mp3 - │   │   ├── 2005_11_15__Clay_Shirky__Making_Digital_Durable__What_Time_Does_to_Categories.mp3 -> ../.git/annex/objects/xq/9M/MD5E-s46629230--1d82c368c20f626d5903ba72d8d72adb.mp3/MD5E-s46629230--1d82c368c20f626d5903ba72d8d72adb.mp3 - │   │   ├── 2005_12_10__Sam_Harris__The_View_from_the_End_of_the_World.mp3 -> ../.git/annex/objects/4F/8G/MD5E-s39843853--a8f7cac6df6a3fe57fea55238e171513.mp3/MD5E-s39843853--a8f7cac6df6a3fe57fea55238e171513.mp3 - │   │   ├── 2006_01_14__Ralph_Cavanagh__Peter_Schwartz__Nuclear_Power__Climate_Change_and_the_Next_10_000_Years.mp3 -> ../.git/annex/objects/gp/v0/MD5E-s49219891--b4d50f8eb1618e010a556aacf8f4ab8c.mp3/MD5E-s49219891--b4d50f8eb1618e010a556aacf8f4ab8c.mp3 - │   │   ├── 2006_02_14__Stephen_Lansing__Perfect_Order__A_Thousand_Years_in_Bali.mp3 -> ../.git/annex/objects/vg/K9/MD5E-s38414621--c24195b1fc7c0188c959b447ff22eb74.mp3/MD5E-s38414621--c24195b1fc7c0188c959b447ff22eb74.mp3 - │   │   ├── 2006_03_11__Kevin_Kelly__The_Next_100_Years_of_Science__Long_term_Trends_in_the_Scientific_Method..mp3 -> ../.git/annex/objects/wW/jJ/MD5E-s37249410--e92bb84028e026eb33f66c5eb0f761ea.mp3/MD5E-s37249410--e92bb84028e026eb33f66c5eb0f761ea.mp3 - │   │   ├── 2006_04_15__Jimmy_Wales__Vision__Wikipedia_and_the_Future_of_Free_Culture.mp3 -> ../.git/annex/objects/PJ/Mw/MD5E-s36694097--fbe81b642bf2e36e3f1f44bf53e2c832.mp3/MD5E-s36694097--fbe81b642bf2e36e3f1f44bf53e2c832.mp3 - │   │   ├── 2006_05_13__Chris_Anderson__Will_Hearst__The_Long_Time_Tail.mp3 -> ../.git/annex/objects/Z4/WZ/MD5E-s42929386--cbf6f31c6c8e616d32815e3c0a0e8dc9.mp3/MD5E-s42929386--cbf6f31c6c8e616d32815e3c0a0e8dc9.mp3 - │   │   ├── 2006_06_27__Brian_Eno__Will_Wright__Playing_with_Time.mp3 -> ../.git/annex/objects/3z/MW/MD5E-s48120641--c7794df5d24e5ec697655f392f054a7d.mp3/MD5E-s48120641--c7794df5d24e5ec697655f392f054a7d.mp3 - │   │   ├── 2006_07_15__John_Rendon__Long_term_Policy_to_Make_the_War_on_Terror_Short.mp3 -> ../.git/annex/objects/Zg/px/MD5E-s43093884--5dd1d00e4829c1a5482c5941ae4c0deb.mp3/MD5E-s43093884--5dd1d00e4829c1a5482c5941ae4c0deb.mp3 - │   │   ├── 2006_09_23__Orville_Schell__China_Thinks_Long_term__But_Can_It_Relearn_to_Act_Long_term_.mp3 -> ../.git/annex/objects/6z/G6/MD5E-s42977502--05ea8ed6092d5d6c8b248f256942a8eb.mp3/MD5E-s42977502--05ea8ed6092d5d6c8b248f256942a8eb.mp3 - │   │   ├── 2006_10_14__John_Baez__Zooming_Out_in_Time.mp3 -> ../.git/annex/objects/z6/Gf/MD5E-s39220210--335e92a49072179695b9086c5e429133.mp3/MD5E-s39220210--335e92a49072179695b9086c5e429133.mp3 - │   │   ├── 2006_11_04__Larry_Brilliant__Katherine_Fulton__Richard_Rockefeller__The_Deeper_News_About_the_New_Philanthropy.mp3 -> ../.git/annex/objects/mZ/Jk/MD5E-s48439808--37ffbb967a67e5661ee7d74320dc2b79.mp3/MD5E-s48439808--37ffbb967a67e5661ee7d74320dc2b79.mp3 - │   │   ├── 2006_12_01__Philip_Rosedale___Second_Life___What_Do_We_Learn_If_We_Digitize_EVERYTHING_.mp3 -> ../.git/annex/objects/58/9v/MD5E-s41936130--6fbaabb438cbb41c674e89f9914c68c9.mp3/MD5E-s41936130--6fbaabb438cbb41c674e89f9914c68c9.mp3 - │   │   ├── 2007_01_27__Philip_Tetlock__Why_Foxes_Are_Better_Forecasters_Than_Hedgehogs.mp3 -> ../.git/annex/objects/Fm/vG/MD5E-s35425777--3dc81719eae535412ee8ec4578126fbd.mp3/MD5E-s35425777--3dc81719eae535412ee8ec4578126fbd.mp3 - │   │   ├── 2007_02_16__Vernor_Vinge__What_If_the_Singularity_Does_NOT_Happen_.mp3 -> ../.git/annex/objects/W8/x8/MD5E-s43975374--1975e476fba2f01d779497a41e966f42.mp3/MD5E-s43975374--1975e476fba2f01d779497a41e966f42.mp3 - │   │   ├── 2007_03_10__Brian_Fagan__We_Are_Not_the_First_to_Suffer_Through_Climate_Change.mp3 -> ../.git/annex/objects/12/Mx/MD5E-s38065175--afd876160ae3f8821a406ac1f3fd5e7c.mp3/MD5E-s38065175--afd876160ae3f8821a406ac1f3fd5e7c.mp3 - │   │   ├── 2007_04_28__Frans_Lanting__Life_s_Journey_Through_Time.mp3 -> ../.git/annex/objects/Wx/73/MD5E-s8150366--fc261d927bf501e41162709fe2bfdaf3.mp3/MD5E-s8150366--fc261d927bf501e41162709fe2bfdaf3.mp3 - │   │   ├── 2007_05_12__Steven_Johnson__The_Long_Zoom.mp3 -> ../.git/annex/objects/03/2F/MD5E-s41751799--795eca058bc7d8dc8819185ad212edc5.mp3/MD5E-s41751799--795eca058bc7d8dc8819185ad212edc5.mp3 - │   │   ├── 2007_06_09__Paul_Hawken__The_New_Great_Transformation.mp3 -> ../.git/annex/objects/qQ/qG/MD5E-s34334254--8198f0c4b8855f8db29c1cc359de2a8f.mp3/MD5E-s34334254--8198f0c4b8855f8db29c1cc359de2a8f.mp3 - │   │   ├── 2007_06_29__Francis_Fukuyama___The_End_of_History__Revisited.mp3 -> ../.git/annex/objects/zQ/p8/MD5E-s86957701--807d990c3edfe5dc0c2e31060e9fa221.mp3/MD5E-s86957701--807d990c3edfe5dc0c2e31060e9fa221.mp3 - │   │   ├── 2007_08_18__Alex_Wright__Glut__Mastering_Information_Though_the_Ages.mp3 -> ../.git/annex/objects/Vq/9V/MD5E-s44370724--9d6858d432c22621843bec7c821c7540.mp3/MD5E-s44370724--9d6858d432c22621843bec7c821c7540.mp3 - │   │   ├── 2007_09_15__Rip_Anderson__Gwyneth_Cravens__Power_to_Save_the_World.mp3 -> ../.git/annex/objects/g3/G9/MD5E-s49475888--bfcea29531c79fe2c3742a5c1a34cb30.mp3/MD5E-s49475888--bfcea29531c79fe2c3742a5c1a34cb30.mp3 - │   │   ├── 2007_10_13__Juan_Enriquez__Mapping_the_Frontier_of_Knowledge.mp3 -> ../.git/annex/objects/Gx/qM/MD5E-s42612152--ee5ee16215cdb2ebdf3b8785a51d7fd5.mp3/MD5E-s42612152--ee5ee16215cdb2ebdf3b8785a51d7fd5.mp3 - │   │   ├── 2007_11_10__Rosabeth_Moss_Kanter__Enduring_Principles_for_Changing_Times.mp3 -> ../.git/annex/objects/2v/2X/MD5E-s38669105--d8a95dfe2d45afee2252259d5208c6b0.mp3/MD5E-s38669105--d8a95dfe2d45afee2252259d5208c6b0.mp3 - │   │   ├── 2007_12_15__Joline_Blais__Jon_Ippolito__At_the_Edge_of_Art.mp3 -> ../.git/annex/objects/PJ/ZM/MD5E-s41049161--f891ff0dc77ed5d4f39f8cd862610d4c.mp3/MD5E-s41049161--f891ff0dc77ed5d4f39f8cd862610d4c.mp3 - │   │   ├── 2008_01_12__Paul_Saffo__Embracing_Uncertainty__the_secret_to_effective_forecasting.mp3 -> ../.git/annex/objects/P6/mP/MD5E-s40854207--48b54c45ae4be605d838a066b7c8a270.mp3/MD5E-s40854207--48b54c45ae4be605d838a066b7c8a270.mp3 - │   │   ├── 2008_02_05__Nassim_Nicholas_Taleb__The_Future_Has_Always_Been_Crazier_Than_We_Thought.mp3 -> ../.git/annex/objects/64/jW/MD5E-s41992520--969a1f3812e552a6fe16b2755c6c9d23.mp3/MD5E-s41992520--969a1f3812e552a6fe16b2755c6c9d23.mp3 - │   │   ├── 2008_02_26__Craig_Venter__Joining_3.5_Billion_Years_of_Microbial_Invention.mp3 -> ../.git/annex/objects/Xw/xF/MD5E-s52243794--c86611f72b55b9854a3ae89e80028053.mp3/MD5E-s52243794--c86611f72b55b9854a3ae89e80028053.mp3 - │   │   ├── 2008_04_29__Niall_Ferguson__Peter_Schwartz__Historian_vs._Futurist_on_Human_Progress.mp3 -> ../.git/annex/objects/Mj/XX/MD5E-s48909656--f58ec5f796cec3acfc2fc6076a332c1f.mp3/MD5E-s48909656--f58ec5f796cec3acfc2fc6076a332c1f.mp3 - │   │   ├── 2008_05_22__Iqbal_Quadir__Technology_Empowers_the_Poorest.mp3 -> ../.git/annex/objects/K1/02/MD5E-s35922583--3baf5c9a4ca07468e113dd1674c8af64.mp3/MD5E-s35922583--3baf5c9a4ca07468e113dd1674c8af64.mp3 - │   │   ├── 2008_06_28__Paul_Ehrlich__The_Dominant_Animal__Human_Evolution_and_the_Environment.mp3 -> ../.git/annex/objects/vG/Z5/MD5E-s42323632--32b03361fca3339c5afe884d2d9e8fab.mp3/MD5E-s42323632--32b03361fca3339c5afe884d2d9e8fab.mp3 - │   │   ├── 2008_07_24__Edward_Burtynsky__The_10_000_year_Gallery.mp3 -> ../.git/annex/objects/42/K7/MD5E-s53695042--968062aa10adfb915a09a675844247d5.mp3/MD5E-s53695042--968062aa10adfb915a09a675844247d5.mp3 - │   │   ├── 2008_08_09__Daniel_Suarez__Daemon__Bot_mediated_Reality.mp3 -> ../.git/annex/objects/80/90/MD5E-s37685881--1d0d983c04df0b2d749d12da9ea07ce0.mp3/MD5E-s37685881--1d0d983c04df0b2d749d12da9ea07ce0.mp3 - │   │   ├── 2008_09_09__Neal_Stephenson__ANATHEM_Book_Launch_Event.mp3 -> ../.git/annex/objects/4g/Xk/MD5E-s9437542--f8a813f2aa53c38fdc23388950b2bb70.mp3/MD5E-s9437542--f8a813f2aa53c38fdc23388950b2bb70.mp3 - │   │   ├── 2008_09_13__Peter_Diamandis__Long_term_X_Prizes.mp3 -> ../.git/annex/objects/XM/mM/MD5E-s35501727--755574091d9abe61dc1248667d7acd72.mp3/MD5E-s35501727--755574091d9abe61dc1248667d7acd72.mp3 - │   │   ├── 2008_10_04__Huey_Johnson__Green_Planning_at_Nation_Scale.mp3 -> ../.git/annex/objects/X0/mv/MD5E-s42050106--0274dc241f63cd768c3540e1fceb9923.mp3/MD5E-s42050106--0274dc241f63cd768c3540e1fceb9923.mp3 - │   │   ├── 2008_11_18__Drew_Endy__Jim_Thomas__Synthetic_Biology_Debate.mp3 -> ../.git/annex/objects/mk/f0/MD5E-s59629253--53cd8eb88ce058cf76eaefb8e9cd4ee5.mp3/MD5E-s59629253--53cd8eb88ce058cf76eaefb8e9cd4ee5.mp3 - │   │   ├── 2008_12_20__Rick_Prelinger__Lost_Landscapes_of_San_Francisco.mp3 -> ../.git/annex/objects/qv/2j/MD5E-s45891041--a4157f90e969c61b012c8d660690a76c.mp3/MD5E-s45891041--a4157f90e969c61b012c8d660690a76c.mp3 - │   │   ├── 2009_01_17__Saul_Griffith__Climate_Change_Recalculated.mp3 -> ../.git/annex/objects/89/FG/MD5E-s46528544--da4aa82f73bf5dffc94e0840f862f0f0.mp3/MD5E-s46528544--da4aa82f73bf5dffc94e0840f862f0f0.mp3 - │   │   ├── 2009_02_14__Dmitry_Orlov__Social_Collapse_Best_Practices.mp3 -> ../.git/annex/objects/xw/Z8/MD5E-s42143599--53162f6bc58ba27e0c91c9ee3dd3cf98.mp3/MD5E-s42143599--53162f6bc58ba27e0c91c9ee3dd3cf98.mp3 - │   │   ├── 2009_03_21__Daniel_Everett__Endangered_languages__lost_knowledge_and_the_future.mp3 -> ../.git/annex/objects/Gf/Xz/MD5E-s43519400--904e9ddb91333ea13f95a6b4ff8f8d40.mp3/MD5E-s43519400--904e9ddb91333ea13f95a6b4ff8f8d40.mp3 - │   │   ├── 2009_04_09__Gavin_Newsom__Cities_and_Time.mp3 -> ../.git/annex/objects/f2/F2/MD5E-s38952192--365330de9e1e4761efcb68c6bdf290cc.mp3/MD5E-s38952192--365330de9e1e4761efcb68c6bdf290cc.mp3 - │   │   ├── 2009_05_06__Michael_Pollan__Deep_Agriculture.mp3 -> ../.git/annex/objects/qw/M8/MD5E-s41937466--b6b0cc1ff73a5225568602d39ac33329.mp3/MD5E-s41937466--b6b0cc1ff73a5225568602d39ac33329.mp3 - │   │   ├── 2009_05_19__Paul_Romer__A_Theory_of_History__with_an_Application.mp3 -> ../.git/annex/objects/vV/Fj/MD5E-s24884522--a336743bfd486f32cd06a9f4d5174140.mp3/MD5E-s24884522--a336743bfd486f32cd06a9f4d5174140.mp3 - │   │   ├── 2009_07_29__Raoul_Adamchak__Pamela__Ronald__Organically_Grown_and_Genetically_Engineered__The_Food_of_the_Future.mp3 -> ../.git/annex/objects/z7/52/MD5E-s48321583--51e8af81b38616fe3ea7488cc25373e1.mp3/MD5E-s48321583--51e8af81b38616fe3ea7488cc25373e1.mp3 - │   │   ├── 2009_08_18__Wayne_Clough__Smithsonian_Forever.mp3 -> ../.git/annex/objects/94/kG/MD5E-s41569871--9baeb7c2bf1da2ed6a980d204e4023de.mp3/MD5E-s41569871--9baeb7c2bf1da2ed6a980d204e4023de.mp3 - │   │   ├── 2009_09_15__Arthur_Ganson__Machines_and_the_Breath_of_Time.mp3 -> ../.git/annex/objects/JM/10/MD5E-s42758965--ce3f08e2a1218c81245e8938346580e5.mp3/MD5E-s42758965--ce3f08e2a1218c81245e8938346580e5.mp3 - │   │   ├── 2009_10_10__Stewart_Brand__Rethinking_Green.mp3 -> ../.git/annex/objects/9z/GK/MD5E-s42844019--3807faf3e9e38be2bdcdf21ab6d3f42e.mp3/MD5E-s42844019--3807faf3e9e38be2bdcdf21ab6d3f42e.mp3 - │   │   ├── 2009_11_19__Sander_van_der_Leeuw__The_Archaeology_of_Innovation.mp3 -> ../.git/annex/objects/9X/Qx/MD5E-s43092078--95705a7333f36161a94e325b1704fb0c.mp3/MD5E-s43092078--95705a7333f36161a94e325b1704fb0c.mp3 - │   │   ├── 2009_12_05__Rick_Prelinger__Lost_Landscapes_of_San_Francisco_4.mp3 -> ../.git/annex/objects/vX/90/MD5E-s51277391--1be564edab148856aac1028b6f2c20fa.mp3/MD5E-s51277391--1be564edab148856aac1028b6f2c20fa.mp3 - │   │   ├── 2010_01_14__Wade_Davis__The_Wayfinders__Why_Ancient_Wisdom_Matters_in_the_Modern_World.mp3 -> ../.git/annex/objects/W4/Jg/MD5E-s52452101--4e4182a845fba5807cda7fe810cb0168.mp3/MD5E-s52452101--4e4182a845fba5807cda7fe810cb0168.mp3 - │   │   ├── 2010_02_01__Stewart_Brand__Brian_Eno__Alexander_Rose__Long_Finance__The_Enduring_Value_Conference.mp3 -> ../.git/annex/objects/v6/zQ/MD5E-s18998612--d741c1b6a72b0401840275199a54207a.mp3/MD5E-s18998612--d741c1b6a72b0401840275199a54207a.mp3 - │   │   ├── 2010_02_25__Alan__Weisman__World_Without_Us__World_With_Us.mp3 -> ../.git/annex/objects/4W/x4/MD5E-s49080388--37a333115c68557f49446de3957dc86c.mp3/MD5E-s49080388--37a333115c68557f49446de3957dc86c.mp3 - │   │   ├── 2010_03_05__Beth__Noveck__Transparent_Government.mp3 -> ../.git/annex/objects/QM/Mw/MD5E-s50401557--28b3f51b5717b6453efe8d53df40546b.mp3/MD5E-s50401557--28b3f51b5717b6453efe8d53df40546b.mp3 - │   │   ├── 2010_04_02__David__Eagleman__Six_Easy_Steps_to_Avert_the_Collapse_of_Civilization.mp3 -> ../.git/annex/objects/VP/40/MD5E-s49414129--e4e9022f6c48dbf7dcca5d5a68cb86d1.mp3/MD5E-s49414129--e4e9022f6c48dbf7dcca5d5a68cb86d1.mp3 - │   │   ├── 2010_05_04__Nils_Gilman__Deviant_Globalization.mp3 -> ../.git/annex/objects/22/K9/MD5E-s45481760--153c10e53d67e31177eeb7e91458613a.mp3/MD5E-s45481760--153c10e53d67e31177eeb7e91458613a.mp3 - │   │   ├── 2010_06_17__Ed_Moses__Clean_Fusion_Power_This_Decade.mp3 -> ../.git/annex/objects/Zz/50/MD5E-s47394968--b1ee685975bd0bbe6a7ffaa8e247c624.mp3/MD5E-s47394968--b1ee685975bd0bbe6a7ffaa8e247c624.mp3 - │   │   ├── 2010_07_13__Frank_Gavin__Five_Ways_to_Use_History_Well.mp3 -> ../.git/annex/objects/2F/Pf/MD5E-s48493156--c18df37154babd411ea0c301f21a1382.mp3/MD5E-s48493156--c18df37154babd411ea0c301f21a1382.mp3 - │   │   ├── 2010_07_28__Jesse_Schell__Visions_of_the_Gamepocalypse.mp3 -> ../.git/annex/objects/Zw/z7/MD5E-s52795836--96176ed7f2f9ffa7f9083f1e1b2cb73a.mp3/MD5E-s52795836--96176ed7f2f9ffa7f9083f1e1b2cb73a.mp3 - │   │   ├── 2010_08_03__Martin_Rees__Life_s_Future_in_the_Cosmos.mp3 -> ../.git/annex/objects/V1/62/MD5E-s47892757--a35b832b742f073a0aa6c3b854159e08.mp3/MD5E-s47892757--a35b832b742f073a0aa6c3b854159e08.mp3 - │   │   ├── 2010_10_16__Emily_Levine__Jill_Tarter__Long_Conversation_4_of_19.mp3 -> ../.git/annex/objects/4w/pv/MD5E-s9476457--18c26321e2077ceb7399d85c7eec713f.mp3/MD5E-s9476457--18c26321e2077ceb7399d85c7eec713f.mp3 - │   │   ├── 2010_10_16__Jem_Finer__Saul_Griffith__Long_Conversation_2_of_19.mp3 -> ../.git/annex/objects/v6/Zx/MD5E-s9442811--d2dafb668a8ce520bef4cc29901005b0.mp3/MD5E-s9442811--d2dafb668a8ce520bef4cc29901005b0.mp3 - │   │   ├── 2010_10_16__John_Perry_Barlow__Violet_Blue__Long_Conversation_7_of_19.mp3 -> ../.git/annex/objects/2f/jq/MD5E-s9667673--5b5d5d5b1a18c0efc0d84cafc4bb9f54.mp3/MD5E-s9667673--5b5d5d5b1a18c0efc0d84cafc4bb9f54.mp3 - │   │   ├── 2010_10_16__Robin_Sloan__Jill_Tarter__Long_Conversation_5_of_19.mp3 -> ../.git/annex/objects/W3/kG/MD5E-s9469561--39c2609234eb014e6d3f6f5e295ef683.mp3/MD5E-s9469561--39c2609234eb014e6d3f6f5e295ef683.mp3 - │   │   ├── 2010_10_16__Saul_Griffith__Emily_Levine__Long_Conversation_3_of_19.mp3 -> ../.git/annex/objects/92/0x/MD5E-s9409792--88de6be9e92d50465453e47c1db237f6.mp3/MD5E-s9409792--88de6be9e92d50465453e47c1db237f6.mp3 - │   │   ├── 2010_10_16__Stewart_Brand__Jem_Finer__Long_Conversation_1_of_19.mp3 -> ../.git/annex/objects/w0/JJ/MD5E-s10004339--4e5e697618cd7477c870bd8028def3b9.mp3/MD5E-s10004339--4e5e697618cd7477c870bd8028def3b9.mp3 - │   │   ├── 2010_10_16__Violet_Blue__Robin_Sloan__Long_Conversation_6_of_19.mp3 -> ../.git/annex/objects/53/XM/MD5E-s9431108--0eb687ef1c767ee7f3d3e315cd645dd4.mp3/MD5E-s9431108--0eb687ef1c767ee7f3d3e315cd645dd4.mp3 - │   │   ├── 2010_10_17__Danese_Cooper__Peter_Schwartz__Long_Conversation_13_of_19.mp3 -> ../.git/annex/objects/mp/7z/MD5E-s9472486--a92da9f65c8b2e442fd532adbb30258b.mp3/MD5E-s9472486--a92da9f65c8b2e442fd532adbb30258b.mp3 - │   │   ├── 2010_10_17__Jane_McGonigal__Tiffany_Shlain__Long_Conversation_18_of_19.mp3 -> ../.git/annex/objects/Z0/W3/MD5E-s9360473--ea1acd1011856e192491a28db4913c65.mp3/MD5E-s9360473--ea1acd1011856e192491a28db4913c65.mp3 - │   │   ├── 2010_10_17__John_Perry_Barlow__Ken_Wilson__Long_Conversation_8_of_19.mp3 -> ../.git/annex/objects/xk/9z/MD5E-s9439258--e3f82f8b94b5b7b03a7cafa9e0d1d8ee.mp3/MD5E-s9439258--e3f82f8b94b5b7b03a7cafa9e0d1d8ee.mp3 - │   │   ├── 2010_10_17__Katherine_Fulton__Paul_Hawken__Long_Conversation_16_of_19.mp3 -> ../.git/annex/objects/kx/5q/MD5E-s9297152--5e41d126ddf48e2c7fe3d553f3b94bd6.mp3/MD5E-s9297152--5e41d126ddf48e2c7fe3d553f3b94bd6.mp3 - │   │   ├── 2010_10_17__Ken_Foster__Pete_Worden__Long_Conversation_11_of_19.mp3 -> ../.git/annex/objects/3G/j8/MD5E-s9445946--908a10eba0b88de07a4dbffbfde71aaf.mp3/MD5E-s9445946--908a10eba0b88de07a4dbffbfde71aaf.mp3 - │   │   ├── 2010_10_17__Melissa_Alexander__Ken_Foster__Long_Conversation_10_of_19.mp3 -> ../.git/annex/objects/50/kV/MD5E-s9436124--f361c958b49638b8a71fb99082e29ddd.mp3/MD5E-s9436124--f361c958b49638b8a71fb99082e29ddd.mp3 - │   │   ├── 2010_10_17__Melissa_Alexander__Ken_Wilson__Long_Conversation_9_of_19.mp3 -> ../.git/annex/objects/KZ/xW/MD5E-s9457022--ba815a71c37f51fc0ff5ee10e8223a79.mp3/MD5E-s9457022--ba815a71c37f51fc0ff5ee10e8223a79.mp3 - │   │   ├── 2010_10_17__Paul_Hawken__Tiffany_Shlain__Long_Conversation_17_of_19.mp3 -> ../.git/annex/objects/6M/F9/MD5E-s9266223--db0298b9b88cc97032136384ad12885d.mp3/MD5E-s9266223--db0298b9b88cc97032136384ad12885d.mp3 - │   │   ├── 2010_10_17__Peter_Schwartz__Pete_Worden__Long_Conversation_12_of_19.mp3 -> ../.git/annex/objects/4P/9Q/MD5E-s9511774--0dd0c59e98010e514895e43c85ad773b.mp3/MD5E-s9511774--0dd0c59e98010e514895e43c85ad773b.mp3 - │   │   ├── 2010_10_17__Stewart_Brand__Jane_McGonigal__Long_Conversation_19_of_19.mp3 -> ../.git/annex/objects/xK/MP/MD5E-s8670214--0a85b1b4390586513472594c72b5b591.mp3/MD5E-s8670214--0a85b1b4390586513472594c72b5b591.mp3 - │   │   ├── 2010_10_17__Stuart_Candy__Danese_Cooper__Long_Conversation_14_of_19.mp3 -> ../.git/annex/objects/1q/KQ/MD5E-s9501743--c619ea9ce113f90c9b33d4c3a08aaac5.mp3/MD5E-s9501743--c619ea9ce113f90c9b33d4c3a08aaac5.mp3 - │   │   ├── 2010_10_17__Stuart_Candy__Katherine_Fulton__Long_Conversation_15_of_19.mp3 -> ../.git/annex/objects/5W/Gx/MD5E-s9459321--e85f8ba45323fb17afd345f800c4ebc4.mp3/MD5E-s9459321--e85f8ba45323fb17afd345f800c4ebc4.mp3 - │   │   ├── 2010_10_27__Lera_Boroditsky__How_Language_Shapes_Thought.mp3 -> ../.git/annex/objects/41/F2/MD5E-s51700574--effe1fe1607502fa383999f4eeac69f1.mp3/MD5E-s51700574--effe1fe1607502fa383999f4eeac69f1.mp3 - │   │   ├── 2010_11_16__Rachel_Sussman__The_World_s_Oldest_Living_Organisms.mp3 -> ../.git/annex/objects/f1/kV/MD5E-s32731915--db708bb3b63a2f5fcd7eb5587c1bf522.mp3/MD5E-s32731915--db708bb3b63a2f5fcd7eb5587c1bf522.mp3 - │   │   ├── 2010_12_17__Rick_Prelinger__Lost_Landscapes_of_San_Francisco__5.mp3 -> ../.git/annex/objects/pj/2X/MD5E-s42969616--089b5e5eaa9080929e7a54813548a33b.mp3/MD5E-s42969616--089b5e5eaa9080929e7a54813548a33b.mp3 - │   │   ├── 2011_01_19__Philip_K._Howard__Fixing_Broken_Government.mp3 -> ../.git/annex/objects/3X/K3/MD5E-s45375598--5928f520167e141ce253896e66b41e25.mp3/MD5E-s45375598--5928f520167e141ce253896e66b41e25.mp3 - │   │   ├── 2011_02_10__Mary_Catherine__Bateson__Live_Longer__Think_Longer.mp3 -> ../.git/annex/objects/x9/G7/MD5E-s42646325--4d0241a7a57d989207d58c66e6b2411e.mp3/MD5E-s42646325--4d0241a7a57d989207d58c66e6b2411e.mp3 - │   │   ├── 2011_03_23__Matt_Ridley__Deep_Optimism.mp3 -> ../.git/annex/objects/qx/KM/MD5E-s46637417--caa469567f89a71c39bc8edf5d090720.mp3/MD5E-s46637417--caa469567f89a71c39bc8edf5d090720.mp3 - │   │   ├── 2011_04_06__Alexander_Rose__Millennial_Precedent.mp3 -> ../.git/annex/objects/gG/j6/MD5E-s25385192--cc2f1618cacdc4ed56eb6a34882e1085.mp3/MD5E-s25385192--cc2f1618cacdc4ed56eb6a34882e1085.mp3 - │   │   ├── 2011_04_14__Ian_Morris__Why_the_West_Rules___For_Now.mp3 -> ../.git/annex/objects/WP/GG/MD5E-s47364875--fcfa97ffa1ff3645ebad632cdfc0d70f.mp3/MD5E-s47364875--fcfa97ffa1ff3645ebad632cdfc0d70f.mp3 - │   │   ├── 2011_05_04__Tim_Flannery__Here_on_Earth.mp3 -> ../.git/annex/objects/92/07/MD5E-s44075536--612c4562aaaeb3c7715080effb66de5f.mp3/MD5E-s44075536--612c4562aaaeb3c7715080effb66de5f.mp3 - │   │   ├── 2011_06_08__Carl_Zimmer__Viral_Time.mp3 -> ../.git/annex/objects/Jv/m7/MD5E-s44509796--612db92349df8406d4583a6880f98c2c.mp3/MD5E-s44509796--612db92349df8406d4583a6880f98c2c.mp3 - │   │   ├── 2011_06_28__Peter_Kareiva__Conservation_in_the_Real_World.mp3 -> ../.git/annex/objects/zw/J3/MD5E-s44001327--98121bd2a4f5e6ed6fcb4c169039dce5.mp3/MD5E-s44001327--98121bd2a4f5e6ed6fcb4c169039dce5.mp3 - │   │   ├── 2011_07_26__Geoffrey_B.__West__Why_Cities_Keep_on_Growing__Corporations_Always_Die__and_Life_Gets_Faster.mp3 -> ../.git/annex/objects/fF/J2/MD5E-s52373698--7dcb1c4bb3d236f5553761063739d89d.mp3/MD5E-s52373698--7dcb1c4bb3d236f5553761063739d89d.mp3 - │   │   ├── 2011_09_15__Timothy__Ferriss__Accelerated_Learning_in_Accelerated_Times.mp3 -> ../.git/annex/objects/Qk/mp/MD5E-s40890060--029f385ecc101872f7b1aeda889c1df5.mp3/MD5E-s40890060--029f385ecc101872f7b1aeda889c1df5.mp3 - │   │   ├── 2011_10_18__Laura_Cunningham__Ten_Millennia_of_California_Ecology.mp3 -> ../.git/annex/objects/zx/Qk/MD5E-s43835001--4c85fc36b55f7dd42f811eb6be8cfbc0.mp3/MD5E-s43835001--4c85fc36b55f7dd42f811eb6be8cfbc0.mp3 - │   │   ├── 2011_12_01__Brewster_Kahle__Universal_Access_to_All_Knowledge.mp3 -> ../.git/annex/objects/JP/xk/MD5E-s45496597--62fc4b4ca0e117a6c46e7f954d2162ee.mp3/MD5E-s45496597--62fc4b4ca0e117a6c46e7f954d2162ee.mp3 - │   │   ├── 2011_12_09__Rick_Prelinger__Lost_Landscapes_of_San_Francisco__6.mp3 -> ../.git/annex/objects/JZ/GW/MD5E-s39917469--2b3a6d2a8934afb8b9ee5bcfbb31875f.mp3/MD5E-s39917469--2b3a6d2a8934afb8b9ee5bcfbb31875f.mp3 - │   │   ├── 2012_01_18__Lawrence_Lessig__How_Money_Corrupts_Congress_and_a_Plan_to_Stop_It.mp3 -> ../.git/annex/objects/WK/Fg/MD5E-s44462775--d55e8f817bd8158d67f1bd70a1ee1581.mp3/MD5E-s44462775--d55e8f817bd8158d67f1bd70a1ee1581.mp3 - │   │   ├── 2012_02_23__Jim_Richardson__Heirlooms__Saving_Humanity_s_10_000_year_Legacy_of_Food.mp3 -> ../.git/annex/objects/z6/F0/MD5E-s41506132--bf9ebd2e5042073b198b6b5afabd0a13.mp3/MD5E-s41506132--bf9ebd2e5042073b198b6b5afabd0a13.mp3 - │   │   ├── 2012_03_07__Mark_Lynas__The_Nine_Planetary_Boundaries__Finessing_the_Anthropocene.mp3 -> ../.git/annex/objects/vf/mq/MD5E-s81470552--01a3a8d6e650fcc8746d81f940ba7ff9.mp3/MD5E-s81470552--01a3a8d6e650fcc8746d81f940ba7ff9.mp3 - │   │   ├── 2012_04_21__Edward_O._Wilson__The_Social_Conquest_of_Earth.mp3 -> ../.git/annex/objects/7J/7V/MD5E-s89075905--5189deb5e78f41a6d132d23726aa56b3.mp3/MD5E-s89075905--5189deb5e78f41a6d132d23726aa56b3.mp3 - │   │   ├── 2012_04_24__Charles_C._Mann__Living_in_the_Homogenocene__The_First_500_Years.mp3 -> ../.git/annex/objects/fP/z1/MD5E-s95778297--9a893bf229470a4eec9e6b0eceb7ab1f.mp3/MD5E-s95778297--9a893bf229470a4eec9e6b0eceb7ab1f.mp3 - │   │   ├── 2012_05_23__Susan_Freinkel__Eternal_Plastic__A_Toxic_Love_Story.mp3 -> ../.git/annex/objects/Q2/jj/MD5E-s80592838--30d6cb4b6715b3e2674a7e7fcd9c5d6b.mp3/MD5E-s80592838--30d6cb4b6715b3e2674a7e7fcd9c5d6b.mp3 - │   │   ├── 2012_06_06__Benjamin_Barber__If_Mayors_Ruled_the_World.mp3 -> ../.git/annex/objects/x6/8F/MD5E-s84650386--559a8f6710652900d53ebf2b99534c3e.mp3/MD5E-s84650386--559a8f6710652900d53ebf2b99534c3e.mp3 - │   │   ├── 2012_08_01__Cory_Doctorow__The_Coming_Century_of_War_Against_Your_Computer.mp3 -> ../.git/annex/objects/j2/Fv/MD5E-s85005651--da026b81a7bfc25c17800a394578111a.mp3/MD5E-s85005651--da026b81a7bfc25c17800a394578111a.mp3 - │   │   ├── 2012_08_21__Elaine_Pagels__The_Truth_About_the_Book_of_Revelations.mp3 -> ../.git/annex/objects/0Z/kj/MD5E-s72548378--e4af30147830994d467a193b0d384927.mp3/MD5E-s72548378--e4af30147830994d467a193b0d384927.mp3 - │   │   ├── 2012_09_06__Tim_O_Reilly__Birth_of_the_Global_Mind.mp3 -> ../.git/annex/objects/77/km/MD5E-s46167351--077cd2de0834c5a2f9286b9cd69dd4bb.mp3/MD5E-s46167351--077cd2de0834c5a2f9286b9cd69dd4bb.mp3 - │   │   ├── 2012_10_09__Steven_Pinker__The_Decline_of_Violence.mp3 -> ../.git/annex/objects/GG/G0/MD5E-s89857375--5ccc0db0d4736c32bc17b947166b9a64.mp3/MD5E-s89857375--5ccc0db0d4736c32bc17b947166b9a64.mp3 - │   │   ├── 2012_11_14__Lazar_Kunstmann__Jon_Lackman__Preservation_without_Permission__the_Paris_Urban_eXperiment.mp3 -> ../.git/annex/objects/8M/1F/MD5E-s90595602--0e48f5aea99195a5863ab399a3b831fe.mp3/MD5E-s90595602--0e48f5aea99195a5863ab399a3b831fe.mp3 - │   │   ├── 2012_11_29__Peter_Warshall__Enchanted_by_the_Sun__The_CoEvolution_of_Light__Life__and_Color_on_Earth.mp3 -> ../.git/annex/objects/84/xm/MD5E-s107329525--b61371474d7d07528f4e8085f1070c94.mp3/MD5E-s107329525--b61371474d7d07528f4e8085f1070c94.mp3 - │   │   ├── 2013_01_18__Terry_Hunt__Carl_Lipo__The_Statues_Walked____What_Really_Happened_on_Easter_Island.mp3 -> ../.git/annex/objects/jk/9P/MD5E-s96658492--058f0bbfd16b31274d46f971ff1caa40.mp3/MD5E-s96658492--058f0bbfd16b31274d46f971ff1caa40.mp3 - │   │   ├── 2013_02_20__Chris_Anderson__The_Makers_Revolution.mp3 -> ../.git/annex/objects/83/3K/MD5E-s86449484--677ff7685edadc7d176f8ca78a6a55be.mp3/MD5E-s86449484--677ff7685edadc7d176f8ca78a6a55be.mp3 - │   │   ├── 2013_03_20__George_Dyson__No_Time_Is_There____The_Digital_Universe_and_Why_Things_Appear_To_Be_Speeding_Up.mp3 -> ../.git/annex/objects/8q/2g/MD5E-s87774322--5de50b4cdbe3a9bf538ee0d2538fba23.mp3/MD5E-s87774322--5de50b4cdbe3a9bf538ee0d2538fba23.mp3 - │   │   ├── 2013_04_18__Nicholas_Negroponte__Beyond_Digital.mp3 -> ../.git/annex/objects/PM/jg/MD5E-s87892589--726bdc0f94428a3e8fd0ef2834d52d7b.mp3/MD5E-s87892589--726bdc0f94428a3e8fd0ef2834d52d7b.mp3 - │   │   ├── 2013_05_22__Stewart_Brand__Reviving_Extinct_Species.mp3 -> ../.git/annex/objects/FM/2P/MD5E-s86241770--1147873844d58acb74243566711f82ff.mp3/MD5E-s86241770--1147873844d58acb74243566711f82ff.mp3 - │   │   ├── 2013_06_19__Ed_Lu__Anthropocene_Astronomy__Thwarting_Dangerous_Asteroids_Begins_with_Finding_Them.mp3 -> ../.git/annex/objects/X9/WK/MD5E-s86241259--04aa4ade69c3d8b405604eabf1616669.mp3/MD5E-s86241259--04aa4ade69c3d8b405604eabf1616669.mp3 - │   │   ├── 2013_07_30__Craig_Childs__Apocalyptic_Planet__Field_Guide_to_the_Everending_Earth.mp3 -> ../.git/annex/objects/pX/XQ/MD5E-s91784054--1f64eab388dd02d4d4efb93c96b2049e.mp3/MD5E-s91784054--1f64eab388dd02d4d4efb93c96b2049e.mp3 - │   │   ├── 2013_08_14__Daniel_Kahneman__Thinking_Fast_and_Slow.mp3 -> ../.git/annex/objects/gj/x3/MD5E-s74446061--8b2d0315e593e786fed9e32b9217a118.mp3/MD5E-s74446061--8b2d0315e593e786fed9e32b9217a118.mp3 - │   │   ├── 2013_09_18__Peter_Schwartz__The_Starships_ARE_Coming.mp3 -> ../.git/annex/objects/Kz/k8/MD5E-s73486514--dcfaf4ba8dc980d54567af35f8cbdc61.mp3/MD5E-s73486514--dcfaf4ba8dc980d54567af35f8cbdc61.mp3 - │   │   ├── 2013_10_16__Adam_Steltzner__Beyond_Mars__Earth.mp3 -> ../.git/annex/objects/z6/Z8/MD5E-s86324693--5cede70c8306cb52a3281a815b00c73d.mp3/MD5E-s86324693--5cede70c8306cb52a3281a815b00c73d.mp3 - │   │   ├── 2013_11_19__Richard_Kurin__American_History_in_101_Objects.mp3 -> ../.git/annex/objects/kw/zX/MD5E-s78382378--b083d6653365b1173e05a924a028bfe6.mp3/MD5E-s78382378--b083d6653365b1173e05a924a028bfe6.mp3 - │   │   ├── 2014_01_22__Brian_Eno__Danny_Hillis__The_Long_Now__now.mp3 -> ../.git/annex/objects/pw/f8/MD5E-s107151421--9c9525903ac0f8fee03c98891ff107bf.mp3/MD5E-s107151421--9c9525903ac0f8fee03c98891ff107bf.mp3 - │   │   ├── 2014_03_25__Mariana_Mazzucato__The_Entrepreneurial_State__Debunking_Private_vs._Public_Sector_Myths.mp3 -> ../.git/annex/objects/4p/p1/MD5E-s141702671--41756f4d7441fcf2a4055671d5f849fa.mp3/MD5E-s141702671--41756f4d7441fcf2a4055671d5f849fa.mp3 - │   │   ├── 2014_04_23__Tony_Hsieh__Helping_Revitalize_a_City.mp3 -> ../.git/annex/objects/JQ/kZ/MD5E-s179833767--eac378f5b4b2e0c250de707a1489d8b6.mp3/MD5E-s179833767--eac378f5b4b2e0c250de707a1489d8b6.mp3 - │   │   ├── 2014_05_21__Sylvia_Earle__Tierney_Thys__Oceanic.mp3 -> ../.git/annex/objects/fF/83/MD5E-s184475755--69ce451ae52d66eb7358f243e12f626b.mp3/MD5E-s184475755--69ce451ae52d66eb7358f243e12f626b.mp3 - │   │   ├── 2014_06_11__Stefan_Kroepelin__Civilization_s_Mysterious_Desert_Cradle__Rediscovering_the_Deep_Sahara.mp3 -> ../.git/annex/objects/0w/Mq/MD5E-s190971120--52a6941ce882dfcbe64afc27086e0a22.mp3/MD5E-s190971120--52a6941ce882dfcbe64afc27086e0a22.mp3 - │   │   ├── 2014_07_17__Adrian_Hon__A_History_of_the_Future_in_100_Objects.mp3 -> ../.git/annex/objects/56/Ff/MD5E-s156378204--5a34e21202ad93f9f067c8dc2b01eae4.mp3/MD5E-s156378204--5a34e21202ad93f9f067c8dc2b01eae4.mp3 - │   │   ├── 2014_08_07__Anne_Neuberger__Inside_the_NSA.mp3 -> ../.git/annex/objects/q3/23/MD5E-s171490321--ff4bb70264b6d2901df6ff5ddea2812c.mp3/MD5E-s171490321--ff4bb70264b6d2901df6ff5ddea2812c.mp3 - │   │   ├── 2014_09_17__Drew_Endy__The_iGEM_Revolution.mp3 -> ../.git/annex/objects/34/86/MD5E-s184674213--6cc5729866306b61470c797a93658516.mp3/MD5E-s184674213--6cc5729866306b61470c797a93658516.mp3 - │   │   ├── 2014_10_21__Larry__Harvey__Why_The_Man_Keeps_Burning.mp3 -> ../.git/annex/objects/4F/Z2/MD5E-s175572374--30770ebfd8bb7e080cf6bc0b060d5199.mp3/MD5E-s175572374--30770ebfd8bb7e080cf6bc0b060d5199.mp3 - │   │   ├── 2014_11_13__Kevin_Kelly__Technium_Unbound.mp3 -> ../.git/annex/objects/wM/3J/MD5E-s168696055--b0a3de03b0dee86aef220c69afbe724c.mp3/MD5E-s168696055--b0a3de03b0dee86aef220c69afbe724c.mp3 - │   │   ├── 2015_01_14__Jesse_Ausubel__Nature_is_Rebounding__Land__and_Ocean_sparing_through_Concentrating_Human_Activities_.mp3 -> ../.git/annex/objects/G8/X9/MD5E-s182969926--4da5d9e915ab1355a192a50a8ce1c705.mp3/MD5E-s182969926--4da5d9e915ab1355a192a50a8ce1c705.mp3 - │   │   ├── 2015_01_28__Stewart_Brand__Paul_Saffo__Pace_Layers_Thinking.mp3 -> ../.git/annex/objects/Qk/9M/MD5E-s112801659--00a42a1a617485fb2c03cbf8482c905c.mp3/MD5E-s112801659--00a42a1a617485fb2c03cbf8482c905c.mp3 - │   │   ├── 2015_02_18__David_Keith__Patient_Geoengineering.mp3 -> ../.git/annex/objects/jP/f6/MD5E-s170263599--065ff4d75d52429c34bddd5f67120ad0.mp3/MD5E-s170263599--065ff4d75d52429c34bddd5f67120ad0.mp3 - │   │   ├── 2015_04_01__Paul_Saffo__The_Creator_Economy.mp3 -> ../.git/annex/objects/94/px/MD5E-s160513321--64acfebf9c35289964be38f3ef601e26.mp3/MD5E-s160513321--64acfebf9c35289964be38f3ef601e26.mp3 - │   │   ├── 2015_04_15__Michael_Shermer__The_Long_Arc_of_Moral_Progress.mp3 -> ../.git/annex/objects/p4/F5/MD5E-s166027315--61f21c609f4d4e5750311d6771e831f3.mp3/MD5E-s166027315--61f21c609f4d4e5750311d6771e831f3.mp3 - │   │   ├── 2015_05_12__Beth_Shapiro__How_to_Clone_a_Mammoth.mp3 -> ../.git/annex/objects/3j/QG/MD5E-s165653273--aa3dc7b40f643a16ed82a1c9a92ebfcd.mp3/MD5E-s165653273--aa3dc7b40f643a16ed82a1c9a92ebfcd.mp3 - │   │   ├── 2015_06_10__Neil_Gaiman__How_Stories_Last.mp3 -> ../.git/annex/objects/GV/Gk/MD5E-s197997269--22e1c4be81bb765f9e397dd21ad5d76c.mp3/MD5E-s197997269--22e1c4be81bb765f9e397dd21ad5d76c.mp3 - │   │   ├── 2015_07_23__Ramez_Naam__Enhancing_Humans__Advancing_Humanity.mp3 -> ../.git/annex/objects/KW/VF/MD5E-s166849971--52801b85ad0c5bf8e847ef99d357903e.mp3/MD5E-s166849971--52801b85ad0c5bf8e847ef99d357903e.mp3 - │   │   ├── 2015_08_11__Sara_Seager__Other_Earths._Other_Life..mp3 -> ../.git/annex/objects/VV/kF/MD5E-s156916472--0c1828cf8340e98f6223f690da98fd5f.mp3/MD5E-s156916472--0c1828cf8340e98f6223f690da98fd5f.mp3 - │   │   ├── 2015_09_22__Saul_Griffith__Infrastructure_and_Climate_Change.mp3 -> ../.git/annex/objects/87/71/MD5E-s195384162--511d8270410a2bb3e87c0e3e3c6794da.mp3/MD5E-s195384162--511d8270410a2bb3e87c0e3e3c6794da.mp3 - │   │   ├── 2015_10_07__James_Fallows__Civilization_s_Infrastructure.mp3 -> ../.git/annex/objects/4f/3w/MD5E-s156410607--4e9e26bfd876c1c9977d8d60b8140975.mp3/MD5E-s156410607--4e9e26bfd876c1c9977d8d60b8140975.mp3 - │   │   ├── 2015_10_28__Andy_Weir__The_Red_Planet_for_Real.mp3 -> ../.git/annex/objects/xq/Q3/MD5E-s136924472--0d1072105caa56475df9037670d35a06.mp3/MD5E-s136924472--0d1072105caa56475df9037670d35a06.mp3 - │   │   ├── 2015_11_24__Philip_Tetlock__Superforecasting.mp3 -> ../.git/annex/objects/9G/9v/MD5E-s182555547--7757d1c89d3001c65288ad9f43d4a4be.mp3/MD5E-s182555547--7757d1c89d3001c65288ad9f43d4a4be.mp3 - │   │   ├── 2016_01_12__Eric_Cline__1177_B.C.__When_Civilization_Collapsed.mp3 -> ../.git/annex/objects/0J/pq/MD5E-s168749837--d2e5da36ecb594f387960b17b09554dd.mp3/MD5E-s168749837--d2e5da36ecb594f387960b17b09554dd.mp3 - │   │   ├── 2016_02_10__Stephen_Pyne__Fire_Slow__Fire_Fast__Fire_Deep.mp3 -> ../.git/annex/objects/Kx/jg/MD5E-s162531687--cd85c028e1eb207c6547911bda61301e.mp3/MD5E-s162531687--cd85c028e1eb207c6547911bda61301e.mp3 - │   │   ├── 2016_03_15__Jane_Langdale__Radical_Ag__C4_Rice_and_Beyond.mp3 -> ../.git/annex/objects/Wm/MF/MD5E-s168613715--2bd5923209cdd874ed13e9715d4d2929.mp3/MD5E-s168613715--2bd5923209cdd874ed13e9715d4d2929.mp3 - │   │   ├── 2016_04_12__Priyamvada_Natarajan__Solving_Dark_Matter_and_Dark_Energy.mp3 -> ../.git/annex/objects/gq/Fm/MD5E-s176254449--92dae15789656059ce96d3ec20bb748d.mp3/MD5E-s176254449--92dae15789656059ce96d3ec20bb748d.mp3 - │   │   ├── 2016_05_03__Walter_Mischel__The_Marshmallow_Test__Mastering_Self_Control.mp3 -> ../.git/annex/objects/vF/pj/MD5E-s166936767--dd72342ec038b17500b936b8c9d777b1.mp3/MD5E-s166936767--dd72342ec038b17500b936b8c9d777b1.mp3 - │   │   ├── 2016_06_21__Brian_Christian__Algorithms_to_Live_By.mp3 -> ../.git/annex/objects/mx/J3/MD5E-s174158979--a50d6f35f6e13a23065867b1e42eadda.mp3/MD5E-s174158979--a50d6f35f6e13a23065867b1e42eadda.mp3 - │   │   ├── 2016_07_15__Kevin_Kelly__The_Next_30_Digital_Years.mp3 -> ../.git/annex/objects/9m/Zx/MD5E-s174534089--900618e750c9b9b5e57f652c423efea7.mp3/MD5E-s174534089--900618e750c9b9b5e57f652c423efea7.mp3 - │   │   ├── 2016_08_10__Seth_Lloyd__Quantum_Computer_Reality.mp3 -> ../.git/annex/objects/ZX/WK/MD5E-s201423004--9403a511f3ad738dc42a0ad6a8440aea.mp3/MD5E-s201423004--9403a511f3ad738dc42a0ad6a8440aea.mp3 - │   │   ├── 2016_09_21__Jonathan_Rose__The_Well_Tempered_City.mp3 -> ../.git/annex/objects/z5/W9/MD5E-s161741565--153dc36d867ec7f0f26183e37745cc38.mp3/MD5E-s161741565--153dc36d867ec7f0f26183e37745cc38.mp3 - │   │   ├── 2016_10_05__David__Eagleman__The_Brain_and_The_Now.mp3 -> ../.git/annex/objects/JV/w9/MD5E-s155774650--56d0b7d2bca16824be058fd25f5c7a15.mp3/MD5E-s155774650--56d0b7d2bca16824be058fd25f5c7a15.mp3 - │   │   ├── 2016_11_02__Douglas_Coupland__The_Extreme_Present.mp3 -> ../.git/annex/objects/Xm/6Z/MD5E-s172600006--32acef04f8b58153bf1434edb1a741e8.mp3/MD5E-s172600006--32acef04f8b58153bf1434edb1a741e8.mp3 - │   │   ├── 2017_01_05__Steven_Johnson__Wonderland__How_Play_Made_the_Modern_World.mp3 -> ../.git/annex/objects/Mw/gm/MD5E-s80569546--de84318c92b770bb1e0dc0e9c79d010a.mp3/MD5E-s80569546--de84318c92b770bb1e0dc0e9c79d010a.mp3 - │   │   ├── 2017_02_02__Jennifer_Pahlka__Fixing_Government__Bottom_Up_and_Outside_In.mp3 -> ../.git/annex/objects/4V/f1/MD5E-s81727806--bdaaf0beaecb3d48faf03ee16910e1e0.mp3/MD5E-s81727806--bdaaf0beaecb3d48faf03ee16910e1e0.mp3 - │   │   ├── 2017_03_14__Bjorn_Lomborg__From_Feel_Good_to_High_Yield_Good__How_to_Improve_Philanthropy_and_Aid.mp3 -> ../.git/annex/objects/wq/PQ/MD5E-s86688795--606cb9164513540d490e69f29222262c.mp3/MD5E-s86688795--606cb9164513540d490e69f29222262c.mp3 - │   │   ├── 2017_04_11__Frank_Ostaseski__What_the_Dying_Teach_the_Living.mp3 -> ../.git/annex/objects/Zq/8W/MD5E-s89099723--11a669a750a21c7eb514197f37ad75e9.mp3/MD5E-s89099723--11a669a750a21c7eb514197f37ad75e9.mp3 - │   │   ├── 2017_05_24__Geoffrey_B.__West__The_Universal_Laws_of_Growth_and_Pace.mp3 -> ../.git/annex/objects/5J/x7/MD5E-s90562186--600aa6cdcdf02f76b329e36c449d1890.mp3/MD5E-s90562186--600aa6cdcdf02f76b329e36c449d1890.mp3 - │   │   ├── 2017_06_06__James_Gleick__Time_Travel.mp3 -> ../.git/annex/objects/63/W6/MD5E-s77545131--e60156ee3c7c9603242132e219be1f4b.mp3/MD5E-s77545131--e60156ee3c7c9603242132e219be1f4b.mp3 - │   │   ├── 2017_07_25__Carolyn_Porco__Searching_for_Life_in_the_Solar_System.mp3 -> ../.git/annex/objects/10/zj/MD5E-s82300411--186d9eec6161ab40e9af452096ef7f27.mp3/MD5E-s82300411--186d9eec6161ab40e9af452096ef7f27.mp3 - │   │   ├── 2017_08_08__Nicky_Case__Seeing_Whole_Systems.mp3 -> ../.git/annex/objects/Jk/13/MD5E-s75623278--43b4511266b274941b1e04d6171bf5a9.mp3/MD5E-s75623278--43b4511266b274941b1e04d6171bf5a9.mp3 - │   │   ├── 2017_09_07__David_Grinspoon__Earth_in_Human_Hands.mp3 -> ../.git/annex/objects/kM/qP/MD5E-s88205668--ac9ce1a1f470e4b099bfdc55153441a5.mp3/MD5E-s88205668--ac9ce1a1f470e4b099bfdc55153441a5.mp3 - │   │   ├── 2017_10_31__Renee_Wegrzyn__Engineering_Gene_Safety.mp3 -> ../.git/annex/objects/jf/jw/MD5E-s78319976--f959ab3b948f2867047b8331a342bd5e.mp3/MD5E-s78319976--f959ab3b948f2867047b8331a342bd5e.mp3 - │   │   ├── 2017_11_21__Elena_Bennett__Seeds_of_a_Good_Anthropocene.mp3 -> ../.git/annex/objects/kg/k7/MD5E-s76108280--a8be6219ec6235aacd5e9a0f82c4ab72.mp3/MD5E-s76108280--a8be6219ec6235aacd5e9a0f82c4ab72.mp3 - │   │   ├── 2018_01_23__Charles_C._Mann__The_Wizard_and_the_Prophet.mp3 -> ../.git/annex/objects/gV/2g/MD5E-s84495848--cb4ba9bcc69428b9c2af19253ffa6887.mp3/MD5E-s84495848--cb4ba9bcc69428b9c2af19253ffa6887.mp3 - │   │   ├── 2018_02_27__Michael_Frachetti__Open_Source_Civilization_and_the_Unexpected_Origins_of_the_Silk_Road.mp3 -> ../.git/annex/objects/XM/0x/MD5E-s85021110--aaa6c8b425d5e9a17ccc53992762edbd.mp3/MD5E-s85021110--aaa6c8b425d5e9a17ccc53992762edbd.mp3 - │   │   ├── 2018_03_14__Steven_Pinker__A_New_Enlightenment.mp3 -> ../.git/annex/objects/8g/QQ/MD5E-s89003796--68f193cb6694a5f67b6626ad36dde41b.mp3/MD5E-s89003796--68f193cb6694a5f67b6626ad36dde41b.mp3 - │   │   ├── 2018_04_24__Kishore_Mahbubani__Has_the_West_Lost_It__Can_Asia_Save_It_.mp3 -> ../.git/annex/objects/Mw/g2/MD5E-s87684607--9611eccff43298ab4dd449b44989e9d5.mp3/MD5E-s87684607--9611eccff43298ab4dd449b44989e9d5.mp3 - │   │   ├── 2018_05_23__Benjamin_Grant__Overview__Earth_and_Civilization_in_the_Macroscope.mp3 -> ../.git/annex/objects/1g/M4/MD5E-s79235114--71f660d39d3b26237fc1d4dfcc408807.mp3/MD5E-s79235114--71f660d39d3b26237fc1d4dfcc408807.mp3 - │   │   ├── 2018_06_20__Chris_D._Thomas__Are_We_Initiating_The_Great_Anthropocene_Speciation_Event_.mp3 -> ../.git/annex/objects/Q3/GG/MD5E-s96942126--858b79003a2ca30585bca92be9406a99.mp3/MD5E-s96942126--858b79003a2ca30585bca92be9406a99.mp3 - │   │   ├── 2018_07_17__George_P._Shultz__Perspective.mp3 -> ../.git/annex/objects/vP/X3/MD5E-s60777923--101de7976f2838d1fdcf6cecd61ab251.mp3/MD5E-s60777923--101de7976f2838d1fdcf6cecd61ab251.mp3 - │   │   ├── 2018_08_07__Juan_Benet__Long_Term_Info_structure.mp3 -> ../.git/annex/objects/VK/MW/MD5E-s85943250--b2ecc137d9a3af8f6d896dbdbe701d52.mp3/MD5E-s85943250--b2ecc137d9a3af8f6d896dbdbe701d52.mp3 - │   │   ├── 2018_09_13__Julia_Galef__Soldiers_and_Scouts__Why_our_minds_weren_t_built_for_truth__and_how_we_can_change_that.mp3 -> ../.git/annex/objects/WX/8M/MD5E-s89370057--e87762ffdbbc65db32510e07e77a1ce4.mp3/MD5E-s89370057--e87762ffdbbc65db32510e07e77a1ce4.mp3 - │   │   ├── 2018_10_14__Stewart_Brand__Whole_Earth_Catalog_50th_Anniversary_Celebration.mp3 -> ../.git/annex/objects/z6/wQ/MD5E-s115945335--38cc657ccb8d90e81ed21ca6b292ecb6.mp3/MD5E-s115945335--38cc657ccb8d90e81ed21ca6b292ecb6.mp3 - │   │   ├── 2018_10_30__Mary_Lou_Jepsen__Toward_Practical_Telepathy.mp3 -> ../.git/annex/objects/4P/Xp/MD5E-s86742084--7765ff07107b4ef3c1ffb52a7d73028a.mp3/MD5E-s86742084--7765ff07107b4ef3c1ffb52a7d73028a.mp3 - │   │   ├── 2018_11_20__Niall_Ferguson__Networks_and_Power.mp3 -> ../.git/annex/objects/VM/0k/MD5E-s87074723--e9733eb2b0bd63e94b7cf7a6591d59b5.mp3/MD5E-s87074723--e9733eb2b0bd63e94b7cf7a6591d59b5.mp3 - │   │   ├── 2019_01_15__Martin_Rees__Prospects_for_Humanity.mp3 -> ../.git/annex/objects/Wv/vQ/MD5E-s81528228--e45354635d0f1d31fb391faacbc02991.mp3/MD5E-s81528228--e45354635d0f1d31fb391faacbc02991.mp3 - │   │   ├── 2019_02_26__John_Brockman__Possible_Minds.mp3 -> ../.git/annex/objects/q4/pV/MD5E-s92555373--ee1d1bdc7db0e215cc050b5f09630914.mp3/MD5E-s92555373--ee1d1bdc7db0e215cc050b5f09630914.mp3 - │   │   ├── 2019_03_14__Chip_Conley__The_Modern_Elder_and_the_Intergenerational_Workplace.mp3 -> ../.git/annex/objects/G0/Q8/MD5E-s81116955--846510b4da3fe44142bc148cc846995c.mp3/MD5E-s81116955--846510b4da3fe44142bc148cc846995c.mp3 - │   │   ├── 2019_04_03__Jeff_Goodell__The_Water_Will_Come.mp3 -> ../.git/annex/objects/z9/mj/MD5E-s81609177--29179b225f5804ffaf728d0d1cca652d.mp3/MD5E-s81609177--29179b225f5804ffaf728d0d1cca652d.mp3 - │   │   ├── 2019_05_05__Ian_McEwan__Machines_Like_Me.mp3 -> ../.git/annex/objects/5j/70/MD5E-s93248590--de4c82e013b31cdf69f85dc9d8c63141.mp3/MD5E-s93248590--de4c82e013b31cdf69f85dc9d8c63141.mp3 - │   │   ├── 2019_06_05__David_Byrne__Good_News___Sleeping_Beauties.mp3 -> ../.git/annex/objects/p4/Xf/MD5E-s87222771--1fdbc58fcb72d7721a032a62929bef1d.mp3/MD5E-s87222771--1fdbc58fcb72d7721a032a62929bef1d.mp3 - │   │   └── 2019_06_25__Mariana_Mazzucato__Rethinking_Value.mp3 -> ../.git/annex/objects/ZX/20/MD5E-s86261109--936051776c8074e90e99f9de9c2ea818.mp3/MD5E-s86261109--936051776c8074e90e99f9de9c2ea818.mp3 + │   │   ├── 2003_11_15__Brian_Eno__The_Long_Now.mp3 -> ../.git/annex/objects/wM/Pp/✂/MD5E-s37400577--d2608f34✂MD5.mp3 + │   │   ├── 2003_12_13__Peter_Schwartz__The_Art_Of_The_Really_Long_View.mp3 -> ../.git/annex/objects/9G/kv/✂/MD5E-s60647011--bb4bece3✂MD5.mp3 + │   │   ├── 2004_01_10__George_Dyson__There_s_Plenty_of_Room_at_the_Top__Long_term_Thinking_About_Large_scale_Computing.mp3 -> ../.git/annex/objects/9g/Mw/✂/MD5E-s43592996--65d7e0dd✂MD5.mp3 + │   │   ├── 2004_02_14__James_Dewar__Long_term_Policy_Analysis.mp3 -> ../.git/annex/objects/vz/2x/✂/MD5E-s33341653--b4af70a2✂MD5.mp3 + │   │   ├── 2004_03_13__Rusty_Schweickart__The_Asteroid_Threat_Over_the_Next_100_000_Years.mp3 -> ../.git/annex/objects/6z/QM/✂/MD5E-s43829532--bfc1ea14✂MD5.mp3 + │   │   ├── 2004_04_10__Daniel_Janzen__Third_World_Conservation__It_s_ALL_Gardening.mp3 -> ../.git/annex/objects/Wz/Wv/✂/MD5E-s40902765--879848c8✂MD5.mp3 + │   │   ├── 2004_05_15__David_Rumsey__Mapping_Time.mp3 -> ../.git/annex/objects/xV/zW/✂/MD5E-s48573955--b15b5759✂MD5.mp3 + │   │   ├── 2004_06_12__Bruce_Sterling__The_Singularity__Your_Future_as_a_Black_Hole.mp3 -> ../.git/annex/objects/XX/6Q/✂/MD5E-s47082293--a1fee274✂MD5.mp3 + │   │   ├── 2004_07_10__Jill_Tarter__The_Search_for_Extra_terrestrial_Intelligence__Necessarily_a_Long_term_Strategy.mp3 -> ../.git/annex/objects/JZ/9Z/✂/MD5E-s39026026--5b1cfe3b✂MD5.mp3 + │   │   ├── 2004_08_14__Phillip_Longman__The_Depopulation_Problem.mp3 -> ../.git/annex/objects/mj/2W/✂/MD5E-s29912301--05fd6bf6✂MD5.mp3 + │   │   ├── 2004_09_11__Danny_Hillis__Progress_on_the_10_000_year_Clock.mp3 -> ../.git/annex/objects/J1/9Z/✂/MD5E-s32394149--a6b80e97✂MD5.mp3 + │   │   ├── 2004_10_16__Paul_Hawken__The_Long_Green.mp3 -> ../.git/annex/objects/Km/pg/✂/MD5E-s38341709--e22fcde7✂MD5.mp3 + │   │   ├── 2004_11_13__Michael_West__The_Prospects_of_Human_Life_Extension.mp3 -> ../.git/annex/objects/4v/qp/✂/MD5E-s40719691--8745bc06✂MD5.mp3 + │   │   ├── 2004_12_04__Ken_Dychtwald__The_Consequences_of_Human_Life_Extension.mp3 -> ../.git/annex/objects/V9/07/✂/MD5E-s60009557--1761225d✂MD5.mp3 + │   │   ├── 2005_01_15__James_Carse__Religious_War_In_Light_of_the_Infinite_Game.mp3 -> ../.git/annex/objects/W6/1z/✂/MD5E-s42159493--02cfb776✂MD5.mp3 + │   │   ├── 2005_02_26__Roger_Kennedy__The_Political_History_of_North_America_from_25_000_BC_to_12_000_AD.mp3 -> ../.git/annex/objects/jK/J4/✂/MD5E-s40927311--8bc53f94✂MD5.mp3 + │   │   ├── 2005_03_12__Spencer_Beebe__Very_Long_term_Very_Large_scale_Biomimicry.mp3 -> ../.git/annex/objects/8v/XM/✂/MD5E-s36572151--b606f5cf✂MD5.mp3 + │   │   ├── 2005_04_09__Stewart_Brand__Cities___Time.mp3 -> ../.git/annex/objects/2x/w6/✂/MD5E-s39295836--2a112247✂MD5.mp3 + │   │   ├── 2005_06_11__Robert_Neuwirth__The_21st_Century_Medieval_City.mp3 -> ../.git/annex/objects/Vp/q8/✂/MD5E-s38550688--05ad0ff6✂MD5.mp3 + │   │   ├── 2005_07_16__Jared_Diamond__How_Societies_Fail_And_Sometimes_Succeed.mp3 -> ../.git/annex/objects/Q2/mw/✂/MD5E-s34753748--d1fa4290✂MD5.mp3 + │   │   ├── 2005_08_13__Robert_Fuller__Patient_Revolution__Human_Rights_Past_and_Future.mp3 -> ../.git/annex/objects/X8/05/✂/MD5E-s29838138--80c496ec✂MD5.mp3 + │   │   ├── 2005_09_24__Ray_Kurzweil__Kurzweil_s_Law.mp3 -> ../.git/annex/objects/Xp/Pp/✂/MD5E-s51068756--1a8e1b9b✂MD5.mp3 + │   │   ├── 2005_10_06__Esther_Dyson__Freeman_Dyson__George_Dyson__The_Difficulty_of_Looking_Far_Ahead.mp3 -> ../.git/annex/objects/Xp/qX/✂/MD5E-s45116431--b98b672e✂MD5.mp3 + │   │   ├── 2005_11_15__Clay_Shirky__Making_Digital_Durable__What_Time_Does_to_Categories.mp3 -> ../.git/annex/objects/xq/9M/✂/MD5E-s46629230--1d82c368✂MD5.mp3 + │   │   ├── 2005_12_10__Sam_Harris__The_View_from_the_End_of_the_World.mp3 -> ../.git/annex/objects/4F/8G/✂/MD5E-s39843853--a8f7cac6✂MD5.mp3 + │   │   ├── 2006_01_14__Ralph_Cavanagh__Peter_Schwartz__Nuclear_Power__Climate_Change_and_the_Next_10_000_Years.mp3 -> ../.git/annex/objects/gp/v0/✂/MD5E-s49219891--b4d50f8e✂MD5.mp3 + │   │   ├── 2006_02_14__Stephen_Lansing__Perfect_Order__A_Thousand_Years_in_Bali.mp3 -> ../.git/annex/objects/vg/K9/✂/MD5E-s38414621--c24195b1✂MD5.mp3 + │   │   ├── 2006_03_11__Kevin_Kelly__The_Next_100_Years_of_Science__Long_term_Trends_in_the_Scientific_Method..mp3 -> ../.git/annex/objects/wW/jJ/✂/MD5E-s37249410--e92bb840✂MD5.mp3 + │   │   ├── 2006_04_15__Jimmy_Wales__Vision__Wikipedia_and_the_Future_of_Free_Culture.mp3 -> ../.git/annex/objects/PJ/Mw/✂/MD5E-s36694097--fbe81b64✂MD5.mp3 + │   │   ├── 2006_05_13__Chris_Anderson__Will_Hearst__The_Long_Time_Tail.mp3 -> ../.git/annex/objects/Z4/WZ/✂/MD5E-s42929386--cbf6f31c✂MD5.mp3 + │   │   ├── 2006_06_27__Brian_Eno__Will_Wright__Playing_with_Time.mp3 -> ../.git/annex/objects/3z/MW/✂/MD5E-s48120641--c7794df5✂MD5.mp3 + │   │   ├── 2006_07_15__John_Rendon__Long_term_Policy_to_Make_the_War_on_Terror_Short.mp3 -> ../.git/annex/objects/Zg/px/✂/MD5E-s43093884--5dd1d00e✂MD5.mp3 + │   │   ├── 2006_09_23__Orville_Schell__China_Thinks_Long_term__But_Can_It_Relearn_to_Act_Long_term_.mp3 -> ../.git/annex/objects/6z/G6/✂/MD5E-s42977502--05ea8ed6✂MD5.mp3 + │   │   ├── 2006_10_14__John_Baez__Zooming_Out_in_Time.mp3 -> ../.git/annex/objects/z6/Gf/✂/MD5E-s39220210--335e92a4✂MD5.mp3 + │   │   ├── 2006_11_04__Larry_Brilliant__Katherine_Fulton__Richard_Rockefeller__The_Deeper_News_About_the_New_Philanthropy.mp3 -> ../.git/annex/objects/mZ/Jk/✂/MD5E-s48439808--37ffbb96✂MD5.mp3 + │   │   ├── 2006_12_01__Philip_Rosedale___Second_Life___What_Do_We_Learn_If_We_Digitize_EVERYTHING_.mp3 -> ../.git/annex/objects/58/9v/✂/MD5E-s41936130--6fbaabb4✂MD5.mp3 + │   │   ├── 2007_01_27__Philip_Tetlock__Why_Foxes_Are_Better_Forecasters_Than_Hedgehogs.mp3 -> ../.git/annex/objects/Fm/vG/✂/MD5E-s35425777--3dc81719✂MD5.mp3 + │   │   ├── 2007_02_16__Vernor_Vinge__What_If_the_Singularity_Does_NOT_Happen_.mp3 -> ../.git/annex/objects/W8/x8/✂/MD5E-s43975374--1975e476✂MD5.mp3 + │   │   ├── 2007_03_10__Brian_Fagan__We_Are_Not_the_First_to_Suffer_Through_Climate_Change.mp3 -> ../.git/annex/objects/12/Mx/✂/MD5E-s38065175--afd87616✂MD5.mp3 + │   │   ├── 2007_04_28__Frans_Lanting__Life_s_Journey_Through_Time.mp3 -> ../.git/annex/objects/Wx/73/✂/MD5E-s8150366--fc261d92✂MD5.mp3 + │   │   ├── 2007_05_12__Steven_Johnson__The_Long_Zoom.mp3 -> ../.git/annex/objects/03/2F/✂/MD5E-s41751799--795eca05✂MD5.mp3 + │   │   ├── 2007_06_09__Paul_Hawken__The_New_Great_Transformation.mp3 -> ../.git/annex/objects/qQ/qG/✂/MD5E-s34334254--8198f0c4✂MD5.mp3 + │   │   ├── 2007_06_29__Francis_Fukuyama___The_End_of_History__Revisited.mp3 -> ../.git/annex/objects/zQ/p8/✂/MD5E-s86957701--807d990c✂MD5.mp3 + │   │   ├── 2007_08_18__Alex_Wright__Glut__Mastering_Information_Though_the_Ages.mp3 -> ../.git/annex/objects/Vq/9V/✂/MD5E-s44370724--9d6858d4✂MD5.mp3 + │   │   ├── 2007_09_15__Rip_Anderson__Gwyneth_Cravens__Power_to_Save_the_World.mp3 -> ../.git/annex/objects/g3/G9/✂/MD5E-s49475888--bfcea295✂MD5.mp3 + │   │   ├── 2007_10_13__Juan_Enriquez__Mapping_the_Frontier_of_Knowledge.mp3 -> ../.git/annex/objects/Gx/qM/✂/MD5E-s42612152--ee5ee162✂MD5.mp3 + │   │   ├── 2007_11_10__Rosabeth_Moss_Kanter__Enduring_Principles_for_Changing_Times.mp3 -> ../.git/annex/objects/2v/2X/✂/MD5E-s38669105--d8a95dfe✂MD5.mp3 + │   │   ├── 2007_12_15__Joline_Blais__Jon_Ippolito__At_the_Edge_of_Art.mp3 -> ../.git/annex/objects/PJ/ZM/✂/MD5E-s41049161--f891ff0d✂MD5.mp3 + │   │   ├── 2008_01_12__Paul_Saffo__Embracing_Uncertainty__the_secret_to_effective_forecasting.mp3 -> ../.git/annex/objects/P6/mP/✂/MD5E-s40854207--48b54c45✂MD5.mp3 + │   │   ├── 2008_02_05__Nassim_Nicholas_Taleb__The_Future_Has_Always_Been_Crazier_Than_We_Thought.mp3 -> ../.git/annex/objects/64/jW/✂/MD5E-s41992520--969a1f38✂MD5.mp3 + │   │   ├── 2008_02_26__Craig_Venter__Joining_3.5_Billion_Years_of_Microbial_Invention.mp3 -> ../.git/annex/objects/Xw/xF/✂/MD5E-s52243794--c86611f7✂MD5.mp3 + │   │   ├── 2008_04_29__Niall_Ferguson__Peter_Schwartz__Historian_vs._Futurist_on_Human_Progress.mp3 -> ../.git/annex/objects/Mj/XX/✂/MD5E-s48909656--f58ec5f7✂MD5.mp3 + │   │   ├── 2008_05_22__Iqbal_Quadir__Technology_Empowers_the_Poorest.mp3 -> ../.git/annex/objects/K1/02/✂/MD5E-s35922583--3baf5c9a✂MD5.mp3 + │   │   ├── 2008_06_28__Paul_Ehrlich__The_Dominant_Animal__Human_Evolution_and_the_Environment.mp3 -> ../.git/annex/objects/vG/Z5/✂/MD5E-s42323632--32b03361✂MD5.mp3 + │   │   ├── 2008_07_24__Edward_Burtynsky__The_10_000_year_Gallery.mp3 -> ../.git/annex/objects/42/K7/✂/MD5E-s53695042--968062aa✂MD5.mp3 + │   │   ├── 2008_08_09__Daniel_Suarez__Daemon__Bot_mediated_Reality.mp3 -> ../.git/annex/objects/80/90/✂/MD5E-s37685881--1d0d983c✂MD5.mp3 + │   │   ├── 2008_09_09__Neal_Stephenson__ANATHEM_Book_Launch_Event.mp3 -> ../.git/annex/objects/4g/Xk/✂/MD5E-s9437542--f8a813f2✂MD5.mp3 + │   │   ├── 2008_09_13__Peter_Diamandis__Long_term_X_Prizes.mp3 -> ../.git/annex/objects/XM/mM/✂/MD5E-s35501727--75557409✂MD5.mp3 + │   │   ├── 2008_10_04__Huey_Johnson__Green_Planning_at_Nation_Scale.mp3 -> ../.git/annex/objects/X0/mv/✂/MD5E-s42050106--0274dc24✂MD5.mp3 + │   │   ├── 2008_11_18__Drew_Endy__Jim_Thomas__Synthetic_Biology_Debate.mp3 -> ../.git/annex/objects/mk/f0/✂/MD5E-s59629253--53cd8eb8✂MD5.mp3 + │   │   ├── 2008_12_20__Rick_Prelinger__Lost_Landscapes_of_San_Francisco.mp3 -> ../.git/annex/objects/qv/2j/✂/MD5E-s45891041--a4157f90✂MD5.mp3 + │   │   ├── 2009_01_17__Saul_Griffith__Climate_Change_Recalculated.mp3 -> ../.git/annex/objects/89/FG/✂/MD5E-s46528544--da4aa82f✂MD5.mp3 + │   │   ├── 2009_02_14__Dmitry_Orlov__Social_Collapse_Best_Practices.mp3 -> ../.git/annex/objects/xw/Z8/✂/MD5E-s42143599--53162f6b✂MD5.mp3 + │   │   ├── 2009_03_21__Daniel_Everett__Endangered_languages__lost_knowledge_and_the_future.mp3 -> ../.git/annex/objects/Gf/Xz/✂/MD5E-s43519400--904e9ddb✂MD5.mp3 + │   │   ├── 2009_04_09__Gavin_Newsom__Cities_and_Time.mp3 -> ../.git/annex/objects/f2/F2/✂/MD5E-s38952192--365330de✂MD5.mp3 + │   │   ├── 2009_05_06__Michael_Pollan__Deep_Agriculture.mp3 -> ../.git/annex/objects/qw/M8/✂/MD5E-s41937466--b6b0cc1f✂MD5.mp3 + │   │   ├── 2009_05_19__Paul_Romer__A_Theory_of_History__with_an_Application.mp3 -> ../.git/annex/objects/vV/Fj/✂/MD5E-s24884522--a336743b✂MD5.mp3 + │   │   ├── 2009_07_29__Raoul_Adamchak__Pamela__Ronald__Organically_Grown_and_Genetically_Engineered__The_Food_of_the_Future.mp3 -> ../.git/annex/objects/z7/52/✂/MD5E-s48321583--51e8af81✂MD5.mp3 + │   │   ├── 2009_08_18__Wayne_Clough__Smithsonian_Forever.mp3 -> ../.git/annex/objects/94/kG/✂/MD5E-s41569871--9baeb7c2✂MD5.mp3 + │   │   ├── 2009_09_15__Arthur_Ganson__Machines_and_the_Breath_of_Time.mp3 -> ../.git/annex/objects/JM/10/✂/MD5E-s42758965--ce3f08e2✂MD5.mp3 + │   │   ├── 2009_10_10__Stewart_Brand__Rethinking_Green.mp3 -> ../.git/annex/objects/9z/GK/✂/MD5E-s42844019--3807faf3✂MD5.mp3 + │   │   ├── 2009_11_19__Sander_van_der_Leeuw__The_Archaeology_of_Innovation.mp3 -> ../.git/annex/objects/9X/Qx/✂/MD5E-s43092078--95705a73✂MD5.mp3 + │   │   ├── 2009_12_05__Rick_Prelinger__Lost_Landscapes_of_San_Francisco_4.mp3 -> ../.git/annex/objects/vX/90/✂/MD5E-s51277391--1be564ed✂MD5.mp3 + │   │   ├── 2010_01_14__Wade_Davis__The_Wayfinders__Why_Ancient_Wisdom_Matters_in_the_Modern_World.mp3 -> ../.git/annex/objects/W4/Jg/✂/MD5E-s52452101--4e4182a8✂MD5.mp3 + │   │   ├── 2010_02_01__Stewart_Brand__Brian_Eno__Alexander_Rose__Long_Finance__The_Enduring_Value_Conference.mp3 -> ../.git/annex/objects/v6/zQ/✂/MD5E-s18998612--d741c1b6✂MD5.mp3 + │   │   ├── 2010_02_25__Alan__Weisman__World_Without_Us__World_With_Us.mp3 -> ../.git/annex/objects/4W/x4/✂/MD5E-s49080388--37a33311✂MD5.mp3 + │   │   ├── 2010_03_05__Beth__Noveck__Transparent_Government.mp3 -> ../.git/annex/objects/QM/Mw/✂/MD5E-s50401557--28b3f51b✂MD5.mp3 + │   │   ├── 2010_04_02__David__Eagleman__Six_Easy_Steps_to_Avert_the_Collapse_of_Civilization.mp3 -> ../.git/annex/objects/VP/40/✂/MD5E-s49414129--e4e9022f✂MD5.mp3 + │   │   ├── 2010_05_04__Nils_Gilman__Deviant_Globalization.mp3 -> ../.git/annex/objects/22/K9/✂/MD5E-s45481760--153c10e5✂MD5.mp3 + │   │   ├── 2010_06_17__Ed_Moses__Clean_Fusion_Power_This_Decade.mp3 -> ../.git/annex/objects/Zz/50/✂/MD5E-s47394968--b1ee6859✂MD5.mp3 + │   │   ├── 2010_07_13__Frank_Gavin__Five_Ways_to_Use_History_Well.mp3 -> ../.git/annex/objects/2F/Pf/✂/MD5E-s48493156--c18df371✂MD5.mp3 + │   │   ├── 2010_07_28__Jesse_Schell__Visions_of_the_Gamepocalypse.mp3 -> ../.git/annex/objects/Zw/z7/✂/MD5E-s52795836--96176ed7✂MD5.mp3 + │   │   ├── 2010_08_03__Martin_Rees__Life_s_Future_in_the_Cosmos.mp3 -> ../.git/annex/objects/V1/62/✂/MD5E-s47892757--a35b832b✂MD5.mp3 + │   │   ├── 2010_10_16__Emily_Levine__Jill_Tarter__Long_Conversation_4_of_19.mp3 -> ../.git/annex/objects/4w/pv/✂/MD5E-s9476457--18c26321✂MD5.mp3 + │   │   ├── 2010_10_16__Jem_Finer__Saul_Griffith__Long_Conversation_2_of_19.mp3 -> ../.git/annex/objects/v6/Zx/✂/MD5E-s9442811--d2dafb66✂MD5.mp3 + │   │   ├── 2010_10_16__John_Perry_Barlow__Violet_Blue__Long_Conversation_7_of_19.mp3 -> ../.git/annex/objects/2f/jq/✂/MD5E-s9667673--5b5d5d5b✂MD5.mp3 + │   │   ├── 2010_10_16__Robin_Sloan__Jill_Tarter__Long_Conversation_5_of_19.mp3 -> ../.git/annex/objects/W3/kG/✂/MD5E-s9469561--39c26092✂MD5.mp3 + │   │   ├── 2010_10_16__Saul_Griffith__Emily_Levine__Long_Conversation_3_of_19.mp3 -> ../.git/annex/objects/92/0x/✂/MD5E-s9409792--88de6be9✂MD5.mp3 + │   │   ├── 2010_10_16__Stewart_Brand__Jem_Finer__Long_Conversation_1_of_19.mp3 -> ../.git/annex/objects/w0/JJ/✂/MD5E-s10004339--4e5e6976✂MD5.mp3 + │   │   ├── 2010_10_16__Violet_Blue__Robin_Sloan__Long_Conversation_6_of_19.mp3 -> ../.git/annex/objects/53/XM/✂/MD5E-s9431108--0eb687ef✂MD5.mp3 + │   │   ├── 2010_10_17__Danese_Cooper__Peter_Schwartz__Long_Conversation_13_of_19.mp3 -> ../.git/annex/objects/mp/7z/✂/MD5E-s9472486--a92da9f6✂MD5.mp3 + │   │   ├── 2010_10_17__Jane_McGonigal__Tiffany_Shlain__Long_Conversation_18_of_19.mp3 -> ../.git/annex/objects/Z0/W3/✂/MD5E-s9360473--ea1acd10✂MD5.mp3 + │   │   ├── 2010_10_17__John_Perry_Barlow__Ken_Wilson__Long_Conversation_8_of_19.mp3 -> ../.git/annex/objects/xk/9z/✂/MD5E-s9439258--e3f82f8b✂MD5.mp3 + │   │   ├── 2010_10_17__Katherine_Fulton__Paul_Hawken__Long_Conversation_16_of_19.mp3 -> ../.git/annex/objects/kx/5q/✂/MD5E-s9297152--5e41d126✂MD5.mp3 + │   │   ├── 2010_10_17__Ken_Foster__Pete_Worden__Long_Conversation_11_of_19.mp3 -> ../.git/annex/objects/3G/j8/✂/MD5E-s9445946--908a10eb✂MD5.mp3 + │   │   ├── 2010_10_17__Melissa_Alexander__Ken_Foster__Long_Conversation_10_of_19.mp3 -> ../.git/annex/objects/50/kV/✂/MD5E-s9436124--f361c958✂MD5.mp3 + │   │   ├── 2010_10_17__Melissa_Alexander__Ken_Wilson__Long_Conversation_9_of_19.mp3 -> ../.git/annex/objects/KZ/xW/✂/MD5E-s9457022--ba815a71✂MD5.mp3 + │   │   ├── 2010_10_17__Paul_Hawken__Tiffany_Shlain__Long_Conversation_17_of_19.mp3 -> ../.git/annex/objects/6M/F9/✂/MD5E-s9266223--db0298b9✂MD5.mp3 + │   │   ├── 2010_10_17__Peter_Schwartz__Pete_Worden__Long_Conversation_12_of_19.mp3 -> ../.git/annex/objects/4P/9Q/✂/MD5E-s9511774--0dd0c59e✂MD5.mp3 + │   │   ├── 2010_10_17__Stewart_Brand__Jane_McGonigal__Long_Conversation_19_of_19.mp3 -> ../.git/annex/objects/xK/MP/✂/MD5E-s8670214--0a85b1b4✂MD5.mp3 + │   │   ├── 2010_10_17__Stuart_Candy__Danese_Cooper__Long_Conversation_14_of_19.mp3 -> ../.git/annex/objects/1q/KQ/✂/MD5E-s9501743--c619ea9c✂MD5.mp3 + │   │   ├── 2010_10_17__Stuart_Candy__Katherine_Fulton__Long_Conversation_15_of_19.mp3 -> ../.git/annex/objects/5W/Gx/✂/MD5E-s9459321--e85f8ba4✂MD5.mp3 + │   │   ├── 2010_10_27__Lera_Boroditsky__How_Language_Shapes_Thought.mp3 -> ../.git/annex/objects/41/F2/✂/MD5E-s51700574--effe1fe1✂MD5.mp3 + │   │   ├── 2010_11_16__Rachel_Sussman__The_World_s_Oldest_Living_Organisms.mp3 -> ../.git/annex/objects/f1/kV/✂/MD5E-s32731915--db708bb3✂MD5.mp3 + │   │   ├── 2010_12_17__Rick_Prelinger__Lost_Landscapes_of_San_Francisco__5.mp3 -> ../.git/annex/objects/pj/2X/✂/MD5E-s42969616--089b5e5e✂MD5.mp3 + │   │   ├── 2011_01_19__Philip_K._Howard__Fixing_Broken_Government.mp3 -> ../.git/annex/objects/3X/K3/✂/MD5E-s45375598--5928f520✂MD5.mp3 + │   │   ├── 2011_02_10__Mary_Catherine__Bateson__Live_Longer__Think_Longer.mp3 -> ../.git/annex/objects/x9/G7/✂/MD5E-s42646325--4d0241a7✂MD5.mp3 + │   │   ├── 2011_03_23__Matt_Ridley__Deep_Optimism.mp3 -> ../.git/annex/objects/qx/KM/✂/MD5E-s46637417--caa46956✂MD5.mp3 + │   │   ├── 2011_04_06__Alexander_Rose__Millennial_Precedent.mp3 -> ../.git/annex/objects/gG/j6/✂/MD5E-s25385192--cc2f1618✂MD5.mp3 + │   │   ├── 2011_04_14__Ian_Morris__Why_the_West_Rules___For_Now.mp3 -> ../.git/annex/objects/WP/GG/✂/MD5E-s47364875--fcfa97ff✂MD5.mp3 + │   │   ├── 2011_05_04__Tim_Flannery__Here_on_Earth.mp3 -> ../.git/annex/objects/92/07/✂/MD5E-s44075536--612c4562✂MD5.mp3 + │   │   ├── 2011_06_08__Carl_Zimmer__Viral_Time.mp3 -> ../.git/annex/objects/Jv/m7/✂/MD5E-s44509796--612db923✂MD5.mp3 + │   │   ├── 2011_06_28__Peter_Kareiva__Conservation_in_the_Real_World.mp3 -> ../.git/annex/objects/zw/J3/✂/MD5E-s44001327--98121bd2✂MD5.mp3 + │   │   ├── 2011_07_26__Geoffrey_B.__West__Why_Cities_Keep_on_Growing__Corporations_Always_Die__and_Life_Gets_Faster.mp3 -> ../.git/annex/objects/fF/J2/✂/MD5E-s52373698--7dcb1c4b✂MD5.mp3 + │   │   ├── 2011_09_15__Timothy__Ferriss__Accelerated_Learning_in_Accelerated_Times.mp3 -> ../.git/annex/objects/Qk/mp/✂/MD5E-s40890060--029f385e✂MD5.mp3 + │   │   ├── 2011_10_18__Laura_Cunningham__Ten_Millennia_of_California_Ecology.mp3 -> ../.git/annex/objects/zx/Qk/✂/MD5E-s43835001--4c85fc36✂MD5.mp3 + │   │   ├── 2011_12_01__Brewster_Kahle__Universal_Access_to_All_Knowledge.mp3 -> ../.git/annex/objects/JP/xk/✂/MD5E-s45496597--62fc4b4c✂MD5.mp3 + │   │   ├── 2011_12_09__Rick_Prelinger__Lost_Landscapes_of_San_Francisco__6.mp3 -> ../.git/annex/objects/JZ/GW/✂/MD5E-s39917469--2b3a6d2a✂MD5.mp3 + │   │   ├── 2012_01_18__Lawrence_Lessig__How_Money_Corrupts_Congress_and_a_Plan_to_Stop_It.mp3 -> ../.git/annex/objects/WK/Fg/✂/MD5E-s44462775--d55e8f81✂MD5.mp3 + │   │   ├── 2012_02_23__Jim_Richardson__Heirlooms__Saving_Humanity_s_10_000_year_Legacy_of_Food.mp3 -> ../.git/annex/objects/z6/F0/✂/MD5E-s41506132--bf9ebd2e✂MD5.mp3 + │   │   ├── 2012_03_07__Mark_Lynas__The_Nine_Planetary_Boundaries__Finessing_the_Anthropocene.mp3 -> ../.git/annex/objects/vf/mq/✂/MD5E-s81470552--01a3a8d6✂MD5.mp3 + │   │   ├── 2012_04_21__Edward_O._Wilson__The_Social_Conquest_of_Earth.mp3 -> ../.git/annex/objects/7J/7V/✂/MD5E-s89075905--5189deb5✂MD5.mp3 + │   │   ├── 2012_04_24__Charles_C._Mann__Living_in_the_Homogenocene__The_First_500_Years.mp3 -> ../.git/annex/objects/fP/z1/✂/MD5E-s95778297--9a893bf2✂MD5.mp3 + │   │   ├── 2012_05_23__Susan_Freinkel__Eternal_Plastic__A_Toxic_Love_Story.mp3 -> ../.git/annex/objects/Q2/jj/✂/MD5E-s80592838--30d6cb4b✂MD5.mp3 + │   │   ├── 2012_06_06__Benjamin_Barber__If_Mayors_Ruled_the_World.mp3 -> ../.git/annex/objects/x6/8F/✂/MD5E-s84650386--559a8f67✂MD5.mp3 + │   │   ├── 2012_08_01__Cory_Doctorow__The_Coming_Century_of_War_Against_Your_Computer.mp3 -> ../.git/annex/objects/j2/Fv/✂/MD5E-s85005651--da026b81✂MD5.mp3 + │   │   ├── 2012_08_21__Elaine_Pagels__The_Truth_About_the_Book_of_Revelations.mp3 -> ../.git/annex/objects/0Z/kj/✂/MD5E-s72548378--e4af3014✂MD5.mp3 + │   │   ├── 2012_09_06__Tim_O_Reilly__Birth_of_the_Global_Mind.mp3 -> ../.git/annex/objects/77/km/✂/MD5E-s46167351--077cd2de✂MD5.mp3 + │   │   ├── 2012_10_09__Steven_Pinker__The_Decline_of_Violence.mp3 -> ../.git/annex/objects/GG/G0/✂/MD5E-s89857375--5ccc0db0✂MD5.mp3 + │   │   ├── 2012_11_14__Lazar_Kunstmann__Jon_Lackman__Preservation_without_Permission__the_Paris_Urban_eXperiment.mp3 -> ../.git/annex/objects/8M/1F/✂/MD5E-s90595602--0e48f5ae✂MD5.mp3 + │   │   ├── 2012_11_29__Peter_Warshall__Enchanted_by_the_Sun__The_CoEvolution_of_Light__Life__and_Color_on_Earth.mp3 -> ../.git/annex/objects/84/xm/✂/MD5E-s107329525--b6137147✂MD5.mp3 + │   │   ├── 2013_01_18__Terry_Hunt__Carl_Lipo__The_Statues_Walked____What_Really_Happened_on_Easter_Island.mp3 -> ../.git/annex/objects/jk/9P/✂/MD5E-s96658492--058f0bbf✂MD5.mp3 + │   │   ├── 2013_02_20__Chris_Anderson__The_Makers_Revolution.mp3 -> ../.git/annex/objects/83/3K/✂/MD5E-s86449484--677ff768✂MD5.mp3 + │   │   ├── 2013_03_20__George_Dyson__No_Time_Is_There____The_Digital_Universe_and_Why_Things_Appear_To_Be_Speeding_Up.mp3 -> ../.git/annex/objects/8q/2g/✂/MD5E-s87774322--5de50b4c✂MD5.mp3 + │   │   ├── 2013_04_18__Nicholas_Negroponte__Beyond_Digital.mp3 -> ../.git/annex/objects/PM/jg/✂/MD5E-s87892589--726bdc0f✂MD5.mp3 + │   │   ├── 2013_05_22__Stewart_Brand__Reviving_Extinct_Species.mp3 -> ../.git/annex/objects/FM/2P/✂/MD5E-s86241770--11478738✂MD5.mp3 + │   │   ├── 2013_06_19__Ed_Lu__Anthropocene_Astronomy__Thwarting_Dangerous_Asteroids_Begins_with_Finding_Them.mp3 -> ../.git/annex/objects/X9/WK/✂/MD5E-s86241259--04aa4ade✂MD5.mp3 + │   │   ├── 2013_07_30__Craig_Childs__Apocalyptic_Planet__Field_Guide_to_the_Everending_Earth.mp3 -> ../.git/annex/objects/pX/XQ/✂/MD5E-s91784054--1f64eab3✂MD5.mp3 + │   │   ├── 2013_08_14__Daniel_Kahneman__Thinking_Fast_and_Slow.mp3 -> ../.git/annex/objects/gj/x3/✂/MD5E-s74446061--8b2d0315✂MD5.mp3 + │   │   ├── 2013_09_18__Peter_Schwartz__The_Starships_ARE_Coming.mp3 -> ../.git/annex/objects/Kz/k8/✂/MD5E-s73486514--dcfaf4ba✂MD5.mp3 + │   │   ├── 2013_10_16__Adam_Steltzner__Beyond_Mars__Earth.mp3 -> ../.git/annex/objects/z6/Z8/✂/MD5E-s86324693--5cede70c✂MD5.mp3 + │   │   ├── 2013_11_19__Richard_Kurin__American_History_in_101_Objects.mp3 -> ../.git/annex/objects/kw/zX/✂/MD5E-s78382378--b083d665✂MD5.mp3 + │   │   ├── 2014_01_22__Brian_Eno__Danny_Hillis__The_Long_Now__now.mp3 -> ../.git/annex/objects/pw/f8/✂/MD5E-s107151421--9c952590✂MD5.mp3 + │   │   ├── 2014_03_25__Mariana_Mazzucato__The_Entrepreneurial_State__Debunking_Private_vs._Public_Sector_Myths.mp3 -> ../.git/annex/objects/4p/p1/✂/MD5E-s141702671--41756f4d✂MD5.mp3 + │   │   ├── 2014_04_23__Tony_Hsieh__Helping_Revitalize_a_City.mp3 -> ../.git/annex/objects/JQ/kZ/✂/MD5E-s179833767--eac378f5✂MD5.mp3 + │   │   ├── 2014_05_21__Sylvia_Earle__Tierney_Thys__Oceanic.mp3 -> ../.git/annex/objects/fF/83/✂/MD5E-s184475755--69ce451a✂MD5.mp3 + │   │   ├── 2014_06_11__Stefan_Kroepelin__Civilization_s_Mysterious_Desert_Cradle__Rediscovering_the_Deep_Sahara.mp3 -> ../.git/annex/objects/0w/Mq/✂/MD5E-s190971120--52a6941c✂MD5.mp3 + │   │   ├── 2014_07_17__Adrian_Hon__A_History_of_the_Future_in_100_Objects.mp3 -> ../.git/annex/objects/56/Ff/✂/MD5E-s156378204--5a34e212✂MD5.mp3 + │   │   ├── 2014_08_07__Anne_Neuberger__Inside_the_NSA.mp3 -> ../.git/annex/objects/q3/23/✂/MD5E-s171490321--ff4bb702✂MD5.mp3 + │   │   ├── 2014_09_17__Drew_Endy__The_iGEM_Revolution.mp3 -> ../.git/annex/objects/34/86/✂/MD5E-s184674213--6cc57298✂MD5.mp3 + │   │   ├── 2014_10_21__Larry__Harvey__Why_The_Man_Keeps_Burning.mp3 -> ../.git/annex/objects/4F/Z2/✂/MD5E-s175572374--30770ebf✂MD5.mp3 + │   │   ├── 2014_11_13__Kevin_Kelly__Technium_Unbound.mp3 -> ../.git/annex/objects/wM/3J/✂/MD5E-s168696055--b0a3de03✂MD5.mp3 + │   │   ├── 2015_01_14__Jesse_Ausubel__Nature_is_Rebounding__Land__and_Ocean_sparing_through_Concentrating_Human_Activities_.mp3 -> ../.git/annex/objects/G8/X9/✂/MD5E-s182969926--4da5d9e9✂MD5.mp3 + │   │   ├── 2015_01_28__Stewart_Brand__Paul_Saffo__Pace_Layers_Thinking.mp3 -> ../.git/annex/objects/Qk/9M/✂/MD5E-s112801659--00a42a1a✂MD5.mp3 + │   │   ├── 2015_02_18__David_Keith__Patient_Geoengineering.mp3 -> ../.git/annex/objects/jP/f6/✂/MD5E-s170263599--065ff4d7✂MD5.mp3 + │   │   ├── 2015_04_01__Paul_Saffo__The_Creator_Economy.mp3 -> ../.git/annex/objects/94/px/✂/MD5E-s160513321--64acfebf✂MD5.mp3 + │   │   ├── 2015_04_15__Michael_Shermer__The_Long_Arc_of_Moral_Progress.mp3 -> ../.git/annex/objects/p4/F5/✂/MD5E-s166027315--61f21c60✂MD5.mp3 + │   │   ├── 2015_05_12__Beth_Shapiro__How_to_Clone_a_Mammoth.mp3 -> ../.git/annex/objects/3j/QG/✂/MD5E-s165653273--aa3dc7b4✂MD5.mp3 + │   │   ├── 2015_06_10__Neil_Gaiman__How_Stories_Last.mp3 -> ../.git/annex/objects/GV/Gk/✂/MD5E-s197997269--22e1c4be✂MD5.mp3 + │   │   ├── 2015_07_23__Ramez_Naam__Enhancing_Humans__Advancing_Humanity.mp3 -> ../.git/annex/objects/KW/VF/✂/MD5E-s166849971--52801b85✂MD5.mp3 + │   │   ├── 2015_08_11__Sara_Seager__Other_Earths._Other_Life..mp3 -> ../.git/annex/objects/VV/kF/✂/MD5E-s156916472--0c1828cf✂MD5.mp3 + │   │   ├── 2015_09_22__Saul_Griffith__Infrastructure_and_Climate_Change.mp3 -> ../.git/annex/objects/87/71/✂/MD5E-s195384162--511d8270✂MD5.mp3 + │   │   ├── 2015_10_07__James_Fallows__Civilization_s_Infrastructure.mp3 -> ../.git/annex/objects/4f/3w/✂/MD5E-s156410607--4e9e26bf✂MD5.mp3 + │   │   ├── 2015_10_28__Andy_Weir__The_Red_Planet_for_Real.mp3 -> ../.git/annex/objects/xq/Q3/✂/MD5E-s136924472--0d107210✂MD5.mp3 + │   │   ├── 2015_11_24__Philip_Tetlock__Superforecasting.mp3 -> ../.git/annex/objects/9G/9v/✂/MD5E-s182555547--7757d1c8✂MD5.mp3 + │   │   ├── 2016_01_12__Eric_Cline__1177_B.C.__When_Civilization_Collapsed.mp3 -> ../.git/annex/objects/0J/pq/✂/MD5E-s168749837--d2e5da36✂MD5.mp3 + │   │   ├── 2016_02_10__Stephen_Pyne__Fire_Slow__Fire_Fast__Fire_Deep.mp3 -> ../.git/annex/objects/Kx/jg/✂/MD5E-s162531687--cd85c028✂MD5.mp3 + │   │   ├── 2016_03_15__Jane_Langdale__Radical_Ag__C4_Rice_and_Beyond.mp3 -> ../.git/annex/objects/Wm/MF/✂/MD5E-s168613715--2bd59232✂MD5.mp3 + │   │   ├── 2016_04_12__Priyamvada_Natarajan__Solving_Dark_Matter_and_Dark_Energy.mp3 -> ../.git/annex/objects/gq/Fm/✂/MD5E-s176254449--92dae157✂MD5.mp3 + │   │   ├── 2016_05_03__Walter_Mischel__The_Marshmallow_Test__Mastering_Self_Control.mp3 -> ../.git/annex/objects/vF/pj/✂/MD5E-s166936767--dd72342e✂MD5.mp3 + │   │   ├── 2016_06_21__Brian_Christian__Algorithms_to_Live_By.mp3 -> ../.git/annex/objects/mx/J3/✂/MD5E-s174158979--a50d6f35✂MD5.mp3 + │   │   ├── 2016_07_15__Kevin_Kelly__The_Next_30_Digital_Years.mp3 -> ../.git/annex/objects/9m/Zx/✂/MD5E-s174534089--900618e7✂MD5.mp3 + │   │   ├── 2016_08_10__Seth_Lloyd__Quantum_Computer_Reality.mp3 -> ../.git/annex/objects/ZX/WK/✂/MD5E-s201423004--9403a511✂MD5.mp3 + │   │   ├── 2016_09_21__Jonathan_Rose__The_Well_Tempered_City.mp3 -> ../.git/annex/objects/z5/W9/✂/MD5E-s161741565--153dc36d✂MD5.mp3 + │   │   ├── 2016_10_05__David__Eagleman__The_Brain_and_The_Now.mp3 -> ../.git/annex/objects/JV/w9/✂/MD5E-s155774650--56d0b7d2✂MD5.mp3 + │   │   ├── 2016_11_02__Douglas_Coupland__The_Extreme_Present.mp3 -> ../.git/annex/objects/Xm/6Z/✂/MD5E-s172600006--32acef04✂MD5.mp3 + │   │   ├── 2017_01_05__Steven_Johnson__Wonderland__How_Play_Made_the_Modern_World.mp3 -> ../.git/annex/objects/Mw/gm/✂/MD5E-s80569546--de84318c✂MD5.mp3 + │   │   ├── 2017_02_02__Jennifer_Pahlka__Fixing_Government__Bottom_Up_and_Outside_In.mp3 -> ../.git/annex/objects/4V/f1/✂/MD5E-s81727806--bdaaf0be✂MD5.mp3 + │   │   ├── 2017_03_14__Bjorn_Lomborg__From_Feel_Good_to_High_Yield_Good__How_to_Improve_Philanthropy_and_Aid.mp3 -> ../.git/annex/objects/wq/PQ/✂/MD5E-s86688795--606cb916✂MD5.mp3 + │   │   ├── 2017_04_11__Frank_Ostaseski__What_the_Dying_Teach_the_Living.mp3 -> ../.git/annex/objects/Zq/8W/✂/MD5E-s89099723--11a669a7✂MD5.mp3 + │   │   ├── 2017_05_24__Geoffrey_B.__West__The_Universal_Laws_of_Growth_and_Pace.mp3 -> ../.git/annex/objects/5J/x7/✂/MD5E-s90562186--600aa6cd✂MD5.mp3 + │   │   ├── 2017_06_06__James_Gleick__Time_Travel.mp3 -> ../.git/annex/objects/63/W6/✂/MD5E-s77545131--e60156ee✂MD5.mp3 + │   │   ├── 2017_07_25__Carolyn_Porco__Searching_for_Life_in_the_Solar_System.mp3 -> ../.git/annex/objects/10/zj/✂/MD5E-s82300411--186d9eec✂MD5.mp3 + │   │   ├── 2017_08_08__Nicky_Case__Seeing_Whole_Systems.mp3 -> ../.git/annex/objects/Jk/13/✂/MD5E-s75623278--43b45112✂MD5.mp3 + │   │   ├── 2017_09_07__David_Grinspoon__Earth_in_Human_Hands.mp3 -> ../.git/annex/objects/kM/qP/✂/MD5E-s88205668--ac9ce1a1✂MD5.mp3 + │   │   ├── 2017_10_31__Renee_Wegrzyn__Engineering_Gene_Safety.mp3 -> ../.git/annex/objects/jf/jw/✂/MD5E-s78319976--f959ab3b✂MD5.mp3 + │   │   ├── 2017_11_21__Elena_Bennett__Seeds_of_a_Good_Anthropocene.mp3 -> ../.git/annex/objects/kg/k7/✂/MD5E-s76108280--a8be6219✂MD5.mp3 + │   │   ├── 2018_01_23__Charles_C._Mann__The_Wizard_and_the_Prophet.mp3 -> ../.git/annex/objects/gV/2g/✂/MD5E-s84495848--cb4ba9bc✂MD5.mp3 + │   │   ├── 2018_02_27__Michael_Frachetti__Open_Source_Civilization_and_the_Unexpected_Origins_of_the_Silk_Road.mp3 -> ../.git/annex/objects/XM/0x/✂/MD5E-s85021110--aaa6c8b4✂MD5.mp3 + │   │   ├── 2018_03_14__Steven_Pinker__A_New_Enlightenment.mp3 -> ../.git/annex/objects/8g/QQ/✂/MD5E-s89003796--68f193cb✂MD5.mp3 + │   │   ├── 2018_04_24__Kishore_Mahbubani__Has_the_West_Lost_It__Can_Asia_Save_It_.mp3 -> ../.git/annex/objects/Mw/g2/✂/MD5E-s87684607--9611eccf✂MD5.mp3 + │   │   ├── 2018_05_23__Benjamin_Grant__Overview__Earth_and_Civilization_in_the_Macroscope.mp3 -> ../.git/annex/objects/1g/M4/✂/MD5E-s79235114--71f660d3✂MD5.mp3 + │   │   ├── 2018_06_20__Chris_D._Thomas__Are_We_Initiating_The_Great_Anthropocene_Speciation_Event_.mp3 -> ../.git/annex/objects/Q3/GG/✂/MD5E-s96942126--858b7900✂MD5.mp3 + │   │   ├── 2018_07_17__George_P._Shultz__Perspective.mp3 -> ../.git/annex/objects/vP/X3/✂/MD5E-s60777923--101de797✂MD5.mp3 + │   │   ├── 2018_08_07__Juan_Benet__Long_Term_Info_structure.mp3 -> ../.git/annex/objects/VK/MW/✂/MD5E-s85943250--b2ecc137✂MD5.mp3 + │   │   ├── 2018_09_13__Julia_Galef__Soldiers_and_Scouts__Why_our_minds_weren_t_built_for_truth__and_how_we_can_change_that.mp3 -> ../.git/annex/objects/WX/8M/✂/MD5E-s89370057--e87762ff✂MD5.mp3 + │   │   ├── 2018_10_14__Stewart_Brand__Whole_Earth_Catalog_50th_Anniversary_Celebration.mp3 -> ../.git/annex/objects/z6/wQ/✂/MD5E-s115945335--38cc657c✂MD5.mp3 + │   │   ├── 2018_10_30__Mary_Lou_Jepsen__Toward_Practical_Telepathy.mp3 -> ../.git/annex/objects/4P/Xp/✂/MD5E-s86742084--7765ff07✂MD5.mp3 + │   │   ├── 2018_11_20__Niall_Ferguson__Networks_and_Power.mp3 -> ../.git/annex/objects/VM/0k/✂/MD5E-s87074723--e9733eb2✂MD5.mp3 + │   │   ├── 2019_01_15__Martin_Rees__Prospects_for_Humanity.mp3 -> ../.git/annex/objects/Wv/vQ/✂/MD5E-s81528228--e4535463✂MD5.mp3 + │   │   ├── 2019_02_26__John_Brockman__Possible_Minds.mp3 -> ../.git/annex/objects/q4/pV/✂/MD5E-s92555373--ee1d1bdc✂MD5.mp3 + │   │   ├── 2019_03_14__Chip_Conley__The_Modern_Elder_and_the_Intergenerational_Workplace.mp3 -> ../.git/annex/objects/G0/Q8/✂/MD5E-s81116955--846510b4✂MD5.mp3 + │   │   ├── 2019_04_03__Jeff_Goodell__The_Water_Will_Come.mp3 -> ../.git/annex/objects/z9/mj/✂/MD5E-s81609177--29179b22✂MD5.mp3 + │   │   ├── 2019_05_05__Ian_McEwan__Machines_Like_Me.mp3 -> ../.git/annex/objects/5j/70/✂/MD5E-s93248590--de4c82e0✂MD5.mp3 + │   │   ├── 2019_06_05__David_Byrne__Good_News___Sleeping_Beauties.mp3 -> ../.git/annex/objects/p4/Xf/✂/MD5E-s87222771--1fdbc58f✂MD5.mp3 + │   │   └── 2019_06_25__Mariana_Mazzucato__Rethinking_Value.mp3 -> ../.git/annex/objects/ZX/20/✂/MD5E-s86261109--93605177✂MD5.mp3 │   └── README.md ├── podcasts.tsv - └── salt_logo_small.jpg -> ../.git/annex/objects/fZ/wg/MD5E-s76402--87da732ff6d9a92c6afcaed7fefb133f.jpg/MD5E-s76402--87da732ff6d9a92c6afcaed7fefb133f.jpg + └── salt_logo_small.jpg -> ../.git/annex/objects/fZ/wg/✂/MD5E-s76402--87da732f✂MD5.jpg 6 directories, 244 files diff --git a/docs/basics/_examples/DL-101-117-101 b/docs/basics/_examples/DL-101-117-101 index d59411954..0d33c3fa2 100644 --- a/docs/basics/_examples/DL-101-117-101 +++ b/docs/basics/_examples/DL-101-117-101 @@ -6,7 +6,7 @@ $ cd recordings/longnow $ git annex whereis Long_Now__Seminars_About_Long_term_Thinking/2003_11_15__Brian_Eno__The_Long_Now.mp3 whereis Long_Now__Seminars_About_Long_term_Thinking/2003_11_15__Brian_Eno__The_Long_Now.mp3 (2 copies) 00000000-0000-0000-0000-000000000001 -- web - REDACTED-UUID -- mih@medusa:/tmp/seminars-on-longterm-thinking + ✂UUID✂ -- mih@medusa:/tmp/seminars-on-longterm-thinking web: http://podcast.longnow.org/salt/redirect/salt-020031114-eno-podcast.mp3 ok diff --git a/docs/basics/_examples/DL-101-117-102 b/docs/basics/_examples/DL-101-117-102 index 6d982bd00..ef11b9f5e 100644 --- a/docs/basics/_examples/DL-101-117-102 +++ b/docs/basics/_examples/DL-101-117-102 @@ -2,7 +2,7 @@ $ git annex whereis Long_Now__Seminars_About_Long_term_Thinking/2005_01_15__James_Carse__Religious_War_In_Light_of_the_Infinite_Game.mp3 whereis Long_Now__Seminars_About_Long_term_Thinking/2005_01_15__James_Carse__Religious_War_In_Light_of_the_Infinite_Game.mp3 (2 copies) 00000000-0000-0000-0000-000000000001 -- web - REDACTED-UUID -- mih@medusa:/tmp/seminars-on-longterm-thinking + ✂UUID✂ -- mih@medusa:/tmp/seminars-on-longterm-thinking web: http://podcast.longnow.org/salt/redirect/salt-020050114-carse-podcast.mp3 ok diff --git a/docs/basics/_examples/DL-101-118-103 b/docs/basics/_examples/DL-101-118-103 index ec45e426c..b9534c8bf 100644 --- a/docs/basics/_examples/DL-101-118-103 +++ b/docs/basics/_examples/DL-101-118-103 @@ -1,5 +1,5 @@ -$ datalad rerun d5845d332dc06ed2311900d9c08cefda69df5af5 +$ datalad rerun d5845d33✂SHA1 [INFO] run commit d5845d3; (Resize logo for s...) [INFO] Making sure inputs are available (this may take some time) get(ok): recordings/longnow/.datalad/feed_metadata/logo_salt.jpg (file) [from web...] diff --git a/docs/basics/_examples/DL-101-121-101 b/docs/basics/_examples/DL-101-121-101 index de525d50e..974e60dac 100644 --- a/docs/basics/_examples/DL-101-121-101 +++ b/docs/basics/_examples/DL-101-121-101 @@ -6,8 +6,8 @@ $ datalad download-url \ -d . \ -m "Include nesting demo from datalad website" \ -O code/nested_repos.sh \ - https://raw.githubusercontent.com/datalad/datalad.org/7e8e39b1f08d0a54ab521586f27ee918b4441d69/content/asciicast/seamless_nested_repos.sh -[INFO] Downloading 'https://raw.githubusercontent.com/datalad/datalad.org/7e8e39b1f08d0a54ab521586f27ee918b4441d69/content/asciicast/seamless_nested_repos.sh' into '/home/me/dl-101/mock_user/DataLad-101/code/nested_repos.sh' + https://raw.githubusercontent.com/datalad/datalad.org/7e8e39b1/content/asciicast/seamless_nested_repos.sh +[INFO] Downloading 'https://raw.githubusercontent.com/datalad/datalad.org/7e8e39b1/content/asciicast/seamless_nested_repos.sh' into '/home/me/dl-101/mock_user/DataLad-101/code/nested_repos.sh' download_url(ok): /home/me/dl-101/mock_user/DataLad-101/code/nested_repos.sh (file) add(ok): code/nested_repos.sh (file) save(ok): . (dataset) diff --git a/docs/basics/_examples/DL-101-121-103 b/docs/basics/_examples/DL-101-121-103 index 0004db9d6..5e9044a95 100644 --- a/docs/basics/_examples/DL-101-121-103 +++ b/docs/basics/_examples/DL-101-121-103 @@ -1,5 +1,5 @@ $ git log -n 1 -p -commit 28a99fb2b7b72298b9ed456e459e566137d17e11 +commit 28a99fb2✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 diff --git a/docs/basics/_examples/DL-101-122-101 b/docs/basics/_examples/DL-101-122-101 index 23a166772..822f0cae1 100644 --- a/docs/basics/_examples/DL-101-122-101 +++ b/docs/basics/_examples/DL-101-122-101 @@ -17,5 +17,5 @@ $ cat .git/config [remote "roommate"] url = ../mock_user/DataLad-101 fetch = +refs/heads/*:refs/remotes/roommate/* - annex-uuid = REDACTED-RANDOM-UUID + annex-uuid = ✂UUID✂ annex-ignore = false diff --git a/docs/basics/_examples/DL-101-122-103 b/docs/basics/_examples/DL-101-122-103 index d4740ab7f..2f1cb5e1d 100644 --- a/docs/basics/_examples/DL-101-122-103 +++ b/docs/basics/_examples/DL-101-122-103 @@ -18,5 +18,5 @@ $ cat .git/config [remote "roommate"] url = ../mock_user/DataLad-101 fetch = +refs/heads/*:refs/remotes/roommate/* - annex-uuid = REDACTED-RANDOM-UUID + annex-uuid = ✂UUID✂ annex-ignore = false diff --git a/docs/basics/_examples/DL-101-124-107 b/docs/basics/_examples/DL-101-124-107 index f73f29a30..edb2e2bd1 100644 --- a/docs/basics/_examples/DL-101-124-107 +++ b/docs/basics/_examples/DL-101-124-107 @@ -1,7 +1,7 @@ #the directory structure has been created $ tree . -├── example2 -> .git/annex/objects/G6/zw/MD5E-s40--2ed1bce0db9f376c277a1ba6418f3ddd/MD5E-s40--2ed1bce0db9f376c277a1ba6418f3ddd +├── example2 -> .git/annex/objects/G6/zw/✂/MD5E-s40--2ed1bce0✂MD5 └── somedir └── example diff --git a/docs/basics/_examples/DL-101-130-102 b/docs/basics/_examples/DL-101-130-102 index fc4bf8d4b..86374ea5c 100644 --- a/docs/basics/_examples/DL-101-130-102 +++ b/docs/basics/_examples/DL-101-130-102 @@ -1,6 +1,6 @@ $ cd iris_data $ datalad download-url https://gist.githubusercontent.com/netj/8836201/raw/6f9306ad21398ea43cba4f7d537619d0e07d5ae3/iris.csv -[INFO] Downloading 'https://gist.githubusercontent.com/netj/8836201/raw/6f9306ad21398ea43cba4f7d537619d0e07d5ae3/iris.csv' into '/home/me/dl-101/iris_data/' +[INFO] Downloading 'https://gist.githubusercontent.com/netj/8836201/raw/6f9306ad✂SHA1/iris.csv' into '/home/me/dl-101/iris_data/' download_url(ok): /home/me/dl-101/iris_data/iris.csv (file) add(ok): iris.csv (file) save(ok): . (dataset) diff --git a/docs/basics/_examples/DL-101-130-107 b/docs/basics/_examples/DL-101-130-107 index 988c934e8..5e83f6513 100644 --- a/docs/basics/_examples/DL-101-130-107 +++ b/docs/basics/_examples/DL-101-130-107 @@ -29,9 +29,10 @@ X = array[:,0:4] Y = array[:,4] test_size = 0.20 seed = 7 -X_train, X_test, Y_train, Y_test = model_selection.train_test_split(X, Y, - test_size=test_size, - random_state=seed) +X_train, X_test, Y_train, Y_test = model_selection.train_test_split( + X, Y, + test_size=test_size, + random_state=seed) # Step 2: Fit the model and make predictions on the test dataset knn = KNeighborsClassifier() knn.fit(X_train, Y_train) diff --git a/docs/basics/_examples/DL-101-130-110 b/docs/basics/_examples/DL-101-130-110 index e397b1d38..8b6e5a2be 100644 --- a/docs/basics/_examples/DL-101-130-110 +++ b/docs/basics/_examples/DL-101-130-110 @@ -1,5 +1,5 @@ $ git show ready4analysis -commit 5081206ef06f0b68f14340c00cc823bee9866d9b +commit 5081206e✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 @@ -41,9 +41,10 @@ index 0000000..4f5833b +Y = array[:,4] +test_size = 0.20 +seed = 7 -+X_train, X_test, Y_train, Y_test = model_selection.train_test_split(X, Y, -+ test_size=test_size, -+ random_state=seed) ++X_train, X_test, Y_train, Y_test = model_selection.train_test_split( ++ X, Y, ++ test_size=test_size, ++ random_state=seed) +# Step 2: Fit the model and make predictions on the test dataset +knn = KNeighborsClassifier() +knn.fit(X_train, Y_train) diff --git a/docs/basics/_examples/DL-101-130-118 b/docs/basics/_examples/DL-101-130-118 index 577d5ce96..d6006f7a6 100644 --- a/docs/basics/_examples/DL-101-130-118 +++ b/docs/basics/_examples/DL-101-130-118 @@ -9,7 +9,7 @@ copy(ok): prediction_report.csv (file) [to github...] [INFO] Start counting objects [INFO] Start compressing objects [INFO] Start writing objects -publish(ok): . (dataset) [refs/heads/git-annex->github:refs/heads/git-annex FROM..TO (REDACTED)] +publish(ok): . (dataset) [refs/heads/git-annex->github:refs/heads/git-annex ✂FROM✂..✂TO✂] publish(ok): . (dataset) [refs/heads/master->github:refs/heads/master [new branch]] [INFO] Finished push of Dataset(/home/me/dl-101/DataLad-101/midterm_project) action summary: diff --git a/docs/basics/_examples/DL-101-130-121 b/docs/basics/_examples/DL-101-130-121 index e8df8d9d4..e66dc3cdf 100644 --- a/docs/basics/_examples/DL-101-130-121 +++ b/docs/basics/_examples/DL-101-130-121 @@ -1,5 +1,5 @@ $ datalad get prediction_report.csv pairwise_relationships.png -get(error): pairwise_relationships.png (file) [not available; (Note that these git remotes have annex-ignore set: origin)] get(error): prediction_report.csv (file) [not available; (Note that these git remotes have annex-ignore set: origin)] +get(error): pairwise_relationships.png (file) [not available; (Note that these git remotes have annex-ignore set: origin)] action summary: get (error: 2) diff --git a/docs/basics/_examples/DL-101-130-122 b/docs/basics/_examples/DL-101-130-122 index 18056d4bf..21283647b 100644 --- a/docs/basics/_examples/DL-101-130-122 +++ b/docs/basics/_examples/DL-101-130-122 @@ -1,5 +1,5 @@ -$ datalad rerun d715890b36b9a089eedbb0c929f52e182e889735 +$ datalad rerun d715890b✂SHA1 [INFO] run commit d715890; (analyze iris data...) [INFO] Making sure inputs are available (this may take some time) run.remove(ok): pairwise_relationships.png (file) [Removed file] diff --git a/docs/basics/_examples/DL-101-132-112 b/docs/basics/_examples/DL-101-132-112 index 475863796..77e87c150 100644 --- a/docs/basics/_examples/DL-101-132-112 +++ b/docs/basics/_examples/DL-101-132-112 @@ -1,5 +1,5 @@ $ git log -p -n 1 -commit bfcdc77311515aaed5c6d14a0eb968078eb2531a +commit bfcdc773✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 @@ -10,5 +10,5 @@ index 18f4a98..1ffc282 160000 --- a/midterm_project +++ b/midterm_project @@ -1 +1 @@ --Subproject commit 18f4a981cc9fb393d4b37cffdd5535eff557cc74 -+Subproject commit 1ffc2821fdd1ffebeaca49e57d3d875c000a9236 +-Subproject commit 18f4a981✂SHA1 ++Subproject commit 1ffc2821✂SHA1 diff --git a/docs/basics/_examples/DL-101-133-103 b/docs/basics/_examples/DL-101-133-103 index 846b84f8e..93fa4a830 100644 --- a/docs/basics/_examples/DL-101-133-103 +++ b/docs/basics/_examples/DL-101-133-103 @@ -1,5 +1,5 @@ $ git log -n 1 -p -commit 537f58153065f47df577a422ad3506fec0109b73 +commit 537f5815✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 @@ -21,5 +21,5 @@ index 0000000..75c8b41 --- /dev/null +++ b/.datalad/environments/midterm-software/image @@ -0,0 +1 @@ -+../../../.git/annex/objects/F1/K3/MD5E-s230694943--944b0300fab145c7ebbd86078498b393/MD5E-s230694943--944b0300fab145c7ebbd86078498b393 ++../../../.git/annex/objects/F1/K3/✂/MD5E-s230694943--944b0300✂MD5 \ No newline at end of file diff --git a/docs/basics/_examples/DL-101-133-111 b/docs/basics/_examples/DL-101-133-111 index 4fec9d259..d120cc26f 100644 --- a/docs/basics/_examples/DL-101-133-111 +++ b/docs/basics/_examples/DL-101-133-111 @@ -1,5 +1,5 @@ $ git log -p -n 1 -commit 264f46ee03aecb456bc3883865ee77d9a38f71ad +commit 264f46ee✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 @@ -30,7 +30,7 @@ index d1a536a..963d5a8 120000 --- a/pairwise_relationships.png +++ b/pairwise_relationships.png @@ -1 +1 @@ --.git/annex/objects/gX/Mf/MD5E-s260804--b017ecdbfadc21e7ea99be9029d684a0.png/MD5E-s260804--b017ecdbfadc21e7ea99be9029d684a0.png +-.git/annex/objects/gX/Mf/✂/MD5E-s260804--b017ecdb✂MD5.png \ No newline at end of file -+.git/annex/objects/q1/gp/MD5E-s261062--025dc493ec2da6f9f79eb1ce8512cbec.png/MD5E-s261062--025dc493ec2da6f9f79eb1ce8512cbec.png ++.git/annex/objects/q1/gp/✂/MD5E-s261062--025dc493✂MD5.png \ No newline at end of file diff --git a/docs/basics/_examples/DL-101-135-101 b/docs/basics/_examples/DL-101-135-101 index 519cde17b..e98411094 100644 --- a/docs/basics/_examples/DL-101-135-101 +++ b/docs/basics/_examples/DL-101-135-101 @@ -1,2 +1,2 @@ $ datalad --version -datalad 0.19.2 +datalad 0.19.3 diff --git a/docs/basics/_examples/DL-101-135-102 b/docs/basics/_examples/DL-101-135-102 index 1459f06d3..b6d8d6f4f 100644 --- a/docs/basics/_examples/DL-101-135-102 +++ b/docs/basics/_examples/DL-101-135-102 @@ -8,12 +8,12 @@ $ datalad wtf - config_file: /home/me/.config/python_keyring/keyringrc.cfg - data_root: /home/me/.local/share/python_keyring ## datalad - - version: 0.19.2 + - version: 0.19.3 ## dataset - branches: - - git-annex@ - - master@88db2a0 - - sct_computational_reproducibility@88db2a0 + - git-annex@✂GITSHA✂ + - master@442a384 + - sct_computational_reproducibility@442a384 - sct_create_a_dataset@e0ff3a7 - sct_datalad_rerun@4009576 - sct_input_and_output@a4044db @@ -22,7 +22,7 @@ $ datalad wtf - sct_looking_without_touching@afa2884 - sct_modify_content@9783a90 - sct_more_on_DYI_configurations@b21ea30 - - sct_more_on_dataset_nesting@bfcdc77 + - sct_more_on_dataset_nesting@b4e773b - sct_networking@b232c62 - sct_populate_a_dataset@bcb0ffe - sct_retrace_and_reenact@26595f2 @@ -103,7 +103,7 @@ $ datalad wtf - containers-run - containers_run - module: datalad_container - - version: 1.2.1 + - version: 1.2.2 - deprecated: - description: Deprecated functionality - entrypoints: @@ -311,7 +311,7 @@ $ datalad wtf - generation: 2 - module: datalad_metalad.extractors.legacy.audio - container_inspect: - - distribution: datalad-container 1.2.1 + - distribution: datalad-container 1.2.2 - doc: Populates metadata singularity/apptainer version and `inspect` output. - generation: 4 - load_error: TypeError(get_version() takes 0 positional arguments but 1 was given) diff --git a/docs/basics/_examples/DL-101-135-103 b/docs/basics/_examples/DL-101-135-103 index b6afd99d0..70039d214 100644 --- a/docs/basics/_examples/DL-101-135-103 +++ b/docs/basics/_examples/DL-101-135-103 @@ -30,16 +30,20 @@ The following location candidates are considered. For each candidate a cost is given in parenthesis, higher values indicate higher cost, and thus lower priority: +- A datalad URL recorded in `.gitmodules` (cost 590). This allows for + datalad URLs that require additional handling/resolution by datalad, like + ria-schemes (ria+http, ria+ssh, etc.) + +- A URL or absolute path recorded for git in `.gitmodules` (cost 600). + - URL of any configured superdataset remote that is known to have the desired submodule commit, with the submodule path appended to it. - There can be more than one candidate (cost 500). + There can be more than one candidate (cost 650). - In case `.gitmodules` contains a relative path instead of a URL, the URL of any configured superdataset remote that is known to have the desired submodule commit, with this relative path appended to it. - There can be more than one candidate (cost 500). - -- A URL or absolute path recorded in `.gitmodules` (cost 600). + There can be more than one candidate (cost 650). - In case `.gitmodules` contains a relative path as a URL, the absolute path of the superdataset, appended with this relative path (cost 900). @@ -62,7 +66,7 @@ record. For convenience, an existing `datalad-id` record is made available under the shortened name ID. Additionally, the URL of any configured remote that contains the respective -submodule commit is available as `remote-` properties, where NAME +submodule commit is available as `remoteurl-` property, where NAME is the configured remote name. Hence, such a template could be `http://example.org/datasets/{id}` or diff --git a/docs/basics/_examples/DL-101-135-105 b/docs/basics/_examples/DL-101-135-105 index 417a382aa..bdfbca7b9 100644 --- a/docs/basics/_examples/DL-101-135-105 +++ b/docs/basics/_examples/DL-101-135-105 @@ -1,5 +1,5 @@ $ datalad --log-level debug status -[DEBUG] Command line args 1st pass for DataLad 0.19.2. Parsed: Namespace() Unparsed: ['status'] +[DEBUG] Command line args 1st pass for DataLad 0.19.3. Parsed: Namespace() Unparsed: ['status'] [DEBUG] Building doc for [DEBUG] Parsing known args among ['VIRTUALENV/bin/datalad', '--log-level', 'debug', 'status'] [DEBUG] Determined class of decorated function: diff --git a/docs/basics/_examples/DL-101-136-101 b/docs/basics/_examples/DL-101-136-101 index 323ade03b..e80e526a1 100644 --- a/docs/basics/_examples/DL-101-136-101 +++ b/docs/basics/_examples/DL-101-136-101 @@ -1,10 +1,8 @@ $ cd books/ $ mv TLCL.pdf The_Linux_Command_Line.pdf -$ ls -lah The_Linux_Command_Line.pdf -total 24K -drwxr-xr-x 2 elena elena 4.0K 2019-06-18 16:13 . -drwxr-xr-x 8 elena elena 4.0K 2019-06-18 16:13 .. -lrwxrwxrwx 1 elena elena 131 2019-06-18 16:13 bash_guide.pdf -> ../.git/annex/objects/WF/Gq/MD5E-s1198170--0ab2c121bcf68d7278af266f6a399c5f.pdf/MD5E-s1198170--0ab2c121bcf68d7278af266f6a399c5f.pdf -lrwxrwxrwx 1 elena elena 131 2019-06-18 16:13 byte-of-python.pdf -> ../.git/annex/objects/P5/qK/MD5E-s2693891--e61afe4b3c5d76c849c4e61f6547ed03.pdf/MD5E-s2693891--e61afe4b3c5d76c849c4e61f6547ed03.pdf -lrwxrwxrwx 1 elena elena 133 2019-06-18 16:13 progit.pdf -> ../.git/annex/objects/G6/Gj/MD5E-s12465653--05cd7ed561d108c9bcf96022bc78a92c.pdf/MD5E-s12465653--05cd7ed561d108c9bcf96022bc78a92c.pdf -lrwxrwxrwx 1 elena elena 131 2019-06-18 16:13 The_Linux_Command_Line.pdf -> ../.git/annex/objects/jf/3M/MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf/MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf +$ ls -lh The_Linux_Command_Line.pdf +total 16K +lrwxrwxrwx 1 elena elena 131 2019-06-18 16:13 bash_guide.pdf -> ../.git/annex/objects/WF/Gq/✂/MD5E-s1198170--0ab2c121✂MD5.pdf +lrwxrwxrwx 1 elena elena 131 2019-06-18 16:13 byte-of-python.pdf -> ../.git/annex/objects/P5/qK/✂/MD5E-s2693891--e61afe4b✂MD5.pdf +lrwxrwxrwx 1 elena elena 133 2019-06-18 16:13 progit.pdf -> ../.git/annex/objects/G6/Gj/✂/MD5E-s12465653--05cd7ed5✂MD5.pdf +lrwxrwxrwx 1 elena elena 131 2019-06-18 16:13 The_Linux_Command_Line.pdf -> ../.git/annex/objects/jf/3M/✂/MD5E-s2120211--06d1efcb✂MD5.pdf diff --git a/docs/basics/_examples/DL-101-136-104 b/docs/basics/_examples/DL-101-136-104 index ee6e6fc44..8a2bb94a8 100644 --- a/docs/basics/_examples/DL-101-136-104 +++ b/docs/basics/_examples/DL-101-136-104 @@ -1,5 +1,5 @@ $ git log -n 1 -p -commit 6d1d9bc3a4c3f932fd9b74576852c09d5505226b +commit 6d1d9bc3✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 diff --git a/docs/basics/_examples/DL-101-136-121 b/docs/basics/_examples/DL-101-136-121 index 9aac1ab65..831743ac5 100644 --- a/docs/basics/_examples/DL-101-136-121 +++ b/docs/basics/_examples/DL-101-136-121 @@ -1,3 +1,3 @@ $ cd ../ $ ls -l TLCL.pdf -lrwxrwxrwx 1 elena elena 131 2019-06-18 16:13 TLCL.pdf -> ../.git/annex/objects/jf/3M/MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf/MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf +lrwxrwxrwx 1 elena elena 131 2019-06-18 16:13 TLCL.pdf -> ../.git/annex/objects/jf/3M/✂/MD5E-s2120211--06d1efcb✂MD5.pdf diff --git a/docs/basics/_examples/DL-101-136-122 b/docs/basics/_examples/DL-101-136-122 index 50b426628..de1ea725a 100644 --- a/docs/basics/_examples/DL-101-136-122 +++ b/docs/basics/_examples/DL-101-136-122 @@ -7,4 +7,4 @@ action summary: add (ok: 1) delete (ok: 1) save (ok: 1) -lrwxrwxrwx 1 elena elena 128 2019-06-18 16:13 TLCL.pdf -> .git/annex/objects/jf/3M/MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf/MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf +lrwxrwxrwx 1 elena elena 128 2019-06-18 16:13 TLCL.pdf -> .git/annex/objects/jf/3M/✂/MD5E-s2120211--06d1efcb✂MD5.pdf diff --git a/docs/basics/_examples/DL-101-136-123 b/docs/basics/_examples/DL-101-136-123 index c28a46212..1bbc103b0 100644 --- a/docs/basics/_examples/DL-101-136-123 +++ b/docs/basics/_examples/DL-101-136-123 @@ -1,5 +1,5 @@ $ git log -n 1 -p -commit fc12a6c2591822c9ea0e724d79f176b859941a96 +commit fc12a6c2✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 @@ -11,7 +11,7 @@ index 0000000..34328e2 --- /dev/null +++ b/TLCL.pdf @@ -0,0 +1 @@ -+.git/annex/objects/jf/3M/MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf/MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf ++.git/annex/objects/jf/3M/✂/MD5E-s2120211--06d1efcb✂MD5.pdf \ No newline at end of file diff --git a/books/TLCL.pdf b/books/TLCL.pdf deleted file mode 120000 @@ -19,5 +19,5 @@ index 4c84b61..0000000 --- a/books/TLCL.pdf +++ /dev/null @@ -1 +0,0 @@ --../.git/annex/objects/jf/3M/MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf/MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf +-../.git/annex/objects/jf/3M/✂/MD5E-s2120211--06d1efcb✂MD5.pdf \ No newline at end of file diff --git a/docs/basics/_examples/DL-101-136-128 b/docs/basics/_examples/DL-101-136-128 index c56952f5f..e59a79f68 100644 --- a/docs/basics/_examples/DL-101-136-128 +++ b/docs/basics/_examples/DL-101-136-128 @@ -1,6 +1,6 @@ $ cd midterm_project $ git log notes.txt -commit c4701000ff9209fbdea26e7881f9ed2fdbc237e8 +commit c4701000✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 diff --git a/docs/basics/_examples/DL-101-136-136 b/docs/basics/_examples/DL-101-136-136 index c7506a65f..87be2fa41 100644 --- a/docs/basics/_examples/DL-101-136-136 +++ b/docs/basics/_examples/DL-101-136-136 @@ -1,5 +1,5 @@ $ cd midterm_project $ git annex whereis TLCL.pdf whereis TLCL.pdf (1 copy) - REDACTED-UUID -- me@appveyor-vm:~/dl-101/DataLad-101/midterm_project [here] + ✂UUID✂ -- me@appveyor-vm:~/dl-101/DataLad-101/midterm_project [here] ok diff --git a/docs/basics/_examples/DL-101-136-142 b/docs/basics/_examples/DL-101-136-142 index 4b9609707..0ac74e770 100644 --- a/docs/basics/_examples/DL-101-136-142 +++ b/docs/basics/_examples/DL-101-136-142 @@ -1,5 +1,5 @@ $ git log -n 1 -p -commit fbe4aac9e0cb0665e84904b3ba82becdb30a51cb +commit fbe4aac9✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 @@ -11,5 +11,5 @@ index 0000000..34328e2 --- /dev/null +++ b/copyofTLCL.pdf @@ -0,0 +1 @@ -+.git/annex/objects/jf/3M/MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf/MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf ++.git/annex/objects/jf/3M/✂/MD5E-s2120211--06d1efcb✂MD5.pdf \ No newline at end of file diff --git a/docs/basics/_examples/DL-101-136-143 b/docs/basics/_examples/DL-101-136-143 index 0a262b70c..8e4ca14b4 100644 --- a/docs/basics/_examples/DL-101-136-143 +++ b/docs/basics/_examples/DL-101-136-143 @@ -1,4 +1,4 @@ $ ls -l copyofTLCL.pdf $ ls -l books/TLCL.pdf -lrwxrwxrwx 1 elena elena 128 2019-06-18 16:13 copyofTLCL.pdf -> .git/annex/objects/jf/3M/MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf/MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf -lrwxrwxrwx 1 elena elena 131 2019-06-18 16:13 books/TLCL.pdf -> ../.git/annex/objects/jf/3M/MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf/MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf +lrwxrwxrwx 1 elena elena 128 2019-06-18 16:13 copyofTLCL.pdf -> .git/annex/objects/jf/3M/✂/MD5E-s2120211--06d1efcb✂MD5.pdf +lrwxrwxrwx 1 elena elena 131 2019-06-18 16:13 books/TLCL.pdf -> ../.git/annex/objects/jf/3M/✂/MD5E-s2120211--06d1efcb✂MD5.pdf diff --git a/docs/basics/_examples/DL-101-136-145 b/docs/basics/_examples/DL-101-136-145 index 68753d804..200d74345 100644 --- a/docs/basics/_examples/DL-101-136-145 +++ b/docs/basics/_examples/DL-101-136-145 @@ -1,5 +1,5 @@ $ datalad copy-file notes.txt midterm_project -d midterm_project -[INFO] Copying non-annexed file or copy into non-annex dataset: /home/me/dl-101/DataLad-101/notes.txt -> .git/annex/objects/31/wQ/SHA256E-s1198170--d08f2c7b8492c574239ca3be131fb8cffe39e36262d6b24a20cb5abae4d4402c.pdf/SHA256E-s1198170--d08f2c7b8492c574239ca3be131fb8cffe39e36262d6b24a20cb5abae4d4402c.pdf +├── bash_guide.pdf -> .git/annex/objects/31/wQ/SHA256E-s1198170--d08f2c7b✂SHA162d6b24a20cb5abae4d4402c.pdf/SHA256E-s1198170--d08f2c7b✂SHA162d6b24a20cb5abae4d4402c.pdf ├── CHANGELOG.md ├── code │   ├── README.md │   └── script.py ├── input -│   └── iris.csv -> .git/annex/objects/qz/Jg/MD5E-s3975--341a3b5244f213282b7b0920b729c592.csv/MD5E-s3975--341a3b5244f213282b7b0920b729c592.csv -├── notes.txt -> .git/annex/objects/Km/p3/MD5E-s5082--f5d5883fe98936b23617aca83fe1c508.txt/MD5E-s5082--f5d5883fe98936b23617aca83fe1c508.txt -├── pairwise_relationships.png -> .git/annex/objects/q1/gp/MD5E-s261062--025dc493ec2da6f9f79eb1ce8512cbec.png/MD5E-s261062--025dc493ec2da6f9f79eb1ce8512cbec.png -├── prediction_report.csv -> .git/annex/objects/8q/6M/MD5E-s345--a88cab39b1a5ec59ace322225cc88bc9.csv/MD5E-s345--a88cab39b1a5ec59ace322225cc88bc9.csv +│   └── iris.csv -> .git/annex/objects/qz/Jg/✂/MD5E-s3975--341a3b52✂MD5.csv +├── notes.txt -> .git/annex/objects/Km/p3/✂/MD5E-s5082--f5d5883f✂MD5.txt +├── pairwise_relationships.png -> .git/annex/objects/q1/gp/✂/MD5E-s261062--025dc493✂MD5.png +├── prediction_report.csv -> .git/annex/objects/8q/6M/✂/MD5E-s345--a88cab39✂MD5.csv └── README.md 2 directories, 9 files diff --git a/docs/basics/_examples/DL-101-136-149 b/docs/basics/_examples/DL-101-136-149 index 2f93b4ce5..f21ea6bbd 100644 --- a/docs/basics/_examples/DL-101-136-149 +++ b/docs/basics/_examples/DL-101-136-149 @@ -1,6 +1,6 @@ $ cd midterm_project $ git log notes.txt -commit e43a90dd675bef91be8ab3b05a4965dad4c24ba9 +commit e43a90dd✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 diff --git a/docs/basics/_examples/DL-101-136-160 b/docs/basics/_examples/DL-101-136-160 index 4d933f27e..ccf5b4b27 100644 --- a/docs/basics/_examples/DL-101-136-160 +++ b/docs/basics/_examples/DL-101-136-160 @@ -18,7 +18,7 @@ $ cat .git/config [remote "roommate"] url = ../mock_user/DataLad-101 fetch = +refs/heads/*:refs/remotes/roommate/* - annex-uuid = REDACTED-RANDOM-UUID + annex-uuid = ✂UUID✂ annex-ignore = false [submodule "midterm_project"] active = true diff --git a/docs/basics/_examples/DL-101-136-164 b/docs/basics/_examples/DL-101-136-164 index ed3bf8821..ea244dd61 100644 --- a/docs/basics/_examples/DL-101-136-164 +++ b/docs/basics/_examples/DL-101-136-164 @@ -18,7 +18,7 @@ $ cat .git/config [remote "roommate"] url = ../mock_user/onemoredir/DataLad-101 fetch = +refs/heads/*:refs/remotes/roommate/* - annex-uuid = REDACTED-RANDOM-UUID + annex-uuid = ✂UUID✂ annex-ignore = false [submodule "midterm_project"] active = true diff --git a/docs/basics/_examples/DL-101-136-168 b/docs/basics/_examples/DL-101-136-168 index 1b4220084..f0930a9a1 100644 --- a/docs/basics/_examples/DL-101-136-168 +++ b/docs/basics/_examples/DL-101-136-168 @@ -1,5 +1,5 @@ $ git log -p -n 1 -commit a7188cdedb3c419e297b982fc9e4b800969bb9f4 +commit a7188cde✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 @@ -11,12 +11,12 @@ index 0000000..4c84b61 --- /dev/null +++ b/books/TLCL.pdf @@ -0,0 +1 @@ -+../.git/annex/objects/jf/3M/MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf/MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf ++../.git/annex/objects/jf/3M/✂/MD5E-s2120211--06d1efcb✂MD5.pdf \ No newline at end of file diff --git a/midterm_project b/midterm_project index cbfdcb5..ccbba1e 160000 --- a/midterm_project +++ b/midterm_project @@ -1 +1 @@ --Subproject commit cbfdcb5ddffb1519d6d5fbdeb80af65a57808103 -+Subproject commit ccbba1ecfb7a6411c8419a27fb500bd486bb2b93 +-Subproject commit cbfdcb5d✂SHA1 ++Subproject commit ccbba1ec✂SHA1 diff --git a/docs/basics/_examples/DL-101-136-170 b/docs/basics/_examples/DL-101-136-170 index 6cc43d366..1f7bfccae 100644 --- a/docs/basics/_examples/DL-101-136-170 +++ b/docs/basics/_examples/DL-101-136-170 @@ -11,4 +11,4 @@ action summary: add (ok: 1) download_url (ok: 1) save (ok: 1) -lrwxrwxrwx 1 elena elena 128 2019-06-18 16:13 2013 flowers.jpg -> .git/annex/objects/7q/9Z/MD5E-s4487679--3898ef0e3497a89fa1ea74698992bf51.jpg/MD5E-s4487679--3898ef0e3497a89fa1ea74698992bf51.jpg +lrwxrwxrwx 1 elena elena 128 2019-06-18 16:13 2013 flowers.jpg -> .git/annex/objects/7q/9Z/✂/MD5E-s4487679--3898ef0e✂MD5.jpg diff --git a/docs/basics/_examples/DL-101-137-105 b/docs/basics/_examples/DL-101-137-105 index 5fe5f8102..d9fa04360 100644 --- a/docs/basics/_examples/DL-101-137-105 +++ b/docs/basics/_examples/DL-101-137-105 @@ -1,5 +1,5 @@ $ git log -p -1 -commit 88310a7c528bb8ce76c41bfe217f0d2df46db417 +commit 88310a7c✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 diff --git a/docs/basics/_examples/DL-101-137-107 b/docs/basics/_examples/DL-101-137-107 index e0325c58e..6ba93aaa9 100644 --- a/docs/basics/_examples/DL-101-137-107 +++ b/docs/basics/_examples/DL-101-137-107 @@ -1,2 +1,2 @@ -$ git reset --mixed 5206254527f381da53ba9f3b77f4c811aaa5fbaf +$ git reset --mixed 52062545✂SHA1 diff --git a/docs/basics/_examples/DL-101-137-112 b/docs/basics/_examples/DL-101-137-112 index a424204a7..02be3694b 100644 --- a/docs/basics/_examples/DL-101-137-112 +++ b/docs/basics/_examples/DL-101-137-112 @@ -1,11 +1,11 @@ $ git log -2 -commit c48923fb74df9f75edb14b496e561c07f75ac4c7 +commit c48923fb✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 save my favorite Git joke -commit 5206254527f381da53ba9f3b77f4c811aaa5fbaf +commit 52062545✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 diff --git a/docs/basics/_examples/DL-101-137-114 b/docs/basics/_examples/DL-101-137-114 index 310c50ddb..0c69a18e0 100644 --- a/docs/basics/_examples/DL-101-137-114 +++ b/docs/basics/_examples/DL-101-137-114 @@ -1,2 +1,2 @@ $ ls -l apdffile.pdf -lrwxrwxrwx 1 elena elena 122 2019-06-18 16:13 apdffile.pdf -> .git/annex/objects/Jx/WM/MD5E-s1216--b531bdd38d3c895373706fe71d45c72a.pdf/MD5E-s1216--b531bdd38d3c895373706fe71d45c72a.pdf +lrwxrwxrwx 1 elena elena 122 2019-06-18 16:13 apdffile.pdf -> .git/annex/objects/4w/78/✂/MD5E-s1216--2a96ec70✂MD5.pdf diff --git a/docs/basics/_examples/DL-101-137-117 b/docs/basics/_examples/DL-101-137-117 index a78b5f937..ac2288e6c 100644 --- a/docs/basics/_examples/DL-101-137-117 +++ b/docs/basics/_examples/DL-101-137-117 @@ -1,4 +1,4 @@ $ git log -n 3 --oneline -7c50278 [DATALAD] Recorded changes +2ebdb40 [DATALAD] Recorded changes c48923f save my favorite Git joke 5206254 remove obsolete subds diff --git a/docs/basics/_examples/DL-101-137-118 b/docs/basics/_examples/DL-101-137-118 index 0fff23663..00f793efa 100644 --- a/docs/basics/_examples/DL-101-137-118 +++ b/docs/basics/_examples/DL-101-137-118 @@ -1,2 +1,2 @@ -$ git reset --mixed c48923fb74df9f75edb14b496e561c07f75ac4c7 +$ git reset --mixed c48923fb✂SHA1 diff --git a/docs/basics/_examples/DL-101-137-122 b/docs/basics/_examples/DL-101-137-122 index 6a850e41e..64e6c878e 100644 --- a/docs/basics/_examples/DL-101-137-122 +++ b/docs/basics/_examples/DL-101-137-122 @@ -1,7 +1,7 @@ -$ git checkout afa2884ebb38d125c0a9e3331f3a217c47ad76c7 +$ git checkout afa2884e✂SHA1 warning: unable to rmdir 'midterm_project': Directory not empty -Note: switching to 'afa2884ebb38d125c0a9e3331f3a217c47ad76c7'. +Note: switching to 'afa2884e✂SHA1'. You are in 'detached HEAD' state. You can look around, make experimental changes and commit them, and you can discard any commits you make in this diff --git a/docs/basics/_examples/DL-101-137-127 b/docs/basics/_examples/DL-101-137-127 index caeba49e1..9662e0cbe 100644 --- a/docs/basics/_examples/DL-101-137-127 +++ b/docs/basics/_examples/DL-101-137-127 @@ -1,5 +1,5 @@ -$ git cat-file --textconv afa2884ebb38d125c0a9e3331f3a217c47ad76c7:notes.txt +$ git cat-file --textconv afa2884e✂SHA1:notes.txt One can create a new dataset with 'datalad create [--description] PATH'. The dataset is created empty diff --git a/docs/basics/_examples/DL-101-137-133 b/docs/basics/_examples/DL-101-137-133 index ff3c6b420..72142b4ff 100644 --- a/docs/basics/_examples/DL-101-137-133 +++ b/docs/basics/_examples/DL-101-137-133 @@ -1,3 +1,3 @@ -$ git reset --hard c48923fb74df9f75edb14b496e561c07f75ac4c7 +$ git reset --hard c48923fb✂SHA1 HEAD is now at c48923f save my favorite Git joke diff --git a/docs/basics/_examples/DL-101-137-144 b/docs/basics/_examples/DL-101-137-144 index aab052251..9ed286692 100644 --- a/docs/basics/_examples/DL-101-137-144 +++ b/docs/basics/_examples/DL-101-137-144 @@ -1,5 +1,5 @@ -$ git revert 73b49af91e0244cacd4ef869f0dc484313fdad87 +$ git revert 73b49af9✂SHA1 [master 33ad93e] Revert "did a bad modification" Date: Tue Jun 18 16:13:00 2019 +0000 1 file changed, 1 deletion(-) diff --git a/docs/basics/_examples/DL-101-137-146 b/docs/basics/_examples/DL-101-137-146 index 7a7640e51..96f15f596 100644 --- a/docs/basics/_examples/DL-101-137-146 +++ b/docs/basics/_examples/DL-101-137-146 @@ -1,19 +1,19 @@ $ git log -n 3 -commit 33ad93e48f93231ffb5fe0bb11d96f8c8aab9c5b +commit 33ad93e4✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 Revert "did a bad modification" - This reverts commit 73b49af91e0244cacd4ef869f0dc484313fdad87. + This reverts commit 73b49af9✂SHA1. -commit 4e8f18ea09d15b2afa918df54093429b0bb3e564 +commit 4e8f18ea✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 add note on helpful git resource -commit 73b49af91e0244cacd4ef869f0dc484313fdad87 +commit 73b49af9✂SHA1 Author: Elena Piscopia Date: Tue Jun 18 16:13:00 2019 +0000 diff --git a/docs/basics/_examples/DL-101-139-102 b/docs/basics/_examples/DL-101-139-102 index a3cb0c835..ae17c1a6c 100644 --- a/docs/basics/_examples/DL-101-139-102 +++ b/docs/basics/_examples/DL-101-139-102 @@ -12,7 +12,7 @@ copy(ok): books/progit.pdf (file) [to gin...] [INFO] Start compressing objects [INFO] Start writing objects [INFO] Start resolving deltas -publish(ok): . (dataset) [refs/heads/git-annex->gin:refs/heads/git-annex FROM..TO (REDACTED)] +publish(ok): . (dataset) [refs/heads/git-annex->gin:refs/heads/git-annex ✂FROM✂..✂TO✂] publish(ok): . (dataset) [refs/heads/master->gin:refs/heads/master [new branch]] [INFO] Finished push of Dataset(/home/me/dl-101/DataLad-101) action summary: diff --git a/docs/basics/_examples/DL-101-141-101 b/docs/basics/_examples/DL-101-141-101 index 3c6e4b902..a2c840c61 100644 --- a/docs/basics/_examples/DL-101-141-101 +++ b/docs/basics/_examples/DL-101-141-101 @@ -12,7 +12,7 @@ copy(ok): books/byte-of-python.pdf (file) [to roommate...] [INFO] Start writing objects [INFO] Start resolving deltas [INFO] Finished -publish(ok): . (dataset) [refs/heads/git-annex->roommate:refs/heads/git-annex FROM..TO (REDACTED)] +publish(ok): . (dataset) [refs/heads/git-annex->roommate:refs/heads/git-annex ✂FROM✂..✂TO✂] publish(error): . (dataset) [refs/heads/master->roommate:refs/heads/master [remote rejected] (branch is currently checked out)] [INFO] Finished push of Dataset(/home/me/dl-101/DataLad-101) action summary: diff --git a/docs/beyond_basics/101-182-catalog.rst b/docs/beyond_basics/101-182-catalog.rst index d6c6ecbcc..f103ccd35 100644 --- a/docs/beyond_basics/101-182-catalog.rst +++ b/docs/beyond_basics/101-182-catalog.rst @@ -3,6 +3,10 @@ DataCat - a shiny front-end for your dataset -------------------------------------------- +.. importantnote:: Dependency note + + This section depends on ``datalad-catalog`` version ``1.0.1`` or later. + If you're looking for ways to showcase your datasets, look no further than the `datalad-catalog extension `_. This extension takes your favorite datasets and metadata, and generates a static website from it. @@ -122,21 +126,22 @@ the catalog generation process. The main catalog functionality """""""""""""""""""""""""""""" As you likely saw in the ``--help`` information, DataLad Catalog has several main commands to support -the process of catalog generation. These include: +the process of catalog generation. These include ``catalog-``: - ``create``: create a new catalog -- ``add``: add metadata to a catalog -- ``remove``: remove metadata from a catalog +- ``add``: add metadata entries to a catalog +- ``remove``: remove metadata entries from a catalog - ``serve``: serve the catalog locally on an http server for testing purposes -- ``set-super``: set the so-called super-dataset of the catalog, i.e. the dataset that will be displayed as the catalog's home page - ``validate``: validate metadata according to the catalog schema -- ``workflow-new``: run a multi-step workflow for extracting and converting metadata from a super-dataset and its subdatasets, and adding these to a newly created catalog -- ``workflow-update``: run a multi-step workflow for extracting and converting metadata from a new subdataset of an existing super-dataset, and adding these to an existing catalog +- ``set``: set catalog properties, such as the dataset that will be displayed as the catalog's ``home`` page +- ``get``: get catalog properties, such as the catalog's configuration +- ``translate``: translate a metalad-extracted metadata item from a particular source structure into the catalog schema +- ``workflow``: run a multi-step workflow for recursive metadata extraction, translating metadata to the catalog schema, and adding the translated metadata to a new catalog Creating a new catalog """""""""""""""""""""" -With the ``create`` subcommand, you can create a new catalog. Let's try it out! +With the ``catalog-create`` command, you can create a new catalog. Let's try it out! .. runrecord:: _examples/DL-101-182-102 :language: console @@ -144,10 +149,10 @@ With the ``create`` subcommand, you can create a new catalog. Let's try it out! :cast: catalog_basics :notes: Let's test the installation and look at the help information - $ datalad catalog create --catalog-dir data-cat + $ datalad catalog-create --catalog data-cat The catalog ``create(ok)`` result shows that the catalog was successfully created at the specified location (``./data-cat``), -which was passed to the command with the ``-c/--catalog-dir`` flag. +which was passed to the command with the ``-c/--catalog`` flag. Now we can inspect the catalog's content with the ``tree`` command: @@ -164,11 +169,12 @@ As you can see, the catalog's root directory contains subdirectories for: - ``artwork``: images that make the catalog pretty - ``assets``: mainly the JavaScript and CSS code that underlie the user interface of the catalog. - ``metadata``: this is where metadata content for any datasets and files rendered by the catalog will be contained +- ``schema``: a copy of the schema files that metadata entries of this catalog conform to - ``templates``: HTML templates used for rendering different views of the catalog It also contains an ``index.html`` file, which is the main catalog HTML content that will be served to users in their browsers, as well as a ``config.json`` file, which contains default and user-specified configuration settings for the catalog rendering. -These directories and files are all populated into their respective locations by the ``datalad catalog create`` command. +These directories and files are all populated into their respective locations by the ``datalad catalog-create`` command. Next, let's have a look at the catalog that we just created. @@ -182,7 +188,7 @@ With the ``serve`` subcommand, you can serve the content of a catalog locally vi .. code-block:: bash - $ datalad catalog serve --catalog-dir data-cat + $ datalad catalog-serve --catalog data-cat If you navigate to the data-cat location (a URL is provided in the ``serve`` command output, typically ``http://localhost:8000/``), the catalog should be rendered. You should see the 404 page, since there is no metadata in the catalog yet. @@ -196,15 +202,18 @@ Adding catalog metadata """"""""""""""""""""""" The catalog is, of course, only as useful as the metadata that is contained within it. -So let's add some! This can easily be done with the ``add`` subcommand and ``-m/--metadata`` flag: +So let's add some! This can easily be done with the ``catalog-add`` command and ``-m/--metadata`` flag: .. code-block:: bash - $ datalad catalog add --catalog-dir --metadata + $ datalad catalog-add --catalog --metadata + +DataLad Catalog accepts metadata input in the multiple formats, including: -DataLad Catalog accepts metadata input in the form of json lines, i.e. a text file -(typically, ``.json``, ``.jsonl``, or ``.txt``) where each line is a single, correctly formatted, -JSON object. +- a path to a file (typically with extension ``.json``, ``.jsonl``, or ``.txt``) containing JSON lines, + where each line is a single, correctly formatted, JSON object. +- JSON lines from STDIN +- a JSON serialized string Before we add metadata to our `data-cat` catalog, we'll first introduce a few important concepts and tools. @@ -275,16 +284,19 @@ First a dataset: "description":"Nothing to see here" } ], - "extractors_used": [ - { - "extractor_name": "stephan_manual", - "extractor_version": "1", - "extraction_parameter": {}, - "extraction_time": 1652340647.0, + "metadata_sources": { + "key_source_map": {}, + "sources": [ + { + "source_name": "stephan_manual", + "source_version": "1", + "source_parameter": {}, + "source_time": 1652340647.0, "agent_name": "Stephan Heunis", "agent_email": "" - } - ] + } + ] + } } And then two files of the dataset: @@ -297,16 +309,19 @@ And then two files of the dataset: "dataset_version": "dae38cf901995aace0dde5346515a0134f919523", "contentbytesize": 1403 "path": "README", - "extractors_used": [ - { - "extractor_name": "stephan_manual", - "extractor_version": "1", - "extraction_parameter": {}, - "extraction_time": 1652340647.0, - "agent_name": "Stephan Heunis", - "agent_email": "" - } - ] + "metadata_sources": { + "key_source_map": {}, + "sources": [ + { + "source_name": "stephan_manual", + "source_version": "1", + "source_parameter": {}, + "source_time": 1652340647.0, + "agent_name": "Stephan Heunis", + "agent_email": "" + } + ] + } } { "type": "file" @@ -314,24 +329,27 @@ And then two files of the dataset: "dataset_version": "dae38cf901995aace0dde5346515a0134f919523", "contentbytesize": 15572 "path": "main_data/main_results.png", - "extractors_used": [ - { - "extractor_name": "stephan_manual", - "extractor_version": "1", - "extraction_parameter": {}, - "extraction_time": 1652340647.0, - "agent_name": "Stephan Heunis", - "agent_email": "" - } - ] + "metadata_sources": { + "key_source_map": {}, + "sources": [ + { + "source_name": "stephan_manual", + "source_version": "1", + "source_parameter": {}, + "source_time": 1652340647.0, + "agent_name": "Stephan Heunis", + "agent_email": "" + } + ] + } } Validating your metadata """""""""""""""""""""""" -For convenience during metadata setup and catalog generation, the Catalog has the -``validate`` subcommand that let's you test whether your metadata conforms to the -Catalog schema before adding it. Let's test it on the toy metadata. +For convenience during metadata setup and catalog generation, the ``catalog-validate`` +command that let's you test whether your metadata conforms to the +catalog schema before adding it. Let's test it on the toy metadata. First we'll put the metadata into a file, which is the format currently accepted when adding metadata to a catalog: @@ -343,9 +361,9 @@ when adding metadata to a catalog: :notes: Add metadata objects to a text file $ touch toy_metadata.jsonl - $ echo '{ "type": "dataset", "dataset_id": "5df8eb3a-95c5-11ea-b4b9-a0369f287950", "dataset_version": "dae38cf901995aace0dde5346515a0134f919523", "name": "My toy dataset", "short_name": "My toy dataset", "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus nec justo tellus. Nunc sagittis eleifend magna, eu blandit arcu tincidunt eu. Mauris pharetra justo nec volutpat euismod. Curabitur bibendum vitae nunc a pharetra. Donec non rhoncus risus, ac consequat purus. Pellentesque ultricies ut enim non luctus. Sed viverra dolor enim, sed blandit lorem interdum sit amet. Aenean tincidunt et dolor sit amet tincidunt. Vivamus in sollicitudin ligula. Curabitur volutpat sapien erat, eget consectetur mauris dapibus a. Phasellus fringilla justo ligula, et fringilla tortor ullamcorper id. Praesent tristique lacus purus, eu convallis quam vestibulum eget. Donec ullamcorper mi neque, vel tincidunt augue porttitor vel.", "doi": "", "url": "https://github.com/jsheunis/multi-echo-super", "license": { "name": "CC BY 4.0", "url": "https://creativecommons.org/licenses/by/4.0/" }, "authors": [ { "givenName": "Stephan", "familyName": "Heunis"} ], "keywords": [ "lorum", "ipsum", "foxes" ], "funding": [ { "name": "Stephans Bank Account", "identifier": "No. 42", "description": "Nothing to see here" } ], "extractors_used": [ { "extractor_name": "stephan_manual", "extractor_version": "1", "extraction_parameter": {}, "extraction_time": 1652340647.0, "agent_name": "Stephan Heunis", "agent_email": "" } ] }' >> toy_metadata.jsonl - $ echo '{ "type": "file", "dataset_id": "5df8eb3a-95c5-11ea-b4b9-a0369f287950", "dataset_version": "dae38cf901995aace0dde5346515a0134f919523", "contentbytesize": 1403, "path": "README", "extractors_used": [ { "extractor_name": "stephan_manual", "extractor_version": "1", "extraction_parameter": {}, "extraction_time": 1652340647.0, "agent_name": "Stephan Heunis", "agent_email": "" } ] }' >> toy_metadata.jsonl - $ echo '{ "type": "file", "dataset_id": "5df8eb3a-95c5-11ea-b4b9-a0369f287950", "dataset_version": "dae38cf901995aace0dde5346515a0134f919523", "contentbytesize": 15572, "path": "main_data/main_results.png", "extractors_used": [ { "extractor_name": "stephan_manual", "extractor_version": "1", "extraction_parameter": {}, "extraction_time": 1652340647.0, "agent_name": "Stephan Heunis", "agent_email": "" } ] }' >> toy_metadata.jsonl + $ echo '{ "type": "dataset", "dataset_id": "5df8eb3a-95c5-11ea-b4b9-a0369f287950", "dataset_version": "dae38cf901995aace0dde5346515a0134f919523", "name": "My toy dataset", "short_name": "My toy dataset", "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus nec justo tellus. Nunc sagittis eleifend magna, eu blandit arcu tincidunt eu. Mauris pharetra justo nec volutpat euismod. Curabitur bibendum vitae nunc a pharetra. Donec non rhoncus risus, ac consequat purus. Pellentesque ultricies ut enim non luctus. Sed viverra dolor enim, sed blandit lorem interdum sit amet. Aenean tincidunt et dolor sit amet tincidunt. Vivamus in sollicitudin ligula. Curabitur volutpat sapien erat, eget consectetur mauris dapibus a. Phasellus fringilla justo ligula, et fringilla tortor ullamcorper id. Praesent tristique lacus purus, eu convallis quam vestibulum eget. Donec ullamcorper mi neque, vel tincidunt augue porttitor vel.", "doi": "", "url": "https://github.com/jsheunis/multi-echo-super", "license": { "name": "CC BY 4.0", "url": "https://creativecommons.org/licenses/by/4.0/" }, "authors": [ { "givenName": "Stephan", "familyName": "Heunis"} ], "keywords": [ "lorum", "ipsum", "foxes" ], "funding": [ { "name": "Stephans Bank Account", "identifier": "No. 42", "description": "Nothing to see here" } ], "metadata_sources": { "key_source_map": {}, "sources": [ { "source_name": "stephan_manual", "source_version": "1", "source_parameter": {}, "source_time": 1652340647.0, "agent_name": "Stephan Heunis", "agent_email": "" } ] } }' >> toy_metadata.jsonl + $ echo '{ "type": "file", "dataset_id": "5df8eb3a-95c5-11ea-b4b9-a0369f287950", "dataset_version": "dae38cf901995aace0dde5346515a0134f919523", "contentbytesize": 1403, "path": "README", "metadata_sources": { "key_source_map": {}, "sources": [ { "source_name": "stephan_manual", "source_version": "1", "source_parameter": {}, "source_time": 1652340647.0, "agent_name": "Stephan Heunis", "agent_email": "" } ] } }' >> toy_metadata.jsonl + $ echo '{ "type": "file", "dataset_id": "5df8eb3a-95c5-11ea-b4b9-a0369f287950", "dataset_version": "dae38cf901995aace0dde5346515a0134f919523", "contentbytesize": 15572, "path": "main_data/main_results.png", "metadata_sources": { "key_source_map": {}, "sources": [ { "source_name": "stephan_manual", "source_version": "1", "source_parameter": {}, "source_time": 1652340647.0, "agent_name": "Stephan Heunis", "agent_email": "" } ] } }' >> toy_metadata.jsonl Then we can validate the metadata in this file: @@ -355,7 +373,7 @@ Then we can validate the metadata in this file: :cast: catalog_basics :notes: Validate metadata according to the catalog schema - $ datalad catalog validate --metadata toy_metadata.jsonl + $ datalad catalog-validate --metadata toy_metadata.jsonl Great! This confirms that we have valid metadata :) @@ -373,9 +391,9 @@ Finally, we can add metadata! :cast: catalog_basics :notes: Validate metadata according to the catalog schema - $ datalad catalog add --catalog-dir data-cat --metadata toy_metadata.jsonl + $ datalad catalog-add --catalog data-cat --metadata toy_metadata.jsonl -The ``catalog add(ok)`` result indicates that our metadata was added successfully to the catalog. +The ``catalog-add(ok)`` result indicates that our metadata was added successfully to the catalog. You can inspect this by looking at the content of the metadata directory inside the catalog: .. runrecord:: _examples/DL-101-182-107 @@ -416,7 +434,7 @@ This saves loading time which makes the user experience more seamless. Viewing a particular dataset """""""""""""""""""""""""""" -So, that was everything that happened behind the scenes during the ``datalad catalog add`` procedure, +So, that was everything that happened behind the scenes during the ``datalad catalog-add`` procedure, but what does our updated catalog look like? Let's take a look. If you serve the catalog again and navigate to the localhost, you should see... no change?! @@ -449,20 +467,20 @@ the first with the files tab selected, and the second with the funding tab selec .. figure:: ../artwork/src/catalog/catalog_step_funding.png -Setting the default dataset -""""""""""""""""""""""""""" +Setting the catalog home page +""""""""""""""""""""""""""""" When one navigates to a specific catalog's root address, i.e. without a ``dataset_id`` and ``dataset_version`` -specified in the URL, the browser application checks if a so-called "superdataset" (a default or homepage dataset) -is specified for the catalog. If not, it renders the 404 page. +specified in the URL, the browser application checks if a home page is specified for the catalog. If not, +it renders the 404 page. -The specification of a superdataset could be useful for cases where the catalog, +The specification of a home page could be useful for cases where the catalog, when navigated to, should always render the top-level list of available datasets in the catalog (provided by the metadata as subdatasets to the superdataset). -Let's add our toy dataset as the catalog's superdataset, using the ``set-super`` subcommand -and additionally specifying the dataset's ``dataset_id`` (``-i/--dataset-id`` flag) and -``dataset_version`` (``-v/--dataset-version`` flag): +Let's add our toy dataset as the catalog's home page, using the ``catalog-set`` command +with the ``home`` property, and additionally specifying the dataset's ``dataset_id`` +(``-i/--dataset-id`` flag) and ``dataset_version`` (``-v/--dataset-version`` flag): .. runrecord:: _examples/DL-101-182-109 :language: console @@ -470,12 +488,12 @@ and additionally specifying the dataset's ``dataset_id`` (``-i/--dataset-id`` fl :cast: catalog_basics :notes: Add a superdataset to the catalog - $ datalad catalog set-super --catalog-dir data-cat --dataset-id 5df8eb3a-95c5-11ea-b4b9-a0369f287950 --dataset-version dae38cf901995aace0dde5346515a0134f919523 + $ datalad catalog-set --catalog data-cat --dataset-id 5df8eb3a-95c5-11ea-b4b9-a0369f287950 --dataset-version dae38cf901995aace0dde5346515a0134f919523 home -The catalog ``set-super(ok)`` result shows that the superdataset was successfully set +The catalog ``catalog-set(ok)`` result shows that the superdataset was successfully set for the catalog, and you will now also be able to see an additional ``super.json`` file in the catalog metadata directory. The content of this file is a simple JSON object specifying the -superdataset's ``dataset_id`` and ``dataset_version``: +main dataset's ``dataset_id`` and ``dataset_version``: .. runrecord:: _examples/DL-101-182-110 :language: console @@ -495,7 +513,7 @@ Catalog configuration A useful feature of the catalog process is to be able to configure certain properties according to your preferences. This is done with help of a config file (in either ``JSON`` or ``YAML`` format) -and the ``-y/--config-file`` flag during catalog generation. DataLad Catalog provides a default +and the ``-F/--config-file`` flag during catalog generation. DataLad Catalog provides a default config file with the following content: .. runrecord:: _examples/DL-101-182-111 @@ -506,7 +524,7 @@ config file with the following content: $ cat data-cat/config.json | jq . -If no config file is supplied to the ``create`` subcommand, the default is used. +If no config file is supplied to the ``catalog-create`` command, the default is used. Let's create a new toy catalog with a new config, specifying a new name, a new logo, and new colors for the links. This will be the content of the config file, in ``YAML`` format: @@ -527,7 +545,7 @@ This will be the content of the config file, in ``YAML`` format: link_hover_color: "#A9FDAC" # hex color code # Handling multiple metadata sources - property_source: + property_sources: dataset: {} EOT @@ -540,7 +558,7 @@ We'll ensure that the new custom logo is available locally: :cast: catalog_basics :notes: Get the custom logo - $ wget -q -O datalad_logo_funky.svg https://raw.githubusercontent.com/datalad/tutorials/5e5fc0a4761248e5cedbc491c357d423d14a2b21/notebooks/catalog_tutorials/test_data/datalad_logo_funky.svg + $ wget -q -O datalad_logo_funky.svg https://raw.githubusercontent.com/datalad/tutorials/5e5fc0a4/notebooks/catalog_tutorials/test_data/datalad_logo_funky.svg Now we can run all the necessary subcommands for the catalog generation process: @@ -550,8 +568,8 @@ Now we can run all the necessary subcommands for the catalog generation process: :cast: catalog_basics :notes: Create a new catalog with custom config - $ datalad catalog create -c custom-cat -m toy_metadata.jsonl -y cat_config.yml - $ datalad catalog set-super -c custom-cat -i 5df8eb3a-95c5-11ea-b4b9-a0369f287950 -v dae38cf901995aace0dde5346515a0134f919523 + $ datalad catalog-create -c custom-cat -m toy_metadata.jsonl -F cat_config.yml + $ datalad catalog-set -c custom-cat -i 5df8eb3a-95c5-11ea-b4b9-a0369f287950 -v dae38cf901995aace0dde5346515a0134f919523 home To test this, serve the new custom catalog and navigate to the localhost to view it. @@ -565,7 +583,8 @@ Well done! You have just configured your catalog with a custom logo and color sc The configuration will also come in handy when there are more advanced forms of metadata in a catalog, especially when multiple sources of metadata are available for the same dataset. In such cases, one might want to specify or prioritize how these multiple sources are displayed, -and the catalog configuration allows for that via specification of the ``property_source`` key. +and the catalog configuration allows for that via specification of the ``property_sources`` key. +Find out more in the `dedicated documentation `_. And that's it! """""""""""""" @@ -576,4 +595,5 @@ You now know how to install DataLad Catalog and how to employ its basic features and configure a browser-based catalog from structured metadata. Congrats! You might want to explore further to find out how to build more advanced metadata handling and -catalog generation workflows. If so, please stay tuned for more content that will come soon! +catalog generation workflows, or to learn how to use additional features. If so, please visit +`DataLad Catalog's user documentation `_. diff --git a/docs/beyond_basics/_examples/DL-101-147-104 b/docs/beyond_basics/_examples/DL-101-147-104 index e5cd32953..3319cf236 100644 --- a/docs/beyond_basics/_examples/DL-101-147-104 +++ b/docs/beyond_basics/_examples/DL-101-147-104 @@ -1,6 +1,6 @@ $ datalad siblings .: here(+) [git] +.: gin(+) [/home/me/pushes/DataLad-101 (git)] +.: ria-backup-storage(+) [ora] .: ria-backup(-) [/home/me/myriastore/e3e/70682-c209-4cac-629f-6fbed82c07cd (git)] .: roommate(+) [../mock_user/DataLad-101 (git)] -.: ria-backup-storage(+) [ora] -.: gin(+) [/home/me/pushes/DataLad-101 (git)] diff --git a/docs/beyond_basics/_examples/DL-101-147-108 b/docs/beyond_basics/_examples/DL-101-147-108 index a698b0b3a..fb2ec24a9 100644 --- a/docs/beyond_basics/_examples/DL-101-147-108 +++ b/docs/beyond_basics/_examples/DL-101-147-108 @@ -8,20 +8,20 @@ $ tree /home/me/myriastore │   │   └── objects │   │   ├── G6 │   │   │   └── Gj -│   │   │   └── MD5E-s12465653--05cd7ed561d108c9bcf96022bc78a92c.pdf -│   │   │   └── MD5E-s12465653--05cd7ed561d108c9bcf96022bc78a92c.pdf +│   │   │   └── MD5E-s12465653--05cd7ed5✂MD5.pdf +│   │   │   └── MD5E-s12465653--05cd7ed5✂MD5.pdf │   │   ├── jf │   │   │   └── 3M -│   │   │   └── MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf -│   │   │   └── MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf +│   │   │   └── MD5E-s2120211--06d1efcb✂MD5.pdf +│   │   │   └── MD5E-s2120211--06d1efcb✂MD5.pdf │   │   ├── P5 │   │   │   └── qK -│   │   │   └── MD5E-s2693891--e61afe4b3c5d76c849c4e61f6547ed03.pdf -│   │   │   └── MD5E-s2693891--e61afe4b3c5d76c849c4e61f6547ed03.pdf +│   │   │   └── MD5E-s2693891--e61afe4b✂MD5.pdf +│   │   │   └── MD5E-s2693891--e61afe4b✂MD5.pdf │   │   └── WF │   │   └── Gq -│   │   └── MD5E-s1198170--0ab2c121bcf68d7278af266f6a399c5f.pdf -│   │   └── MD5E-s1198170--0ab2c121bcf68d7278af266f6a399c5f.pdf +│   │   └── MD5E-s1198170--0ab2c121✂MD5.pdf +│   │   └── MD5E-s1198170--0ab2c121✂MD5.pdf │   ├── archives │   ├── branches │   ├── config @@ -47,8 +47,8 @@ $ tree /home/me/myriastore │   ├── objects │   │   ├── info │   │   └── pack -│   │   ├── pack-0c3603378d887851862dea6a5c994064d4a83f40.idx -│   │   └── pack-0c3603378d887851862dea6a5c994064d4a83f40.pack +│   │   ├── pack-0c77bdff✂SHA1.idx +│   │   └── pack-0c77bdff✂SHA1.pack │   ├── ora-remote-46b169aa-bb91-42d6-be06-355d957fb4f7 │   │   └── transfer │   ├── refs diff --git a/docs/beyond_basics/_examples/DL-101-147-112 b/docs/beyond_basics/_examples/DL-101-147-112 index 622a3d1bc..8c4e43e4c 100644 --- a/docs/beyond_basics/_examples/DL-101-147-112 +++ b/docs/beyond_basics/_examples/DL-101-147-112 @@ -8,16 +8,16 @@ $ tree /home/me/myriastore │   │   └── objects │   │   ├── 8q │   │   │   └── 6M -│   │   │   └── MD5E-s345--a88cab39b1a5ec59ace322225cc88bc9.csv -│   │   │   └── MD5E-s345--a88cab39b1a5ec59ace322225cc88bc9.csv +│   │   │   └── MD5E-s345--a88cab39✂MD5.csv +│   │   │   └── MD5E-s345--a88cab39✂MD5.csv │   │   ├── F1 │   │   │   └── K3 -│   │   │   └── MD5E-s230694943--944b0300fab145c7ebbd86078498b393 -│   │   │   └── MD5E-s230694943--944b0300fab145c7ebbd86078498b393 +│   │   │   └── MD5E-s230694943--944b0300✂MD5 +│   │   │   └── MD5E-s230694943--944b0300✂MD5 │   │   └── q1 │   │   └── gp -│   │   └── MD5E-s261062--025dc493ec2da6f9f79eb1ce8512cbec.png -│   │   └── MD5E-s261062--025dc493ec2da6f9f79eb1ce8512cbec.png +│   │   └── MD5E-s261062--025dc493✂MD5.png +│   │   └── MD5E-s261062--025dc493✂MD5.png │   ├── archives │   ├── branches │   ├── config @@ -43,9 +43,9 @@ $ tree /home/me/myriastore │   ├── objects │   │   ├── info │   │   └── pack -│   │   ├── pack-cb4353a258f525b219e687e361fc902f299d6cce.idx -│   │   └── pack-cb4353a258f525b219e687e361fc902f299d6cce.pack -│   ├── ora-remote-ca1316d7-fe94-42e5-b053-ff80cd223479 +│   │   ├── pack-57578b5f✂SHA1.idx +│   │   └── pack-57578b5f✂SHA1.pack +│   ├── ora-remote-4b80e0df-e4a4-47d4-b59d-8e00641bf193 │   │   └── transfer │   ├── refs │   │   ├── heads @@ -59,20 +59,20 @@ $ tree /home/me/myriastore │   │   └── objects │   │   ├── G6 │   │   │   └── Gj -│   │   │   └── MD5E-s12465653--05cd7ed561d108c9bcf96022bc78a92c.pdf -│   │   │   └── MD5E-s12465653--05cd7ed561d108c9bcf96022bc78a92c.pdf +│   │   │   └── MD5E-s12465653--05cd7ed5✂MD5.pdf +│   │   │   └── MD5E-s12465653--05cd7ed5✂MD5.pdf │   │   ├── jf │   │   │   └── 3M -│   │   │   └── MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf -│   │   │   └── MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf +│   │   │   └── MD5E-s2120211--06d1efcb✂MD5.pdf +│   │   │   └── MD5E-s2120211--06d1efcb✂MD5.pdf │   │   ├── P5 │   │   │   └── qK -│   │   │   └── MD5E-s2693891--e61afe4b3c5d76c849c4e61f6547ed03.pdf -│   │   │   └── MD5E-s2693891--e61afe4b3c5d76c849c4e61f6547ed03.pdf +│   │   │   └── MD5E-s2693891--e61afe4b✂MD5.pdf +│   │   │   └── MD5E-s2693891--e61afe4b✂MD5.pdf │   │   └── WF │   │   └── Gq -│   │   └── MD5E-s1198170--0ab2c121bcf68d7278af266f6a399c5f.pdf -│   │   └── MD5E-s1198170--0ab2c121bcf68d7278af266f6a399c5f.pdf +│   │   └── MD5E-s1198170--0ab2c121✂MD5.pdf +│   │   └── MD5E-s1198170--0ab2c121✂MD5.pdf │   ├── archives │   ├── branches │   ├── config @@ -98,8 +98,8 @@ $ tree /home/me/myriastore │   ├── objects │   │   ├── info │   │   └── pack -│   │   ├── pack-0c3603378d887851862dea6a5c994064d4a83f40.idx -│   │   └── pack-0c3603378d887851862dea6a5c994064d4a83f40.pack +│   │   ├── pack-0c77bdff✂SHA1.idx +│   │   └── pack-0c77bdff✂SHA1.pack │   ├── ora-remote-46b169aa-bb91-42d6-be06-355d957fb4f7 │   │   └── transfer │   ├── refs diff --git a/docs/beyond_basics/_examples/DL-101-147-125 b/docs/beyond_basics/_examples/DL-101-147-125 index 25dd473a2..d288be864 100644 --- a/docs/beyond_basics/_examples/DL-101-147-125 +++ b/docs/beyond_basics/_examples/DL-101-147-125 @@ -2,10 +2,10 @@ $ cd myclone $ tree . ├── books -│   ├── bash_guide.pdf -> ../.git/annex/objects/WF/Gq/MD5E-s1198170--0ab2c121bcf68d7278af266f6a399c5f.pdf/MD5E-s1198170--0ab2c121bcf68d7278af266f6a399c5f.pdf -│   ├── byte-of-python.pdf -> ../.git/annex/objects/P5/qK/MD5E-s2693891--e61afe4b3c5d76c849c4e61f6547ed03.pdf/MD5E-s2693891--e61afe4b3c5d76c849c4e61f6547ed03.pdf -│   ├── progit.pdf -> ../.git/annex/objects/G6/Gj/MD5E-s12465653--05cd7ed561d108c9bcf96022bc78a92c.pdf/MD5E-s12465653--05cd7ed561d108c9bcf96022bc78a92c.pdf -│   └── TLCL.pdf -> ../.git/annex/objects/jf/3M/MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf/MD5E-s2120211--06d1efcb05bb2c55cd039dab3fb28455.pdf +│   ├── bash_guide.pdf -> ../.git/annex/objects/WF/Gq/✂/MD5E-s1198170--0ab2c121✂MD5.pdf +│   ├── byte-of-python.pdf -> ../.git/annex/objects/P5/qK/✂/MD5E-s2693891--e61afe4b✂MD5.pdf +│   ├── progit.pdf -> ../.git/annex/objects/G6/Gj/✂/MD5E-s12465653--05cd7ed5✂MD5.pdf +│   └── TLCL.pdf -> ../.git/annex/objects/jf/3M/✂/MD5E-s2120211--06d1efcb✂MD5.pdf ├── code │   ├── list_titles.sh │   └── nested_repos.sh diff --git a/docs/beyond_basics/_examples/DL-101-149-11 b/docs/beyond_basics/_examples/DL-101-149-11 index f9cde74a0..bf8142de8 100644 --- a/docs/beyond_basics/_examples/DL-101-149-11 +++ b/docs/beyond_basics/_examples/DL-101-149-11 @@ -3,22 +3,22 @@ dataset-to-copy-to ├── 130114 │   └── T1w │   └── Diffusion -│   ├── bvals -> ../../../.git/annex/objects/w8/VX/MD5E-s1344--4c9ca43cc986f388bcf716b4ba7321cc/MD5E-s1344--4c9ca43cc986f388bcf716b4ba7321cc -│   ├── bvecs -> ../../../.git/annex/objects/61/80/MD5E-s9507--24793fb936e9e18419325af9b6152458/MD5E-s9507--24793fb936e9e18419325af9b6152458 -│   ├── data.nii.gz -> ../../../.git/annex/objects/K0/mJ/MD5E-s1468805393--f8077751ddc2802a853d1199ff762a00.nii.gz/MD5E-s1468805393--f8077751ddc2802a853d1199ff762a00.nii.gz +│   ├── bvals -> ../../../.git/annex/objects/w8/VX/✂/MD5E-s1344--4c9ca43c✂MD5 +│   ├── bvecs -> ../../../.git/annex/objects/61/80/✂/MD5E-s9507--24793fb9✂MD5 +│   ├── data.nii.gz -> ../../../.git/annex/objects/K0/mJ/✂/MD5E-s1468805393--f8077751✂MD5.nii.gz │   ├── eddylogs -│   │   ├── eddy_unwarped_images.eddy_movement_rms -> ../../../../.git/annex/objects/xX/GF/MD5E-s15991--287c3e06ece5b883a862f79c478b7b69/MD5E-s15991--287c3e06ece5b883a862f79c478b7b69 -│   │   ├── eddy_unwarped_images.eddy_outlier_map -> ../../../../.git/annex/objects/87/Xx/MD5E-s127363--919aed21eb51a77ca499cdc0a5560592/MD5E-s127363--919aed21eb51a77ca499cdc0a5560592 -│   │   ├── eddy_unwarped_images.eddy_outlier_n_sqr_stdev_map -> ../../../../.git/annex/objects/PP/GX/MD5E-s523738--1bd90e1e7a86b35695d8039599835435/MD5E-s523738--1bd90e1e7a86b35695d8039599835435 -│   │   ├── eddy_unwarped_images.eddy_outlier_n_stdev_map -> ../../../../.git/annex/objects/qv/0F/MD5E-s520714--f995a46ec8ddaa5c7b33d71635844609/MD5E-s520714--f995a46ec8ddaa5c7b33d71635844609 -│   │   ├── eddy_unwarped_images.eddy_outlier_report -> ../../../../.git/annex/objects/Xq/xV/MD5E-s10177--2934d2c7b316b86cde6d6d938bb3da37/MD5E-s10177--2934d2c7b316b86cde6d6d938bb3da37 -│   │   ├── eddy_unwarped_images.eddy_parameters -> ../../../../.git/annex/objects/60/gf/MD5E-s141201--9a94e9fa805446ddb5ff8f76207fc1d2/MD5E-s141201--9a94e9fa805446ddb5ff8f76207fc1d2 -│   │   ├── eddy_unwarped_images.eddy_post_eddy_shell_alignment_parameters -> ../../../../.git/annex/objects/kJ/0W/MD5E-s2171--c2e0deca2a5e84d119002032d87cd762/MD5E-s2171--c2e0deca2a5e84d119002032d87cd762 -│   │   └── eddy_unwarped_images.eddy_restricted_movement_rms -> ../../../../.git/annex/objects/6K/X6/MD5E-s16134--5321d11df307f8452c8a5e92647ec73a/MD5E-s16134--5321d11df307f8452c8a5e92647ec73a -│   ├── grad_dev.nii.gz -> ../../../.git/annex/objects/zz/51/MD5E-s46820650--13be960cd99e48e21e25635d1390c1c5.nii.gz/MD5E-s46820650--13be960cd99e48e21e25635d1390c1c5.nii.gz -│   └── nodif_brain_mask.nii.gz -> ../../../.git/annex/objects/0Q/Kk/MD5E-s67280--9042713a11d557df58307ba85d51285a.nii.gz/MD5E-s67280--9042713a11d557df58307ba85d51285a.nii.gz -├── anothercopyofbvecs -> .git/annex/objects/X0/Vg/MD5E-s9507--f4cf263de8c3fb11f739467bf15e80ec/MD5E-s9507--f4cf263de8c3fb11f739467bf15e80ec -├── bvals -> .git/annex/objects/Fj/Wg/MD5E-s1344--843688799692be0ab485fe746e0f9241/MD5E-s1344--843688799692be0ab485fe746e0f9241 -└── bvecs -> .git/annex/objects/X0/Vg/MD5E-s9507--f4cf263de8c3fb11f739467bf15e80ec/MD5E-s9507--f4cf263de8c3fb11f739467bf15e80ec +│   │   ├── eddy_unwarped_images.eddy_movement_rms -> ../../../../.git/annex/objects/xX/GF/✂/MD5E-s15991--287c3e06✂MD5 +│   │   ├── eddy_unwarped_images.eddy_outlier_map -> ../../../../.git/annex/objects/87/Xx/✂/MD5E-s127363--919aed21✂MD5 +│   │   ├── eddy_unwarped_images.eddy_outlier_n_sqr_stdev_map -> ../../../../.git/annex/objects/PP/GX/✂/MD5E-s523738--1bd90e1e✂MD5 +│   │   ├── eddy_unwarped_images.eddy_outlier_n_stdev_map -> ../../../../.git/annex/objects/qv/0F/✂/MD5E-s520714--f995a46e✂MD5 +│   │   ├── eddy_unwarped_images.eddy_outlier_report -> ../../../../.git/annex/objects/Xq/xV/✂/MD5E-s10177--2934d2c7✂MD5 +│   │   ├── eddy_unwarped_images.eddy_parameters -> ../../../../.git/annex/objects/60/gf/✂/MD5E-s141201--9a94e9fa✂MD5 +│   │   ├── eddy_unwarped_images.eddy_post_eddy_shell_alignment_parameters -> ../../../../.git/annex/objects/kJ/0W/✂/MD5E-s2171--c2e0deca✂MD5 +│   │   └── eddy_unwarped_images.eddy_restricted_movement_rms -> ../../../../.git/annex/objects/6K/X6/✂/MD5E-s16134--5321d11d✂MD5 +│   ├── grad_dev.nii.gz -> ../../../.git/annex/objects/zz/51/✂/MD5E-s46820650--13be960c✂MD5.nii.gz +│   └── nodif_brain_mask.nii.gz -> ../../../.git/annex/objects/0Q/Kk/✂/MD5E-s67280--9042713a✂MD5.nii.gz +├── anothercopyofbvecs -> .git/annex/objects/X0/Vg/✂/MD5E-s9507--f4cf263d✂MD5 +├── bvals -> .git/annex/objects/Fj/Wg/✂/MD5E-s1344--84368879✂MD5 +└── bvecs -> .git/annex/objects/X0/Vg/✂/MD5E-s9507--f4cf263d✂MD5 4 directories, 16 files diff --git a/docs/beyond_basics/_examples/DL-101-149-12 b/docs/beyond_basics/_examples/DL-101-149-12 index 277a23be4..7e4f233fb 100644 --- a/docs/beyond_basics/_examples/DL-101-149-12 +++ b/docs/beyond_basics/_examples/DL-101-149-12 @@ -1,7 +1,7 @@ $ cd dataset-to-copy-to $ datalad get bvals anothercopyofbvecs 130114/T1w/Diffusion/eddylogs/eddy_unwarped_images.eddy_parameters -get(ok): 130114/T1w/Diffusion/eddylogs/eddy_unwarped_images.eddy_parameters (file) [from datalad...] -get(ok): anothercopyofbvecs (file) [from datalad...] get(ok): bvals (file) [from datalad...] +get(ok): anothercopyofbvecs (file) [from datalad...] +get(ok): 130114/T1w/Diffusion/eddylogs/eddy_unwarped_images.eddy_parameters (file) [from datalad...] action summary: get (ok: 3) diff --git a/docs/beyond_basics/_examples/DL-101-168-110 b/docs/beyond_basics/_examples/DL-101-168-110 index b8595f2a4..7bdbc05d3 100644 --- a/docs/beyond_basics/_examples/DL-101-168-110 +++ b/docs/beyond_basics/_examples/DL-101-168-110 @@ -12,7 +12,7 @@ To enable auto staging, run: To track the changes with git, run: - git add data/raw/val.dvc data/raw/.gitignore + git add data/raw/.gitignore data/raw/val.dvc To enable auto staging, run: diff --git a/docs/beyond_basics/_examples/DL-101-168-141 b/docs/beyond_basics/_examples/DL-101-168-141 index 5326d86db..b7f4f7662 100644 --- a/docs/beyond_basics/_examples/DL-101-168-141 +++ b/docs/beyond_basics/_examples/DL-101-168-141 @@ -10,7 +10,7 @@ $ datalad push --to mysibling [INFO] Start writing objects [INFO] Start resolving deltas [INFO] Finished push of Dataset(/home/me/DVCvsDL/DVC-DataLad) -publish(ok): . (dataset) [refs/heads/git-annex->mysibling:refs/heads/git-annex 68c6f019..2ea4ae6f] +publish(ok): . (dataset) [refs/heads/git-annex->mysibling:refs/heads/git-annex 8ccc187b..af2d8417] publish(ok): . (dataset) [refs/heads/master->mysibling:refs/heads/master [new branch]] action summary: copy (ok: 2701) diff --git a/docs/beyond_basics/_examples/DL-101-168-151 b/docs/beyond_basics/_examples/DL-101-168-151 index 7d16ae2c5..a6c444f6e 100644 --- a/docs/beyond_basics/_examples/DL-101-168-151 +++ b/docs/beyond_basics/_examples/DL-101-168-151 @@ -12,7 +12,7 @@ Updating lock file 'dvc.lock' To track the changes with git, run: - git add dvc.yaml dvc.lock data/prepared/.gitignore + git add dvc.lock data/prepared/.gitignore dvc.yaml To enable auto staging, run: diff --git a/docs/beyond_basics/_examples/DL-101-168-154 b/docs/beyond_basics/_examples/DL-101-168-154 index 87dbfdb7a..100ff6637 100644 --- a/docs/beyond_basics/_examples/DL-101-168-154 +++ b/docs/beyond_basics/_examples/DL-101-168-154 @@ -6,16 +6,16 @@ stages: cmd: python src/prepare.py deps: - path: data/raw - md5: d39907b06425b95b440a692eb1af5ba4.dir + md5: d39907b0✂MD5.dir size: 16711927 nfiles: 2704 - path: src/prepare.py - md5: ef804f358e00edcfe52c865b471f8f55 + md5: ef804f35✂MD5 size: 1231 outs: - path: data/prepared/test.csv - md5: 0b90b0e8d6c62a0dc38b1ab63de6e06d + md5: 0b90b0e8✂MD5 size: 62023 - path: data/prepared/train.csv - md5: 360a73acb93776091959dda916331021 + md5: 360a73ac✂MD5 size: 155128 diff --git a/docs/beyond_basics/_examples/DL-101-168-155 b/docs/beyond_basics/_examples/DL-101-168-155 index cda9a0c7a..c955b5749 100644 --- a/docs/beyond_basics/_examples/DL-101-168-155 +++ b/docs/beyond_basics/_examples/DL-101-168-155 @@ -11,7 +11,7 @@ Updating lock file 'dvc.lock' To track the changes with git, run: - git add dvc.yaml dvc.lock model/.gitignore + git add model/.gitignore dvc.yaml dvc.lock To enable auto staging, run: diff --git a/docs/beyond_basics/_examples/DL-101-168-159 b/docs/beyond_basics/_examples/DL-101-168-159 index 3e88e411e..d0049baa7 100644 --- a/docs/beyond_basics/_examples/DL-101-168-159 +++ b/docs/beyond_basics/_examples/DL-101-168-159 @@ -1,4 +1,4 @@ ### DVC $ dvc metrics show Path accuracy -metrics/accuracy.json 0.74778 +metrics/accuracy.json 0.67934 diff --git a/docs/beyond_basics/_examples/DL-101-168-160 b/docs/beyond_basics/_examples/DL-101-168-160 index e39b24edb..e561c836b 100644 --- a/docs/beyond_basics/_examples/DL-101-168-160 +++ b/docs/beyond_basics/_examples/DL-101-168-160 @@ -6,7 +6,7 @@ $ git push --set-upstream origin sgd-pipeline $ git tag -a sgd -m "Trained SGD as DVC pipeline." $ git push origin --tags $ dvc push -[sgd-pipeline 35c5f3a] Add SGD pipeline +[sgd-pipeline 7a0cbc6] Add SGD pipeline 5 files changed, 73 insertions(+) create mode 100644 dvc.lock create mode 100644 dvc.yaml diff --git a/docs/beyond_basics/_examples/DL-101-168-165 b/docs/beyond_basics/_examples/DL-101-168-165 index ebaf679d1..9f8e81025 100644 --- a/docs/beyond_basics/_examples/DL-101-168-165 +++ b/docs/beyond_basics/_examples/DL-101-168-165 @@ -6,8 +6,8 @@ $ git push --set-upstream origin random-forest $ git tag -a randomforest -m "Random Forest classifier with 80.99% accuracy." $ git push origin --tags $ dvc push -[random-forest 1dc47de] Train Random Forest classifier - 3 files changed, 11 insertions(+), 17 deletions(-) +[random-forest a324823] Train Random Forest classifier + 3 files changed, 12 insertions(+), 18 deletions(-) To /home/me/pushes/data-version-control * [new branch] random-forest -> random-forest branch 'random-forest' set up to track 'origin/random-forest'. diff --git a/docs/beyond_basics/_examples/DL-101-168-166 b/docs/beyond_basics/_examples/DL-101-168-166 index c17404ddc..ffd4938d7 100644 --- a/docs/beyond_basics/_examples/DL-101-168-166 +++ b/docs/beyond_basics/_examples/DL-101-168-166 @@ -1,6 +1,6 @@ ### DVC $ dvc metrics show -T Revision Path accuracy -workspace metrics/accuracy.json 0.80608 -randomforest metrics/accuracy.json 0.80608 -sgd metrics/accuracy.json 0.74778 +workspace metrics/accuracy.json 0.80735 +randomforest metrics/accuracy.json 0.80735 +sgd metrics/accuracy.json 0.67934 diff --git a/docs/beyond_basics/_examples/DL-101-168-178 b/docs/beyond_basics/_examples/DL-101-168-178 index 9bebd1841..11844244d 100644 --- a/docs/beyond_basics/_examples/DL-101-168-178 +++ b/docs/beyond_basics/_examples/DL-101-168-178 @@ -1,6 +1,6 @@ $ datalad rerun --branch="randomforest" -m "Recompute classification with random forest classifier" ready-for-analysis..SGD -[INFO] checkout commit 85c50b7; -[INFO] run commit 6ba8792; (Train an SGD clas...) +[INFO] checkout commit de525c5; +[INFO] run commit 941ab2f; (Train an SGD clas...) [INFO] Making sure inputs are available (this may take some time) [INFO] Unlocking files unlock(ok): model/model.joblib (file) @@ -11,7 +11,7 @@ unlock(ok): model/model.joblib (file) run(ok): /home/me/DVCvsDL/DVC-DataLad (dataset) [python code/train.py] add(ok): model/model.joblib (file) save(ok): . (dataset) -[INFO] run commit 1dc9564; (Evaluate SGD clas...) +[INFO] run commit 178d7c6; (Evaluate SGD clas...) [INFO] Making sure inputs are available (this may take some time) [INFO] == Command start (output follows) ===== [INFO] == Command exit (modification check follows) ===== diff --git a/docs/beyond_basics/_examples/DL-101-168-179 b/docs/beyond_basics/_examples/DL-101-168-179 index 42f101ab3..56784e3c9 100644 --- a/docs/beyond_basics/_examples/DL-101-168-179 +++ b/docs/beyond_basics/_examples/DL-101-168-179 @@ -1,10 +1,10 @@ $ git diff SGD -- metrics/accuracy.json diff --git a/metrics/accuracy.json b/metrics/accuracy.json -index 87df8a09..cdf07fdb 100644 +index b8423003..41634f21 100644 --- a/metrics/accuracy.json +++ b/metrics/accuracy.json @@ -1 +1 @@ --{"accuracy": 0.5703422053231939} +-{"accuracy": 0.770595690747782} \ No newline at end of file -+{"accuracy": 0.8098859315589354} ++{"accuracy": 0.8086185044359949} \ No newline at end of file diff --git a/docs/beyond_basics/_examples/DL-101-181-102 b/docs/beyond_basics/_examples/DL-101-181-102 index ec0a2a2b7..dd214c69e 100644 --- a/docs/beyond_basics/_examples/DL-101-181-102 +++ b/docs/beyond_basics/_examples/DL-101-181-102 @@ -1,5 +1,5 @@ $ tree . -└── zen.jpg -> .git/annex/objects/PV/X5/MD5E-s5217743--ad8f6e7832f1752fe480051bcd06c719.jpg/MD5E-s5217743--ad8f6e7832f1752fe480051bcd06c719.jpg +└── zen.jpg -> .git/annex/objects/PV/X5/✂/MD5E-s5217743--ad8f6e78✂MD5.jpg 0 directories, 1 file diff --git a/docs/beyond_basics/_examples/DL-101-181-106 b/docs/beyond_basics/_examples/DL-101-181-106 index aaa6aae25..51aa7f299 100644 --- a/docs/beyond_basics/_examples/DL-101-181-106 +++ b/docs/beyond_basics/_examples/DL-101-181-106 @@ -1,2 +1,2 @@ $ datalad meta-dump -d . .:zen.png -{"type": "file", "path": "zen.png", "dataset_id": "2d540a9d-2ef7-4b5f-8931-7c92f483f0c7", "dataset_version": "19f2d98d758116d099d467260a5a71082b2c6a29", "extraction_time": 1675113291.1464975, "agent_name": "Overworked CTO", "agent_email": "closetoburnout@randomtechconsultancy.com", "extractor_name": "Picture2Words", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"description": "A lake with waterlilies in a front of snow covered mountains"}} +{"type": "file", "path": "zen.png", "dataset_id": "2d540a9d-2ef7-4b5f-8931-7c92f483f0c7", "dataset_version": "19f2d98d✂SHA1", "extraction_time": 1675113291.1464975, "agent_name": "Overworked CTO", "agent_email": "closetoburnout@randomtechconsultancy.com", "extractor_name": "Picture2Words", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"description": "A lake with waterlilies in a front of snow covered mountains"}} diff --git a/docs/beyond_basics/_examples/DL-101-181-107 b/docs/beyond_basics/_examples/DL-101-181-107 index 37dcbbd93..b29bc7ae3 100644 --- a/docs/beyond_basics/_examples/DL-101-181-107 +++ b/docs/beyond_basics/_examples/DL-101-181-107 @@ -6,7 +6,7 @@ $ datalad -f json_pp meta-dump -d . .:zen.png "agent_email": "closetoburnout@randomtechconsultancy.com", "agent_name": "Overworked CTO", "dataset_id": "2d540a9d-2ef7-4b5f-8931-7c92f483f0c7", - "dataset_version": "19f2d98d758116d099d467260a5a71082b2c6a29", + "dataset_version": "19f2d98d✂SHA1", "extracted_metadata": { "description": "A lake with waterlilies in a front of snow covered mountains" }, diff --git a/docs/beyond_basics/_examples/DL-101-181-108 b/docs/beyond_basics/_examples/DL-101-181-108 index f9731566c..7f40e084b 100644 --- a/docs/beyond_basics/_examples/DL-101-181-108 +++ b/docs/beyond_basics/_examples/DL-101-181-108 @@ -5,11 +5,11 @@ $ datalad meta-extract -d . metalad_core | jq { "type": "dataset", "dataset_id": "2d540a9d-2ef7-4b5f-8931-7c92f483f0c7", - "dataset_version": "19f2d98d758116d099d467260a5a71082b2c6a29", + "dataset_version": "19f2d98d✂SHA1", "extractor_name": "metalad_core", "extractor_version": "1", "extraction_parameter": {}, - "extraction_time": 1691261115.6284952, + "extraction_time": 1691514094.1297715, "agent_name": "Elena Piscopia", "agent_email": "elena@example.net", "extracted_metadata": { @@ -19,20 +19,20 @@ $ datalad meta-extract -d . metalad_core | jq }, "@graph": [ { - "@id": "d3765bf6e3a68497b42584fa0774695e", + "@id": "d3765bf6✂MD5", "@type": "agent", "name": "Adina Wagner", "email": "adina.wagner@t-online.de" }, { - "@id": "19f2d98d758116d099d467260a5a71082b2c6a29", + "@id": "19f2d98d✂SHA1", "identifier": "2d540a9d-2ef7-4b5f-8931-7c92f483f0c7", "@type": "Dataset", "version": "0-2-g19f2d98", "dateCreated": "2023-02-13T07:48:15+01:00", "dateModified": "2023-02-13T07:55:38+01:00", "hasContributor": { - "@id": "d3765bf6e3a68497b42584fa0774695e" + "@id": "d3765bf6✂MD5" }, "distribution": [ { diff --git a/docs/beyond_basics/_examples/DL-101-181-112 b/docs/beyond_basics/_examples/DL-101-181-112 index f1ab980c8..ba2c1b9cd 100644 --- a/docs/beyond_basics/_examples/DL-101-181-112 +++ b/docs/beyond_basics/_examples/DL-101-181-112 @@ -1,27 +1,27 @@ $ datalad meta-dump -r -{"type": "dataset", "root_dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "root_dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "dataset_path": "study-99", "dataset_id": "52b2f098-dc76-11ea-a6da-7cdd908c7490", "dataset_version": "1b0d92f68a38129b950733e0a653595806014bf8", "extraction_time": 1675090458.2812586, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Mueller14_EEGSZ", "keywords": ["Schizophrenia"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#52b2f098-dc76-11ea-a6da-7cdd908c7490", "@type": "Dataset", "version": "1b0d92f68a38129b950733e0a653595806014bf8", "name": "Dataset_omodpirgos_0", "url": "https://example.com/users/omodpirgos/dataset_0", "author": [{"@id": "e.omodpirgos@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "in congruent Schizophrenia face emotional by of affective deficits", "datePublished": 2102, "sameAs": "10.100/99.abc-1", "pagination": "525-553", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "o.mal@example.com"}, {"@id": "o.gos@example.com"}, {"@id": "e.sane@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Soc Cogn Affect Neurosci", "@type": "PublicationEvent", "name": "Soc Cogn Affect Neurosci"}, "isPartOf": {"@id": "#issue(4)", "@type": "PublicationIssue", "issue_number": 4, "isPartOf": {"@id": "#volume(9)", "@type": "PublicationVolume", "volumeNumber": 9}}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#a.gose@example.com", "@type": "Person", "email": "a.gose@example.com", "name": "Asulmolsana Gose", "givenName": "Asulmolsana", "familyName": "Gose"}, {"@id": "https://schema.datalad.org/person#g.agor@example.com", "@type": "Person", "email": "g.agor@example.com", "name": "Gossulsela Agor", "givenName": "Gossulsela", "familyName": "Agor"}, {"@id": "https://schema.datalad.org/person#e.ekos@example.com", "@type": "Person", "email": "e.ekos@example.com", "name": "Esulsana Ekos", "givenName": "Esulsana", "familyName": "Ekos"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}]}]}} -{"type": "dataset", "root_dataset_id": "535edf84-dc76-11ea-979c-7cdd908c7490", "root_dataset_version": "96883aefec188338b3b3e8790fcad734819615a8", "dataset_path": "study-98", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090458.2790313, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Mueller15_cognflexibility", "keywords": ["Interindividual differences"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#535edf84-dc76-11ea-979c-7cdd908c7490", "@type": "Dataset", "version": "96883aefec188338b3b3e8790fcad734819615a8", "name": "Dataset_omodpirgos_3", "url": "https://example.com/users/omodpirgos/dataset_3", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "Interindividual of volume, differences impulsivity functional flexibility: influence matter and connectivity in", "datePublished": 2105, "sameAs": "10.100/99.abc-4", "pagination": "151-169", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "i.upirmale@example.com"}, {"@id": "e.malu@example.com"}, {"@id": "p.molludsulo@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Brain Struct Func", "@type": "PublicationEvent", "name": "Brain Struct Func"}, "isPartOf": {"@id": "#issue(4)", "@type": "PublicationIssue", "issue_number": 4, "isPartOf": {"@id": "#volume(220)", "@type": "PublicationVolume", "volumeNumber": 220}}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#a.ugorsan@example.com", "@type": "Person", "email": "a.ugorsan@example.com", "name": "Dr. Apirsan Ugorsan", "givenName": "Apirsan", "familyName": "Ugorsan", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#m.pal@example.com", "@type": "Person", "email": "m.pal@example.com", "name": "Dr. phil. Madludlade Pal", "givenName": "Madludlade", "familyName": "Pal", "honorificSuffix": "Dr. phil."}]}]}} -{"type": "dataset", "root_dataset_id": "542308c8-dc76-11ea-940a-7cdd908c7490", "root_dataset_version": "4bcda921e409b4806e991e2bddfa712c77090935", "dataset_path": "study-97", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090458.2600777, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Mueller18_FaceALE", "keywords": ["meta-analysis"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#542308c8-dc76-11ea-940a-7cdd908c7490", "@type": "Dataset", "version": "4bcda921e409b4806e991e2bddfa712c77090935", "name": "Dataset_omodpirgos_6", "url": "https://example.com/users/omodpirgos/dataset_6", "author": [{"@id": "e.omodpirgos@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "the An Influence task processing: of neural and meta-analysis of face network ALE", "datePublished": 2108, "sameAs": "10.100/99.abc-7", "pagination": "1634-1655", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "m.amol@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Cortex", "@type": "PublicationEvent", "name": "Cortex"}, "isPartOf": {"@id": "#volume(103)", "@type": "PublicationVolume", "volumeNumber": 103}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#o.ladlud@example.com", "@type": "Person", "email": "o.ladlud@example.com", "name": "Dr. Omorkolsan Ladlud", "givenName": "Omorkolsan", "familyName": "Ladlud", "honorificSuffix": "Dr."}]}]}} -{"type": "dataset", "root_dataset_id": "54ded198-dc76-11ea-9eff-7cdd908c7490", "root_dataset_version": "c9f7737806d40c958f5f498fd1a060c0f2ddd5ff", "dataset_path": "study-96", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090458.262438, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Nostro18_Prediction", "keywords": ["study"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}, {"@id": "o.omorpallud@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#54ded198-dc76-11ea-9eff-7cdd908c7490", "@type": "Dataset", "version": "c9f7737806d40c958f5f498fd1a060c0f2ddd5ff", "name": "Dataset_omodpirgos_9", "url": "https://example.com/users/omodpirgos/dataset_9", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "o.omorpallud@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "network-based connectivity functional personality", "datePublished": 2111, "sameAs": "10.100/99.abc-10", "pagination": "1374-1394", "author": [{"@id": "a.ilud@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "a.emadsanpali@example.com"}, {"@id": "p.rigmorluda@example.com"}, {"@id": "m.kolkospale@example.com"}, {"@id": "i.upirmale@example.com"}, {"@id": "m.opalsulkosu@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Brain Struct Funct", "@type": "PublicationEvent", "name": "Brain Struct Funct"}, "isPartOf": {"@id": "#issue(6)", "@type": "PublicationIssue", "issue_number": 6, "isPartOf": {"@id": "#volume(223)", "@type": "PublicationVolume", "volumeNumber": 223}}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.mora@example.com", "@type": "Person", "email": "i.mora@example.com", "name": "Imolpir Mora", "givenName": "Imolpir", "familyName": "Mora"}, {"@id": "https://schema.datalad.org/person#g.lad@example.com", "@type": "Person", "email": "g.lad@example.com", "name": "Gosa Lad", "givenName": "Gosa", "familyName": "Lad"}, {"@id": "https://schema.datalad.org/person#a.omol@example.com", "@type": "Person", "email": "a.omol@example.com", "name": "Akosrigo Omol", "givenName": "Akosrigo", "familyName": "Omol"}, {"@id": "https://schema.datalad.org/person#a.modmod@example.com", "@type": "Person", "email": "a.modmod@example.com", "name": "Dr. Aselpal Modmod", "givenName": "Aselpal", "familyName": "Modmod", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#a.gos@example.com", "@type": "Person", "email": "a.gos@example.com", "name": "Aselu Gos", "givenName": "Aselu", "familyName": "Gos"}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#u.pulpula@example.com", "@type": "Person", "email": "u.pulpula@example.com", "name": "Upir Pulpula", "givenName": "Upir", "familyName": "Pulpula"}]}]}} -{"type": "dataset", "root_dataset_id": "5599d916-dc76-11ea-8d5f-7cdd908c7490", "root_dataset_version": "1fdf34c1d6c63285c765113e1128adf1720bf243", "dataset_path": "study-95", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090458.2433488, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Nostro17_VBM", "keywords": ["Correlation Personality and Brain Structure"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}, {"@id": "o.omorpallud@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#5599d916-dc76-11ea-8d5f-7cdd908c7490", "@type": "Dataset", "version": "1fdf34c1d6c63285c765113e1128adf1720bf243", "name": "Dataset_omodpirgos_12", "url": "https://example.com/users/omodpirgos/dataset_12", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "o.omorpallud@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "Correlations and of Crucial A Brain Between Structure:", "datePublished": 2114, "sameAs": "10.100/99.abc-13", "pagination": "1945-1972", "author": [{"@id": "a.ilud@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "l.imel@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Cereb Cortex", "@type": "PublicationEvent", "name": "Cereb Cortex"}, "isPartOf": {"@id": "#issue(7)", "@type": "PublicationIssue", "issue_number": 7, "isPartOf": {"@id": "#volume(27)", "@type": "PublicationVolume", "volumeNumber": 27}}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#i.ugos@example.com", "@type": "Person", "email": "i.ugos@example.com", "name": "Imad Ugos", "givenName": "Imad", "familyName": "Ugos"}, {"@id": "https://schema.datalad.org/person#g.lad@example.com", "@type": "Person", "email": "g.lad@example.com", "name": "Gosa Lad", "givenName": "Gosa", "familyName": "Lad"}, {"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#u.pulpula@example.com", "@type": "Person", "email": "u.pulpula@example.com", "name": "Upir Pulpula", "givenName": "Upir", "familyName": "Pulpula"}]}]}} -{"type": "dataset", "root_dataset_id": "56370470-dc76-11ea-b64b-7cdd908c7490", "root_dataset_version": "734d1649f92c3a1d67d54e73185e33883feda9ef", "dataset_path": "study-93", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090458.243436, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Mueller16_ALEdepression", "keywords": ["Unipolar Depression"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#56370470-dc76-11ea-b64b-7cdd908c7490", "@type": "Dataset", "version": "734d1649f92c3a1d67d54e73185e33883feda9ef", "name": "Dataset_omodpirgos_15", "url": "https://example.com/users/omodpirgos/dataset_15", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "Revisited: in Unipolar Brain Activity Neuroimaging of Studies", "datePublished": 2117, "sameAs": "10.100/99.abc-16", "pagination": "1071-1083", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "e.malu@example.com"}, {"@id": "m.emod@example.com"}, {"@id": "m.asan@example.com"}, {"@id": "m.meli@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#JAMA Psychiatry", "@type": "PublicationEvent", "name": "JAMA Psychiatry"}, "isPartOf": {"@id": "#issue(1)", "@type": "PublicationIssue", "issue_number": 1, "isPartOf": {"@id": "#volume(74)", "@type": "PublicationVolume", "volumeNumber": 74}}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#k.umalpalo@example.com", "@type": "Person", "email": "k.umalpalo@example.com", "name": "Kosselo Umalpalo", "givenName": "Kosselo", "familyName": "Umalpalo"}, {"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#o.selsulmor@example.com", "@type": "Person", "email": "o.selsulmor@example.com", "name": "Dr. Osanmodmelo Selsulmor", "givenName": "Osanmodmelo", "familyName": "Selsulmor", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#a.ugorsan@example.com", "@type": "Person", "email": "a.ugorsan@example.com", "name": "Dr. Apirsan Ugorsan", "givenName": "Apirsan", "familyName": "Ugorsan", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#s.omelgorladi@example.com", "@type": "Person", "email": "s.omelgorladi@example.com", "name": "Dr. phil. Sansul Omelgorladi", "givenName": "Sansul", "familyName": "Omelgorladi", "honorificSuffix": "Dr. phil."}]}]}} -{"type": "dataset", "root_dataset_id": "56da392e-dc76-11ea-91f4-7cdd908c7490", "root_dataset_version": "2a5737a7ba741481283e535ae6b61e75d1fcd44d", "dataset_path": "study-92", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090458.2252412, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Masterthesis_Serbanescu", "keywords": ["master thesis", "meta-analysis", "functional neuroimgaging studies"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}, {"@id": "m.emod@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#56da392e-dc76-11ea-91f4-7cdd908c7490", "@type": "Dataset", "version": "2a5737a7ba741481283e535ae6b61e75d1fcd44d", "name": "Dataset_emod_18", "url": "https://example.com/users/emod/dataset_18", "author": [{"@id": "m.emod@example.com"}, {"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "meta-analysis depression: cognitive Changes major functional brain coordinate studies processing and neuroimaging in activity of emotional", "datePublished": 2120, "author": [{"@id": "m.emod@example.com"}], "sameAs": "10.100/99.abc-19", "pagination": "1154-1182"}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#o.selsulmor@example.com", "@type": "Person", "email": "o.selsulmor@example.com", "name": "Dr. Osanmodmelo Selsulmor", "givenName": "Osanmodmelo", "familyName": "Selsulmor", "honorificSuffix": "Dr."}]}]}} -{"type": "dataset", "root_dataset_id": "57796120-dc76-11ea-a8c4-7cdd908c7490", "root_dataset_version": "dba9e0da671efbe129870a0cf9d9055c4bdc2276", "dataset_path": "study-91", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090458.2255168, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Kogler16_AmyRS", "keywords": ["Sex differences", "amygdalae"], "accountablePerson": "m.apalsul@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#57796120-dc76-11ea-a8c4-7cdd908c7490", "@type": "Dataset", "version": "dba9e0da671efbe129870a0cf9d9055c4bdc2276", "name": "Dataset_ukol_21", "url": "https://example.com/users/ukol/dataset_21", "author": [{"@id": "g.ukol@example.com"}, {"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "association cortisol in functional the of the Sex amygdalae with", "datePublished": 2123, "sameAs": "10.100/99.abc-22", "pagination": "681-699", "author": [{"@id": "g.ukol@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "m.puli@example.com"}, {"@id": "m.aladmadsane@example.com"}, {"@id": "k.mal@example.com"}, {"@id": "l.akol@example.com"}, {"@id": "g.rigkosu@example.com"}, {"@id": "g.oselrigsan@example.com"}, {"@id": "s.ladsela@example.com"}, {"@id": "s.aselkol@example.com"}], "publisher": {"@id": "https://schema.datalad.org/publisher#Elsevier", "@type": "Organization", "name": "Elsevier"}, "publication": {"@id": "https://schema.datalad.org/publication_event#NeuroImage", "@type": "PublicationEvent", "name": "NeuroImage"}, "isPartOf": {"@id": "#volume(134)", "@type": "PublicationVolume", "volumeNumber": 134}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#k.modsul@example.com", "@type": "Person", "email": "k.modsul@example.com", "name": "Dr. Kolselo Modsul", "givenName": "Kolselo", "familyName": "Modsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#m.upalpal@example.com", "@type": "Person", "email": "m.upalpal@example.com", "name": "Dr. Modmol Upalpal", "givenName": "Modmol", "familyName": "Upalpal", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#o.morkosu@example.com", "@type": "Person", "email": "o.morkosu@example.com", "name": "Osulkol Morkosu", "givenName": "Osulkol", "familyName": "Morkosu"}, {"@id": "https://schema.datalad.org/person#a.esel@example.com", "@type": "Person", "email": "a.esel@example.com", "name": "Dr. Agorsul Esel", "givenName": "Agorsul", "familyName": "Esel", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#a.imolpala@example.com", "@type": "Person", "email": "a.imolpala@example.com", "name": "Dr. phil. Apulpulpiro Imolpala", "givenName": "Apulpulpiro", "familyName": "Imolpala", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#o.eselmodi@example.com", "@type": "Person", "email": "o.eselmodi@example.com", "name": "Oludgosi Eselmodi", "givenName": "Oludgosi", "familyName": "Eselmodi"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#k.umalpalo@example.com", "@type": "Person", "email": "k.umalpalo@example.com", "name": "Kosselo Umalpalo", "givenName": "Kosselo", "familyName": "Umalpalo"}, {"@id": "https://schema.datalad.org/person#s.upirmor@example.com", "@type": "Person", "email": "s.upirmor@example.com", "name": "Dr. Sulpirsuli Upirmor", "givenName": "Sulpirsuli", "familyName": "Upirmor", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#o.imadrig@example.com", "@type": "Person", "email": "o.imadrig@example.com", "name": "Dr. Opirlud Imadrig", "givenName": "Opirlud", "familyName": "Imadrig", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#r.umelmola@example.com", "@type": "Person", "email": "r.umelmola@example.com", "name": "Riglud Umelmola", "givenName": "Riglud", "familyName": "Umelmola"}]}]}} -{"type": "dataset", "root_dataset_id": "58253d06-dc76-11ea-aa7e-7cdd908c7490", "root_dataset_version": "5d344fee1cd692e26da0ce4e7ef5ef6aa0f4e59c", "dataset_path": "study-90", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090458.2096868, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Kogler15_MetaStress", "keywords": ["Psychosocial versus physiological stress", "Meta-Analyses"], "accountablePerson": "m.apalsul@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#58253d06-dc76-11ea-aa7e-7cdd908c7490", "@type": "Dataset", "version": "5d344fee1cd692e26da0ce4e7ef5ef6aa0f4e59c", "name": "Dataset_upirmale_24", "url": "https://example.com/users/upirmale/dataset_24", "author": [{"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "- of Meta-analyses of stress neural reactions the stress and versus deactivations activations correlates", "datePublished": 2126, "accountablePerson": "a.imolpala@example.com", "sameAs": "10.100/99.abc-25", "pagination": "447-470", "author": [{"@id": "g.ukol@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "g.lud@example.com"}, {"@id": "s.ladsela@example.com"}, {"@id": "m.meli@example.com"}, {"@id": "g.oselrigsan@example.com"}, {"@id": "s.aselkol@example.com"}], "publisher": {"@id": "https://schema.datalad.org/publisher#Elsevier", "@type": "Organization", "name": "Elsevier"}, "publication": {"@id": "https://schema.datalad.org/publication_event#NeuroImage", "@type": "PublicationEvent", "name": "NeuroImage"}, "description": "k.rigpulsan@example.com", "isPartOf": {"@id": "#volume(119)", "@type": "PublicationVolume", "volumeNumber": 119}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#a.imolpala@example.com", "@type": "Person", "email": "a.imolpala@example.com", "name": "Dr. phil. Apulpulpiro Imolpala", "givenName": "Apulpulpiro", "familyName": "Imolpala", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#o.eselmodi@example.com", "@type": "Person", "email": "o.eselmodi@example.com", "name": "Oludgosi Eselmodi", "givenName": "Oludgosi", "familyName": "Eselmodi"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#k.umalpalo@example.com", "@type": "Person", "email": "k.umalpalo@example.com", "name": "Kosselo Umalpalo", "givenName": "Kosselo", "familyName": "Umalpalo"}, {"@id": "https://schema.datalad.org/person#s.upirmor@example.com", "@type": "Person", "email": "s.upirmor@example.com", "name": "Dr. Sulpirsuli Upirmor", "givenName": "Sulpirsuli", "familyName": "Upirmor", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#o.imadrig@example.com", "@type": "Person", "email": "o.imadrig@example.com", "name": "Dr. Opirlud Imadrig", "givenName": "Opirlud", "familyName": "Imadrig", "honorificSuffix": "Dr."}]}]}} -{"type": "dataset", "root_dataset_id": "58ff8024-dc76-11ea-ad78-7cdd908c7490", "root_dataset_version": "4862b1dd8434e2e151f38e4c6b19617becae215b", "dataset_path": "study-85", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090458.2053657, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Masterthesis_Sindermann", "keywords": ["Affective Processing in Anorexia Nervosa", "Meta-Analysis"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#58ff8024-dc76-11ea-ad78-7cdd908c7490", "@type": "Dataset", "version": "4862b1dd8434e2e151f38e4c6b19617becae215b", "name": "Dataset_isan_27", "url": "https://example.com/users/isan/dataset_27", "author": [{"@id": "e.isan@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "Nervosa: Processing Neuroimaging Affective Findings A Anorexia", "datePublished": 2129, "author": [{"@id": "e.isan@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Master thesis", "@type": "PublicationEvent", "name": "Master thesis"}, "sameAs": "10.100/99.abc-28", "pagination": "786-805"}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#p.omadsulgor@example.com", "@type": "Person", "email": "p.omadsulgor@example.com", "name": "Dr. Pulgorsan Omadsulgor", "givenName": "Pulgorsan", "familyName": "Omadsulgor", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}]}]}} -{"type": "dataset", "root_dataset_id": "59bff4ee-dc76-11ea-8f22-7cdd908c7490", "root_dataset_version": "927fa89d9ddfb8dad8cf652554090afcd08fcf1e", "dataset_path": "study-84", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090458.1927183, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Masterthesis_Barisch", "keywords": ["Functional Connectivity Changes", "Schizophrena"], "accountablePerson": "m.apalsul@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#59bff4ee-dc76-11ea-8f22-7cdd908c7490", "@type": "Dataset", "version": "927fa89d9ddfb8dad8cf652554090afcd08fcf1e", "name": "Dataset_kol_30", "url": "https://example.com/users/kol/dataset_30", "author": [{"@id": "u.kol@example.com"}, {"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "Affective Changes Network in Schizophrena: Connectivity the Functional A approach Auditory Matter Gray", "datePublished": 2132, "author": [{"@id": "u.kol@example.com"}], "sameAs": "10.100/99.abc-31", "pagination": "953-968"}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#g.ekoslud@example.com", "@type": "Person", "email": "g.ekoslud@example.com", "name": "Prof. Dr. Gormormel Ekoslud", "givenName": "Gormormel", "familyName": "Ekoslud", "honorificSuffix": "Prof. Dr."}]}]}} -{"type": "dataset", "root_dataset_id": "5a5bc5e0-dc76-11ea-a9da-7cdd908c7490", "root_dataset_version": "24cf1d6428d3e52e15136945f3bdff838e92825c", "dataset_path": "study-83", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090458.1782668, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Tahmasian_Valk_2020", "keywords": ["interrelation of sleep and mental and physical health", "grey matter"], "accountablePerson": "e.irigludkolo@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#5a5bc5e0-dc76-11ea-a9da-7cdd908c7490", "@type": "Dataset", "version": "24cf1d6428d3e52e15136945f3bdff838e92825c", "name": "Dataset_modsan_33", "url": "https://example.com/users/modsan/dataset_33", "author": [{"@id": "g.modsan@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "is physical sleep control and and grey-matter genetic The in anchored under interrelation of health", "datePublished": 2135, "accountablePerson": "a.pir@example.com", "sameAs": "10.100/99.abc-34", "author": [{"@id": "s.pal@example.com"}, {"@id": "m.gossulsan@example.com"}, {"@id": "m.imor@example.com"}, {"@id": "e.emali@example.com"}, {"@id": "m.gor@example.com"}, {"@id": "m.kolkospale@example.com"}, {"@id": "o.omorpallud@example.com"}, {"@id": "m.modselu@example.com"}, {"@id": "e.ogormod@example.com"}, {"@id": "s.ladsela@example.com"}, {"@id": "g.modsan@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Communications Biology", "@type": "PublicationEvent", "name": "Communications Biology"}, "description": "a.ekolriga@example.com", "isPartOf": {"@id": "#issue(171)", "@type": "PublicationIssue", "issue_number": 171, "isPartOf": {"@id": "#volume(3)", "@type": "PublicationVolume", "volumeNumber": 3}}, "pagination": "1767-1794"}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.pirsul@example.com", "@type": "Person", "email": "m.pirsul@example.com", "name": "Prof. Dr. Malpirrig Pirsul", "givenName": "Malpirrig", "familyName": "Pirsul", "honorificSuffix": "Prof. Dr."}, {"@id": "https://schema.datalad.org/person#m.sulmod@example.com", "@type": "Person", "email": "m.sulmod@example.com", "name": "Mel Sulmod", "givenName": "Mel", "familyName": "Sulmod"}, {"@id": "https://schema.datalad.org/person#a.pir@example.com", "@type": "Person", "email": "a.pir@example.com", "name": "Agossanrigu Pir", "givenName": "Agossanrigu", "familyName": "Pir"}, {"@id": "https://schema.datalad.org/person#s.ilud@example.com", "@type": "Person", "email": "s.ilud@example.com", "name": "Dr. rer. med. Sul Ilud", "givenName": "Sul", "familyName": "Ilud", "honorificSuffix": "Dr. rer. med."}, {"@id": "https://schema.datalad.org/person#e.modpiru@example.com", "@type": "Person", "email": "e.modpiru@example.com", "name": "Emadu Modpiru", "givenName": "Emadu", "familyName": "Modpiru"}, {"@id": "https://schema.datalad.org/person#i.uselmale@example.com", "@type": "Person", "email": "i.uselmale@example.com", "name": "Dr. Ipulmoro Uselmale", "givenName": "Ipulmoro", "familyName": "Uselmale", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.mora@example.com", "@type": "Person", "email": "i.mora@example.com", "name": "Imolpir Mora", "givenName": "Imolpir", "familyName": "Mora"}, {"@id": "https://schema.datalad.org/person#u.pulpula@example.com", "@type": "Person", "email": "u.pulpula@example.com", "name": "Upir Pulpula", "givenName": "Upir", "familyName": "Pulpula"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#m.ladi@example.com", "@type": "Person", "email": "m.ladi@example.com", "name": "Prof. Dr. Melsanpal Ladi", "givenName": "Melsanpal", "familyName": "Ladi", "honorificSuffix": "Prof. Dr."}, {"@id": "https://schema.datalad.org/person#e.emalkosseli@example.com", "@type": "Person", "email": "e.emalkosseli@example.com", "name": "Ekosmorsulo Emalkosseli", "givenName": "Ekosmorsulo", "familyName": "Emalkosseli"}]}]}} -{"type": "dataset", "root_dataset_id": "5b050b1e-dc76-11ea-88a8-7cdd908c7490", "root_dataset_version": "608716ccd9ed56bb445db81a9c73d43aa902a84d", "dataset_path": "study-82", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090458.1598752, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "DooseGruenefeld15 Frontiers", "keywords": ["audiovisual emotional processing"], "accountablePerson": "m.apalsul@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#5b050b1e-dc76-11ea-88a8-7cdd908c7490", "@type": "Dataset", "version": "608716ccd9ed56bb445db81a9c73d43aa902a84d", "name": "Dataset_omodpirgos_36", "url": "https://example.com/users/omodpirgos/dataset_36", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "with emotional patients in Audiovisual processing and", "datePublished": 2138, "accountablePerson": "i.selkolu@example.com", "sameAs": "10.100/99.abc-37", "author": [{"@id": "a.pirsanmela@example.com"}, {"@id": "s.ladsela@example.com"}, {"@id": "e.omodpirgos@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Frontiers in Integrative Neuroscience", "@type": "PublicationEvent", "name": "Frontiers in Integrative Neuroscience"}, "description": "e.madsani@example.com", "isPartOf": {"@id": "#issue(3)", "@type": "PublicationIssue", "issue_number": 3, "isPartOf": {"@id": "#volume(9)", "@type": "PublicationVolume", "volumeNumber": 9}}, "pagination": "892-922"}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.akolmormal@example.com", "@type": "Person", "email": "i.akolmormal@example.com", "name": "Imodmadlude Akolmormal", "givenName": "Imodmadlude", "familyName": "Akolmormal"}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}]}]}} -{"type": "dataset", "root_dataset_id": "5ba774b2-dc76-11ea-9186-7cdd908c7490", "root_dataset_version": "7d80d256827da2569c71e84f57151e0324169247", "dataset_path": "study-74", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090458.1440642, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "CBPtools", "keywords": ["CBPtools"], "accountablePerson": "a.gos@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#5ba774b2-dc76-11ea-9186-7cdd908c7490", "@type": "Dataset", "version": "7d80d256827da2569c71e84f57151e0324169247", "name": "Dataset_umel_39", "url": "https://example.com/users/umel/dataset_39", "author": [{"@id": "a.umel@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "parcellation A regional connectivity-based for", "datePublished": 2141, "sameAs": "10.100/99.abc-40", "pagination": "305-312", "author": [{"@id": "a.umel@example.com"}, {"@id": "i.imolmal@example.com"}, {"@id": "m.gor@example.com"}, {"@id": "m.kolkospale@example.com"}, {"@id": "g.imorpulmor@example.com"}, {"@id": "m.emodgos@example.com"}, {"@id": "s.ladsela@example.com"}, {"@id": "m.opalsulkosu@example.com"}], "publisher": {"@id": "https://schema.datalad.org/publisher#Springer", "@type": "Organization", "name": "Springer"}, "publication": {"@id": "https://schema.datalad.org/publication_event#Brain Structure and Function", "@type": "PublicationEvent", "name": "Brain Structure and Function"}, "isPartOf": {"@id": "#volume(225)", "@type": "PublicationVolume", "volumeNumber": 225}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#a.gos@example.com", "@type": "Person", "email": "a.gos@example.com", "name": "Aselu Gos", "givenName": "Aselu", "familyName": "Gos"}, {"@id": "https://schema.datalad.org/person#r.ugore@example.com", "@type": "Person", "email": "r.ugore@example.com", "name": "Dr. Rigmodu Ugore", "givenName": "Rigmodu", "familyName": "Ugore", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#u.gosa@example.com", "@type": "Person", "email": "u.gosa@example.com", "name": "Dr. Ukoli Gosa", "givenName": "Ukoli", "familyName": "Gosa", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#s.ilud@example.com", "@type": "Person", "email": "s.ilud@example.com", "name": "Dr. rer. med. Sul Ilud", "givenName": "Sul", "familyName": "Ilud", "honorificSuffix": "Dr. rer. med."}, {"@id": "https://schema.datalad.org/person#i.mora@example.com", "@type": "Person", "email": "i.mora@example.com", "name": "Imolpir Mora", "givenName": "Imolpir", "familyName": "Mora"}, {"@id": "https://schema.datalad.org/person#i.upalo@example.com", "@type": "Person", "email": "i.upalo@example.com", "name": "Imad Upalo", "givenName": "Imad", "familyName": "Upalo"}, {"@id": "https://schema.datalad.org/person#m.imolsel@example.com", "@type": "Person", "email": "m.imolsel@example.com", "name": "Melmodmad Imolsel", "givenName": "Melmodmad", "familyName": "Imolsel"}]}]}} -{"type": "dataset", "root_dataset_id": "5c62610a-dc76-11ea-af43-7cdd908c7490", "root_dataset_version": "089d0a8a2b22d87e63f8de28caf6fa91790ad51a", "dataset_path": "study-47", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090458.0654001, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Master Thesis Wolf", "keywords": ["Master Thesis"], "accountablePerson": "a.gos@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#5c62610a-dc76-11ea-af43-7cdd908c7490", "@type": "Dataset", "version": "089d0a8a2b22d87e63f8de28caf6fa91790ad51a", "name": "Dataset_madpul_42", "url": "https://example.com/users/madpul/dataset_42", "author": [{"@id": "g.madpul@example.com"}, {"@id": "m.opalsulkosu@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "processes aging of schizophrenia", "datePublished": 2144, "author": [{"@id": "g.madpul@example.com"}], "sameAs": "10.100/99.abc-43", "pagination": "1883-1898"}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#a.gos@example.com", "@type": "Person", "email": "a.gos@example.com", "name": "Aselu Gos", "givenName": "Aselu", "familyName": "Gos"}, {"@id": "https://schema.datalad.org/person#m.apir@example.com", "@type": "Person", "email": "m.apir@example.com", "name": "Madpirmod Apir", "givenName": "Madpirmod", "familyName": "Apir"}]}]}} -{"type": "dataset", "root_dataset_id": "5d1d514a-dc76-11ea-a8da-7cdd908c7490", "root_dataset_version": "ae851681646eed997d4d9e716bb5fc3e9a6c36e5", "dataset_path": "study-44", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090458.0509722, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Multimodal CBP", "keywords": ["Multimodal CBP"], "accountablePerson": "a.gos@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#5d1d514a-dc76-11ea-a8da-7cdd908c7490", "@type": "Dataset", "version": "ae851681646eed997d4d9e716bb5fc3e9a6c36e5", "name": "Dataset_opalsulkosu_45", "url": "https://example.com/users/opalsulkosu/dataset_45", "author": [{"@id": "m.opalsulkosu@example.com"}, {"@id": "g.imorpulmor@example.com"}], "description": ""}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#a.gos@example.com", "@type": "Person", "email": "a.gos@example.com", "name": "Aselu Gos", "givenName": "Aselu", "familyName": "Gos"}, {"@id": "https://schema.datalad.org/person#i.upalo@example.com", "@type": "Person", "email": "i.upalo@example.com", "name": "Imad Upalo", "givenName": "Imad", "familyName": "Upalo"}]}]}} -{"type": "dataset", "root_dataset_id": "4b88f9a2-dc76-11ea-a40f-7cdd908c7490", "root_dataset_version": "66955e1d17782f93b4e0ec100f8f6e6e4e897c3c", "dataset_path": "study-115", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090457.9129026, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "HBM_Classification_Paper_2017", "keywords": ["study"], "accountablePerson": "m.apalsul@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#4b88f9a2-dc76-11ea-a40f-7cdd908c7490", "@type": "Dataset", "version": "66955e1d17782f93b4e0ec100f8f6e6e4e897c3c", "name": "Dataset_upirmale_46", "url": "https://example.com/users/upirmale/dataset_46", "author": [{"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "of classification from schizophrenia, age: the advanced networks integrity and On connectivity-based functional disease, Parkinson\u2019s Evidence", "datePublished": 2148, "accountablePerson": "e.irigludkolo@example.com", "sameAs": "10.100/99.abc-47", "pagination": "1689-1699", "author": [{"@id": "p.rigmorluda@example.com"}, {"@id": "e.malu@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "m.kolkospale@example.com"}, {"@id": "m.piru@example.com"}, {"@id": "a.emadsanpali@example.com"}, {"@id": "a.sansani@example.com"}, {"@id": "a.lude@example.com"}, {"@id": "m.usanpalmale@example.com"}, {"@id": "u.morludmodo@example.com"}, {"@id": "a.gorpalsulu@example.com"}, {"@id": "k.omelriggor@example.com"}, {"@id": "m.gosmad@example.com"}, {"@id": "m.osulpira@example.com"}, {"@id": "i.esan@example.com"}, {"@id": "o.pir@example.com"}, {"@id": "i.malkos@example.com"}, {"@id": "i.mad@example.com"}, {"@id": "i.gorsel@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Human Brain Mapping", "@type": "PublicationEvent", "name": "Human Brain Mapping"}, "description": "i.san@example.com", "isPartOf": {"@id": "#issue(12)", "@type": "PublicationIssue", "issue_number": 12, "isPartOf": {"@id": "#volume(38)", "@type": "PublicationVolume", "volumeNumber": 38}}}, {"@id": "#publication[1]", "@type": "ScholarlyArticle", "headline": "advanced of \u201cOn brain to Evidence networks in and Corrigendum single-subject from age: integrity disease, functional the classification\u201d", "datePublished": 2150, "sameAs": "10.100/99.abc-49", "pagination": "1522-1551", "author": [{"@id": "p.rigmorluda@example.com"}, {"@id": "e.malu@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "m.kolkospale@example.com"}, {"@id": "m.piru@example.com"}, {"@id": "a.emadsanpali@example.com"}, {"@id": "a.sansani@example.com"}, {"@id": "a.lude@example.com"}, {"@id": "m.usanpalmale@example.com"}, {"@id": "u.morludmodo@example.com"}, {"@id": "a.gorpalsulu@example.com"}, {"@id": "k.omelriggor@example.com"}, {"@id": "m.gosmad@example.com"}, {"@id": "m.osulpira@example.com"}, {"@id": "i.esan@example.com"}, {"@id": "o.pir@example.com"}, {"@id": "i.malkos@example.com"}, {"@id": "i.mad@example.com"}, {"@id": "i.gorsel@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Human Brain Mapping", "@type": "PublicationEvent", "name": "Human Brain Mapping"}, "isPartOf": {"@id": "#issue(11)", "@type": "PublicationIssue", "issue_number": 11, "isPartOf": {"@id": "#volume(39)", "@type": "PublicationVolume", "volumeNumber": 39}}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#a.modmod@example.com", "@type": "Person", "email": "a.modmod@example.com", "name": "Dr. Aselpal Modmod", "givenName": "Aselpal", "familyName": "Modmod", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#a.ugorsan@example.com", "@type": "Person", "email": "a.ugorsan@example.com", "name": "Dr. Apirsan Ugorsan", "givenName": "Apirsan", "familyName": "Ugorsan", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#i.mora@example.com", "@type": "Person", "email": "i.mora@example.com", "name": "Imolpir Mora", "givenName": "Imolpir", "familyName": "Mora"}, {"@id": "https://schema.datalad.org/person#u.modmadkol@example.com", "@type": "Person", "email": "u.modmadkol@example.com", "name": "Dr. Ukosmodlado Modmadkol", "givenName": "Ukosmodlado", "familyName": "Modmadkol", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#a.omol@example.com", "@type": "Person", "email": "a.omol@example.com", "name": "Akosrigo Omol", "givenName": "Akosrigo", "familyName": "Omol"}, {"@id": "https://schema.datalad.org/person#r.pulmelkol@example.com", "@type": "Person", "email": "r.pulmelkol@example.com", "name": "Prof. Dr. Rigo Pulmelkol", "givenName": "Rigo", "familyName": "Pulmelkol", "honorificSuffix": "Prof. Dr."}, {"@id": "https://schema.datalad.org/person#i.rigi@example.com", "@type": "Person", "email": "i.rigi@example.com", "name": "Igossulmado Rigi", "givenName": "Igossulmado", "familyName": "Rigi"}, {"@id": "https://schema.datalad.org/person#e.uludpirkoli@example.com", "@type": "Person", "email": "e.uludpirkoli@example.com", "name": "Dr. phil. Epirmod Uludpirkoli", "givenName": "Epirmod", "familyName": "Uludpirkoli", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#r.sul@example.com", "@type": "Person", "email": "r.sul@example.com", "name": "Rigkolpul Sul", "givenName": "Rigkolpul", "familyName": "Sul"}, {"@id": "https://schema.datalad.org/person#k.emalselkosu@example.com", "@type": "Person", "email": "k.emalselkosu@example.com", "name": "Kosmoli Emalselkosu", "givenName": "Kosmoli", "familyName": "Emalselkosu"}, {"@id": "https://schema.datalad.org/person#m.amodkosgoru@example.com", "@type": "Person", "email": "m.amodkosgoru@example.com", "name": "Dr. Molmorkosa Amodkosgoru", "givenName": "Molmorkosa", "familyName": "Amodkosgoru", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#l.apali@example.com", "@type": "Person", "email": "l.apali@example.com", "name": "Dr. rer. med. Ludsulgoro Apali", "givenName": "Ludsulgoro", "familyName": "Apali", "honorificSuffix": "Dr. rer. med."}, {"@id": "https://schema.datalad.org/person#l.lado@example.com", "@type": "Person", "email": "l.lado@example.com", "name": "Ladgorgor Lado", "givenName": "Ladgorgor", "familyName": "Lado"}, {"@id": "https://schema.datalad.org/person#m.rigmorsan@example.com", "@type": "Person", "email": "m.rigmorsan@example.com", "name": "Malladpal Rigmorsan", "givenName": "Malladpal", "familyName": "Rigmorsan"}, {"@id": "https://schema.datalad.org/person#u.ladmol@example.com", "@type": "Person", "email": "u.ladmol@example.com", "name": "Umodkolo Ladmol", "givenName": "Umodkolo", "familyName": "Ladmol"}, {"@id": "https://schema.datalad.org/person#k.igorsele@example.com", "@type": "Person", "email": "k.igorsele@example.com", "name": "Dr. Kol Igorsele", "givenName": "Kol", "familyName": "Igorsele", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#l.akolkol@example.com", "@type": "Person", "email": "l.akolkol@example.com", "name": "Dr. rer. med. Ludmelmola Akolkol", "givenName": "Ludmelmola", "familyName": "Akolkol", "honorificSuffix": "Dr. rer. med."}, {"@id": "https://schema.datalad.org/person#e.mori@example.com", "@type": "Person", "email": "e.mori@example.com", "name": "Dr. phil. Epuli Mori", "givenName": "Epuli", "familyName": "Mori", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}]}]}} -{"type": "dataset", "root_dataset_id": "4c2ee286-dc76-11ea-911b-7cdd908c7490", "root_dataset_version": "7b966eabe8e45acdf80d16865acd1cd96c516cde", "dataset_path": "study-109", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090457.7337663, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Mueller11_audiovisualhealthy", "keywords": ["study"], "accountablePerson": "m.apalsul@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#4c2ee286-dc76-11ea-911b-7cdd908c7490", "@type": "Dataset", "version": "7b966eabe8e45acdf80d16865acd1cd96c516cde", "name": "Dataset_upirmale_51", "url": "https://example.com/users/upirmale/dataset_51", "author": [{"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "crossmodal effects Incongruence", "datePublished": 2153, "sameAs": "10.100/99.abc-52", "pagination": "1904-1913", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "g.rigkosu@example.com"}, {"@id": "s.aselkol@example.com"}, {"@id": "m.ipulmel@example.com"}, {"@id": "p.asel@example.com"}, {"@id": "r.agor@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#NeuroImage", "@type": "PublicationEvent", "name": "NeuroImage"}, "isPartOf": {"@id": "#issue(3)", "@type": "PublicationIssue", "issue_number": 3, "isPartOf": {"@id": "#volume(54)", "@type": "PublicationVolume", "volumeNumber": 54}}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#r.umelmola@example.com", "@type": "Person", "email": "r.umelmola@example.com", "name": "Riglud Umelmola", "givenName": "Riglud", "familyName": "Umelmola"}, {"@id": "https://schema.datalad.org/person#o.imadrig@example.com", "@type": "Person", "email": "o.imadrig@example.com", "name": "Dr. Opirlud Imadrig", "givenName": "Opirlud", "familyName": "Imadrig", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#s.sanmolmor@example.com", "@type": "Person", "email": "s.sanmolmor@example.com", "name": "Prof. Dr. Selsane Sanmolmor", "givenName": "Selsane", "familyName": "Sanmolmor", "honorificSuffix": "Prof. Dr."}, {"@id": "https://schema.datalad.org/person#o.aselmoro@example.com", "@type": "Person", "email": "o.aselmoro@example.com", "name": "Dr. phil. Opirselsano Aselmoro", "givenName": "Opirselsano", "familyName": "Aselmoro", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#s.esanmodmadu@example.com", "@type": "Person", "email": "s.esanmodmadu@example.com", "name": "Prof. Dr. Sana Esanmodmadu", "givenName": "Sana", "familyName": "Esanmodmadu", "honorificSuffix": "Prof. Dr."}]}]}} -{"type": "dataset", "root_dataset_id": "4ce38894-dc76-11ea-8fef-7cdd908c7490", "root_dataset_version": "ba052a5a18032a0a83d3009be7c1b02b4813f23c", "dataset_path": "study-108", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090457.714016, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Mueller12_DCM", "keywords": ["study"], "accountablePerson": "m.apalsul@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#4ce38894-dc76-11ea-8fef-7cdd908c7490", "@type": "Dataset", "version": "ba052a5a18032a0a83d3009be7c1b02b4813f23c", "name": "Dataset_upirmale_54", "url": "https://example.com/users/upirmale/dataset_54", "author": [{"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "emotion audiovisual processing", "datePublished": 2156, "sameAs": "10.100/99.abc-55", "pagination": "889-917", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "e.malu@example.com"}, {"@id": "e.sane@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#NeuroImage", "@type": "PublicationEvent", "name": "NeuroImage"}, "isPartOf": {"@id": "#issue(1)", "@type": "PublicationIssue", "issue_number": 1, "isPartOf": {"@id": "#volume(60)", "@type": "PublicationVolume", "volumeNumber": 60}}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#a.ugorsan@example.com", "@type": "Person", "email": "a.ugorsan@example.com", "name": "Dr. Apirsan Ugorsan", "givenName": "Apirsan", "familyName": "Ugorsan", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#e.ekos@example.com", "@type": "Person", "email": "e.ekos@example.com", "name": "Esulsana Ekos", "givenName": "Esulsana", "familyName": "Ekos"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}]}]}} -{"type": "dataset", "root_dataset_id": "4da8b48e-dc76-11ea-964e-7cdd908c7490", "root_dataset_version": "8219d0afcbfe1397979bbbed1f9977c3ea6b8426", "dataset_path": "study-107", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090457.7120416, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Mueller13_frontiers", "keywords": ["study"], "accountablePerson": "m.apalsul@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#4da8b48e-dc76-11ea-964e-7cdd908c7490", "@type": "Dataset", "version": "8219d0afcbfe1397979bbbed1f9977c3ea6b8426", "name": "Dataset_upirmale_57", "url": "https://example.com/users/upirmale/dataset_57", "author": [{"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "functional Dysregulated characterization in connectivity depression: parietal and activity schizophrenia", "datePublished": 2159, "sameAs": "10.100/99.abc-58", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "e.malu@example.com"}, {"@id": "m.asan@example.com"}, {"@id": "m.meli@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Front Hum Neurosci", "@type": "PublicationEvent", "name": "Front Hum Neurosci"}, "isPartOf": {"@id": "#issue(268)", "@type": "PublicationIssue", "issue_number": 268, "isPartOf": {"@id": "#volume(7)", "@type": "PublicationVolume", "volumeNumber": 7}}, "pagination": "71-98"}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#a.ugorsan@example.com", "@type": "Person", "email": "a.ugorsan@example.com", "name": "Dr. Apirsan Ugorsan", "givenName": "Apirsan", "familyName": "Ugorsan", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#s.omelgorladi@example.com", "@type": "Person", "email": "s.omelgorladi@example.com", "name": "Dr. phil. Sansul Omelgorladi", "givenName": "Sansul", "familyName": "Omelgorladi", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#k.umalpalo@example.com", "@type": "Person", "email": "k.umalpalo@example.com", "name": "Kosselo Umalpalo", "givenName": "Kosselo", "familyName": "Umalpalo"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}]}]}} -{"type": "dataset", "root_dataset_id": "4e6738a0-dc76-11ea-94dc-7cdd908c7490", "root_dataset_version": "43391d89c87fe984a55430d7dab4b3300dbb6851", "dataset_path": "study-106", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090457.6966271, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Mueller14_audiovisualdepression", "keywords": ["study"], "accountablePerson": "m.apalsul@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#4e6738a0-dc76-11ea-94dc-7cdd908c7490", "@type": "Dataset", "version": "43391d89c87fe984a55430d7dab4b3300dbb6851", "name": "Dataset_upirmale_60", "url": "https://example.com/users/upirmale/dataset_60", "author": [{"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "Crossmodal in major", "datePublished": 2162, "sameAs": "10.100/99.abc-61", "pagination": "476-500", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "e.malu@example.com"}, {"@id": "o.mal@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Soc Cogn Affect Neurosci", "@type": "PublicationEvent", "name": "Soc Cogn Affect Neurosci"}, "isPartOf": {"@id": "#issue(6)", "@type": "PublicationIssue", "issue_number": 6, "isPartOf": {"@id": "#volume(9)", "@type": "PublicationVolume", "volumeNumber": 9}}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#a.ugorsan@example.com", "@type": "Person", "email": "a.ugorsan@example.com", "name": "Dr. Apirsan Ugorsan", "givenName": "Apirsan", "familyName": "Ugorsan", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#a.gose@example.com", "@type": "Person", "email": "a.gose@example.com", "name": "Asulmolsana Gose", "givenName": "Asulmolsana", "familyName": "Gose"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}]}]}} -{"type": "dataset", "root_dataset_id": "4f03a794-dc76-11ea-994b-7cdd908c7490", "root_dataset_version": "afdc39738008c5c070590263874b8249544aefff", "dataset_path": "study-104", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090457.6748545, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Camilleri_Multistate_Collaborations", "keywords": ["study"], "accountablePerson": "g.pirpirludu@example.com", "contributor": [{"@id": "o.omorpallud@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#4f03a794-dc76-11ea-994b-7cdd908c7490", "@type": "Dataset", "version": "afdc39738008c5c070590263874b8249544aefff", "name": "Dataset_omorpallud_63", "url": "https://example.com/users/omorpallud/dataset_63", "author": [{"@id": "o.omorpallud@example.com"}, {"@id": "s.omelpire@example.com"}], "description": ""}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#g.pirpirludu@example.com", "@type": "Person", "email": "g.pirpirludu@example.com", "name": "Goso Pirpirludu", "givenName": "Goso", "familyName": "Pirpirludu"}, {"@id": "https://schema.datalad.org/person#u.pulpula@example.com", "@type": "Person", "email": "u.pulpula@example.com", "name": "Upir Pulpula", "givenName": "Upir", "familyName": "Pulpula"}]}]}} -{"type": "dataset", "root_dataset_id": "4fb7be64-dc76-11ea-ad07-7cdd908c7490", "root_dataset_version": "f801161e170ae8b5b281e651df1dbe62fafa9614", "dataset_path": "study-103", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090457.6666787, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "OHBM15", "keywords": ["OHBM 2015"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#4fb7be64-dc76-11ea-ad07-7cdd908c7490", "@type": "Dataset", "version": "f801161e170ae8b5b281e651df1dbe62fafa9614", "name": "Dataset_omodpirgos_64", "url": "https://example.com/users/omodpirgos/dataset_64", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}]}]}} -{"type": "dataset", "root_dataset_id": "506ce096-dc76-11ea-95f0-7cdd908c7490", "root_dataset_version": "15f405a8e6b28ff641e8b3df0326aa06392341a1", "dataset_path": "study-102", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090457.6932034, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "OHBM_2019", "keywords": ["OHBM 2019"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#506ce096-dc76-11ea-95f0-7cdd908c7490", "@type": "Dataset", "version": "15f405a8e6b28ff641e8b3df0326aa06392341a1", "name": "Dataset_omodpirgos_65", "url": "https://example.com/users/omodpirgos/dataset_65", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}]}]}} -{"type": "dataset", "root_dataset_id": "5146e8d6-dc76-11ea-a2da-7cdd908c7490", "root_dataset_version": "c0b548cd8a69ce91330e55167f5c243ae4dc25ac", "dataset_path": "study-101", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090457.6865904, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Camilleri15_MultiModal", "keywords": ["study"], "accountablePerson": "g.pirpirludu@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#5146e8d6-dc76-11ea-a2da-7cdd908c7490", "@type": "Dataset", "version": "c0b548cd8a69ce91330e55167f5c243ae4dc25ac", "name": "Dataset_omorpallud_66", "url": "https://example.com/users/omorpallud/dataset_66", "author": [{"@id": "o.omorpallud@example.com"}, {"@id": "s.omelpire@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "trail of of motor speed performance Multi-modal the correlates making imaging", "datePublished": 2168, "accountablePerson": "u.pulpula@example.com", "sameAs": "10.100/99.abc-67", "author": [{"@id": "o.omorpallud@example.com"}, {"@id": "l.imel@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "i.gorsel@example.com"}, {"@id": "e.pal@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Frontiers in neurology", "@type": "PublicationEvent", "name": "Frontiers in neurology"}, "description": "e.kospulsulu@example.com", "isPartOf": {"@id": "#issue(219)", "@type": "PublicationIssue", "issue_number": 219, "isPartOf": {"@id": "#volume(6)", "@type": "PublicationVolume", "volumeNumber": 6}}, "pagination": "1446-1454"}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#g.pirpirludu@example.com", "@type": "Person", "email": "g.pirpirludu@example.com", "name": "Goso Pirpirludu", "givenName": "Goso", "familyName": "Pirpirludu"}, {"@id": "https://schema.datalad.org/person#u.pulpula@example.com", "@type": "Person", "email": "u.pulpula@example.com", "name": "Upir Pulpula", "givenName": "Upir", "familyName": "Pulpula"}, {"@id": "https://schema.datalad.org/person#i.ugos@example.com", "@type": "Person", "email": "i.ugos@example.com", "name": "Imad Ugos", "givenName": "Imad", "familyName": "Ugos"}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#e.mori@example.com", "@type": "Person", "email": "e.mori@example.com", "name": "Dr. phil. Epuli Mori", "givenName": "Epuli", "familyName": "Mori", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#a.osel@example.com", "@type": "Person", "email": "a.osel@example.com", "name": "Dr. phil. Amellade Osel", "givenName": "Amellade", "familyName": "Osel", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}]}]}} -{"type": "dataset", "root_dataset_id": "52142b84-dc76-11ea-98c5-7cdd908c7490", "root_dataset_version": "244a8ad43b00622989ae7f0d2b59c80697dadb80", "dataset_path": "study-100", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090457.6464868, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Camilleri18_eMDN", "keywords": ["neural correlates"], "accountablePerson": "g.pirpirludu@example.com", "contributor": [{"@id": "o.omorpallud@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#52142b84-dc76-11ea-98c5-7cdd908c7490", "@type": "Dataset", "version": "244a8ad43b00622989ae7f0d2b59c80697dadb80", "name": "Dataset_omorpallud_69", "url": "https://example.com/users/omorpallud/dataset_69", "author": [{"@id": "o.omorpallud@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "multiple-demand Definition extended network and", "datePublished": 2171, "sameAs": "10.100/99.abc-70", "pagination": "1549-1564", "author": [{"@id": "o.omorpallud@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "m.meli@example.com"}, {"@id": "m.asan@example.com"}, {"@id": "m.kolkospale@example.com"}, {"@id": "m.emodgos@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Neuroimage", "@type": "PublicationEvent", "name": "Neuroimage"}, "isPartOf": {"@id": "#volume(165)", "@type": "PublicationVolume", "volumeNumber": 165}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#u.pulpula@example.com", "@type": "Person", "email": "u.pulpula@example.com", "name": "Upir Pulpula", "givenName": "Upir", "familyName": "Pulpula"}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#k.umalpalo@example.com", "@type": "Person", "email": "k.umalpalo@example.com", "name": "Kosselo Umalpalo", "givenName": "Kosselo", "familyName": "Umalpalo"}, {"@id": "https://schema.datalad.org/person#s.omelgorladi@example.com", "@type": "Person", "email": "s.omelgorladi@example.com", "name": "Dr. phil. Sansul Omelgorladi", "givenName": "Sansul", "familyName": "Omelgorladi", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#i.mora@example.com", "@type": "Person", "email": "i.mora@example.com", "name": "Imolpir Mora", "givenName": "Imolpir", "familyName": "Mora"}, {"@id": "https://schema.datalad.org/person#m.imolsel@example.com", "@type": "Person", "email": "m.imolsel@example.com", "name": "Melmodmad Imolsel", "givenName": "Melmodmad", "familyName": "Imolsel"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#g.pirpirludu@example.com", "@type": "Person", "email": "g.pirpirludu@example.com", "name": "Goso Pirpirludu", "givenName": "Goso", "familyName": "Pirpirludu"}]}]}} +{"type": "dataset", "root_dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "root_dataset_version": "b3f02438✂SHA1", "dataset_path": "study-99", "dataset_id": "52b2f098-dc76-11ea-a6da-7cdd908c7490", "dataset_version": "1b0d92f6✂SHA1", "extraction_time": 1675090458.2812586, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Mueller14_EEGSZ", "keywords": ["Schizophrenia"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#52b2f098-dc76-11ea-a6da-7cdd908c7490", "@type": "Dataset", "version": "1b0d92f6✂SHA1", "name": "Dataset_omodpirgos_0", "url": "https://example.com/users/omodpirgos/dataset_0", "author": [{"@id": "e.omodpirgos@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "in congruent Schizophrenia face emotional by of affective deficits", "datePublished": 2102, "sameAs": "10.100/99.abc-1", "pagination": "525-553", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "o.mal@example.com"}, {"@id": "o.gos@example.com"}, {"@id": "e.sane@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Soc Cogn Affect Neurosci", "@type": "PublicationEvent", "name": "Soc Cogn Affect Neurosci"}, "isPartOf": {"@id": "#issue(4)", "@type": "PublicationIssue", "issue_number": 4, "isPartOf": {"@id": "#volume(9)", "@type": "PublicationVolume", "volumeNumber": 9}}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#a.gose@example.com", "@type": "Person", "email": "a.gose@example.com", "name": "Asulmolsana Gose", "givenName": "Asulmolsana", "familyName": "Gose"}, {"@id": "https://schema.datalad.org/person#g.agor@example.com", "@type": "Person", "email": "g.agor@example.com", "name": "Gossulsela Agor", "givenName": "Gossulsela", "familyName": "Agor"}, {"@id": "https://schema.datalad.org/person#e.ekos@example.com", "@type": "Person", "email": "e.ekos@example.com", "name": "Esulsana Ekos", "givenName": "Esulsana", "familyName": "Ekos"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}]}]}} +{"type": "dataset", "root_dataset_id": "535edf84-dc76-11ea-979c-7cdd908c7490", "root_dataset_version": "96883aef✂SHA1", "dataset_path": "study-98", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090458.2790313, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Mueller15_cognflexibility", "keywords": ["Interindividual differences"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#535edf84-dc76-11ea-979c-7cdd908c7490", "@type": "Dataset", "version": "96883aef✂SHA1", "name": "Dataset_omodpirgos_3", "url": "https://example.com/users/omodpirgos/dataset_3", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "Interindividual of volume, differences impulsivity functional flexibility: influence matter and connectivity in", "datePublished": 2105, "sameAs": "10.100/99.abc-4", "pagination": "151-169", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "i.upirmale@example.com"}, {"@id": "e.malu@example.com"}, {"@id": "p.molludsulo@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Brain Struct Func", "@type": "PublicationEvent", "name": "Brain Struct Func"}, "isPartOf": {"@id": "#issue(4)", "@type": "PublicationIssue", "issue_number": 4, "isPartOf": {"@id": "#volume(220)", "@type": "PublicationVolume", "volumeNumber": 220}}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#a.ugorsan@example.com", "@type": "Person", "email": "a.ugorsan@example.com", "name": "Dr. Apirsan Ugorsan", "givenName": "Apirsan", "familyName": "Ugorsan", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#m.pal@example.com", "@type": "Person", "email": "m.pal@example.com", "name": "Dr. phil. Madludlade Pal", "givenName": "Madludlade", "familyName": "Pal", "honorificSuffix": "Dr. phil."}]}]}} +{"type": "dataset", "root_dataset_id": "542308c8-dc76-11ea-940a-7cdd908c7490", "root_dataset_version": "4bcda921✂SHA1", "dataset_path": "study-97", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090458.2600777, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Mueller18_FaceALE", "keywords": ["meta-analysis"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#542308c8-dc76-11ea-940a-7cdd908c7490", "@type": "Dataset", "version": "4bcda921✂SHA1", "name": "Dataset_omodpirgos_6", "url": "https://example.com/users/omodpirgos/dataset_6", "author": [{"@id": "e.omodpirgos@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "the An Influence task processing: of neural and meta-analysis of face network ALE", "datePublished": 2108, "sameAs": "10.100/99.abc-7", "pagination": "1634-1655", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "m.amol@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Cortex", "@type": "PublicationEvent", "name": "Cortex"}, "isPartOf": {"@id": "#volume(103)", "@type": "PublicationVolume", "volumeNumber": 103}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#o.ladlud@example.com", "@type": "Person", "email": "o.ladlud@example.com", "name": "Dr. Omorkolsan Ladlud", "givenName": "Omorkolsan", "familyName": "Ladlud", "honorificSuffix": "Dr."}]}]}} +{"type": "dataset", "root_dataset_id": "54ded198-dc76-11ea-9eff-7cdd908c7490", "root_dataset_version": "c9f77378✂SHA1", "dataset_path": "study-96", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090458.262438, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Nostro18_Prediction", "keywords": ["study"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}, {"@id": "o.omorpallud@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#54ded198-dc76-11ea-9eff-7cdd908c7490", "@type": "Dataset", "version": "c9f77378✂SHA1", "name": "Dataset_omodpirgos_9", "url": "https://example.com/users/omodpirgos/dataset_9", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "o.omorpallud@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "network-based connectivity functional personality", "datePublished": 2111, "sameAs": "10.100/99.abc-10", "pagination": "1374-1394", "author": [{"@id": "a.ilud@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "a.emadsanpali@example.com"}, {"@id": "p.rigmorluda@example.com"}, {"@id": "m.kolkospale@example.com"}, {"@id": "i.upirmale@example.com"}, {"@id": "m.opalsulkosu@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Brain Struct Funct", "@type": "PublicationEvent", "name": "Brain Struct Funct"}, "isPartOf": {"@id": "#issue(6)", "@type": "PublicationIssue", "issue_number": 6, "isPartOf": {"@id": "#volume(223)", "@type": "PublicationVolume", "volumeNumber": 223}}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.mora@example.com", "@type": "Person", "email": "i.mora@example.com", "name": "Imolpir Mora", "givenName": "Imolpir", "familyName": "Mora"}, {"@id": "https://schema.datalad.org/person#g.lad@example.com", "@type": "Person", "email": "g.lad@example.com", "name": "Gosa Lad", "givenName": "Gosa", "familyName": "Lad"}, {"@id": "https://schema.datalad.org/person#a.omol@example.com", "@type": "Person", "email": "a.omol@example.com", "name": "Akosrigo Omol", "givenName": "Akosrigo", "familyName": "Omol"}, {"@id": "https://schema.datalad.org/person#a.modmod@example.com", "@type": "Person", "email": "a.modmod@example.com", "name": "Dr. Aselpal Modmod", "givenName": "Aselpal", "familyName": "Modmod", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#a.gos@example.com", "@type": "Person", "email": "a.gos@example.com", "name": "Aselu Gos", "givenName": "Aselu", "familyName": "Gos"}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#u.pulpula@example.com", "@type": "Person", "email": "u.pulpula@example.com", "name": "Upir Pulpula", "givenName": "Upir", "familyName": "Pulpula"}]}]}} +{"type": "dataset", "root_dataset_id": "5599d916-dc76-11ea-8d5f-7cdd908c7490", "root_dataset_version": "1fdf34c1✂SHA1", "dataset_path": "study-95", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090458.2433488, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Nostro17_VBM", "keywords": ["Correlation Personality and Brain Structure"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}, {"@id": "o.omorpallud@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#5599d916-dc76-11ea-8d5f-7cdd908c7490", "@type": "Dataset", "version": "1fdf34c1✂SHA1", "name": "Dataset_omodpirgos_12", "url": "https://example.com/users/omodpirgos/dataset_12", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "o.omorpallud@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "Correlations and of Crucial A Brain Between Structure:", "datePublished": 2114, "sameAs": "10.100/99.abc-13", "pagination": "1945-1972", "author": [{"@id": "a.ilud@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "l.imel@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Cereb Cortex", "@type": "PublicationEvent", "name": "Cereb Cortex"}, "isPartOf": {"@id": "#issue(7)", "@type": "PublicationIssue", "issue_number": 7, "isPartOf": {"@id": "#volume(27)", "@type": "PublicationVolume", "volumeNumber": 27}}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#i.ugos@example.com", "@type": "Person", "email": "i.ugos@example.com", "name": "Imad Ugos", "givenName": "Imad", "familyName": "Ugos"}, {"@id": "https://schema.datalad.org/person#g.lad@example.com", "@type": "Person", "email": "g.lad@example.com", "name": "Gosa Lad", "givenName": "Gosa", "familyName": "Lad"}, {"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#u.pulpula@example.com", "@type": "Person", "email": "u.pulpula@example.com", "name": "Upir Pulpula", "givenName": "Upir", "familyName": "Pulpula"}]}]}} +{"type": "dataset", "root_dataset_id": "56370470-dc76-11ea-b64b-7cdd908c7490", "root_dataset_version": "734d1649✂SHA1", "dataset_path": "study-93", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090458.243436, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Mueller16_ALEdepression", "keywords": ["Unipolar Depression"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#56370470-dc76-11ea-b64b-7cdd908c7490", "@type": "Dataset", "version": "734d1649✂SHA1", "name": "Dataset_omodpirgos_15", "url": "https://example.com/users/omodpirgos/dataset_15", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "Revisited: in Unipolar Brain Activity Neuroimaging of Studies", "datePublished": 2117, "sameAs": "10.100/99.abc-16", "pagination": "1071-1083", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "e.malu@example.com"}, {"@id": "m.emod@example.com"}, {"@id": "m.asan@example.com"}, {"@id": "m.meli@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#JAMA Psychiatry", "@type": "PublicationEvent", "name": "JAMA Psychiatry"}, "isPartOf": {"@id": "#issue(1)", "@type": "PublicationIssue", "issue_number": 1, "isPartOf": {"@id": "#volume(74)", "@type": "PublicationVolume", "volumeNumber": 74}}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#k.umalpalo@example.com", "@type": "Person", "email": "k.umalpalo@example.com", "name": "Kosselo Umalpalo", "givenName": "Kosselo", "familyName": "Umalpalo"}, {"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#o.selsulmor@example.com", "@type": "Person", "email": "o.selsulmor@example.com", "name": "Dr. Osanmodmelo Selsulmor", "givenName": "Osanmodmelo", "familyName": "Selsulmor", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#a.ugorsan@example.com", "@type": "Person", "email": "a.ugorsan@example.com", "name": "Dr. Apirsan Ugorsan", "givenName": "Apirsan", "familyName": "Ugorsan", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#s.omelgorladi@example.com", "@type": "Person", "email": "s.omelgorladi@example.com", "name": "Dr. phil. Sansul Omelgorladi", "givenName": "Sansul", "familyName": "Omelgorladi", "honorificSuffix": "Dr. phil."}]}]}} +{"type": "dataset", "root_dataset_id": "56da392e-dc76-11ea-91f4-7cdd908c7490", "root_dataset_version": "2a5737a7✂SHA1", "dataset_path": "study-92", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090458.2252412, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Masterthesis_Serbanescu", "keywords": ["master thesis", "meta-analysis", "functional neuroimgaging studies"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}, {"@id": "m.emod@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#56da392e-dc76-11ea-91f4-7cdd908c7490", "@type": "Dataset", "version": "2a5737a7✂SHA1", "name": "Dataset_emod_18", "url": "https://example.com/users/emod/dataset_18", "author": [{"@id": "m.emod@example.com"}, {"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "meta-analysis depression: cognitive Changes major functional brain coordinate studies processing and neuroimaging in activity of emotional", "datePublished": 2120, "author": [{"@id": "m.emod@example.com"}], "sameAs": "10.100/99.abc-19", "pagination": "1154-1182"}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#o.selsulmor@example.com", "@type": "Person", "email": "o.selsulmor@example.com", "name": "Dr. Osanmodmelo Selsulmor", "givenName": "Osanmodmelo", "familyName": "Selsulmor", "honorificSuffix": "Dr."}]}]}} +{"type": "dataset", "root_dataset_id": "57796120-dc76-11ea-a8c4-7cdd908c7490", "root_dataset_version": "dba9e0da✂SHA1", "dataset_path": "study-91", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090458.2255168, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Kogler16_AmyRS", "keywords": ["Sex differences", "amygdalae"], "accountablePerson": "m.apalsul@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#57796120-dc76-11ea-a8c4-7cdd908c7490", "@type": "Dataset", "version": "dba9e0da✂SHA1", "name": "Dataset_ukol_21", "url": "https://example.com/users/ukol/dataset_21", "author": [{"@id": "g.ukol@example.com"}, {"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "association cortisol in functional the of the Sex amygdalae with", "datePublished": 2123, "sameAs": "10.100/99.abc-22", "pagination": "681-699", "author": [{"@id": "g.ukol@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "m.puli@example.com"}, {"@id": "m.aladmadsane@example.com"}, {"@id": "k.mal@example.com"}, {"@id": "l.akol@example.com"}, {"@id": "g.rigkosu@example.com"}, {"@id": "g.oselrigsan@example.com"}, {"@id": "s.ladsela@example.com"}, {"@id": "s.aselkol@example.com"}], "publisher": {"@id": "https://schema.datalad.org/publisher#Elsevier", "@type": "Organization", "name": "Elsevier"}, "publication": {"@id": "https://schema.datalad.org/publication_event#NeuroImage", "@type": "PublicationEvent", "name": "NeuroImage"}, "isPartOf": {"@id": "#volume(134)", "@type": "PublicationVolume", "volumeNumber": 134}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#k.modsul@example.com", "@type": "Person", "email": "k.modsul@example.com", "name": "Dr. Kolselo Modsul", "givenName": "Kolselo", "familyName": "Modsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#m.upalpal@example.com", "@type": "Person", "email": "m.upalpal@example.com", "name": "Dr. Modmol Upalpal", "givenName": "Modmol", "familyName": "Upalpal", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#o.morkosu@example.com", "@type": "Person", "email": "o.morkosu@example.com", "name": "Osulkol Morkosu", "givenName": "Osulkol", "familyName": "Morkosu"}, {"@id": "https://schema.datalad.org/person#a.esel@example.com", "@type": "Person", "email": "a.esel@example.com", "name": "Dr. Agorsul Esel", "givenName": "Agorsul", "familyName": "Esel", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#a.imolpala@example.com", "@type": "Person", "email": "a.imolpala@example.com", "name": "Dr. phil. Apulpulpiro Imolpala", "givenName": "Apulpulpiro", "familyName": "Imolpala", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#o.eselmodi@example.com", "@type": "Person", "email": "o.eselmodi@example.com", "name": "Oludgosi Eselmodi", "givenName": "Oludgosi", "familyName": "Eselmodi"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#k.umalpalo@example.com", "@type": "Person", "email": "k.umalpalo@example.com", "name": "Kosselo Umalpalo", "givenName": "Kosselo", "familyName": "Umalpalo"}, {"@id": "https://schema.datalad.org/person#s.upirmor@example.com", "@type": "Person", "email": "s.upirmor@example.com", "name": "Dr. Sulpirsuli Upirmor", "givenName": "Sulpirsuli", "familyName": "Upirmor", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#o.imadrig@example.com", "@type": "Person", "email": "o.imadrig@example.com", "name": "Dr. Opirlud Imadrig", "givenName": "Opirlud", "familyName": "Imadrig", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#r.umelmola@example.com", "@type": "Person", "email": "r.umelmola@example.com", "name": "Riglud Umelmola", "givenName": "Riglud", "familyName": "Umelmola"}]}]}} +{"type": "dataset", "root_dataset_id": "58253d06-dc76-11ea-aa7e-7cdd908c7490", "root_dataset_version": "5d344fee✂SHA1", "dataset_path": "study-90", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090458.2096868, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Kogler15_MetaStress", "keywords": ["Psychosocial versus physiological stress", "Meta-Analyses"], "accountablePerson": "m.apalsul@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#58253d06-dc76-11ea-aa7e-7cdd908c7490", "@type": "Dataset", "version": "5d344fee✂SHA1", "name": "Dataset_upirmale_24", "url": "https://example.com/users/upirmale/dataset_24", "author": [{"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "- of Meta-analyses of stress neural reactions the stress and versus deactivations activations correlates", "datePublished": 2126, "accountablePerson": "a.imolpala@example.com", "sameAs": "10.100/99.abc-25", "pagination": "447-470", "author": [{"@id": "g.ukol@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "g.lud@example.com"}, {"@id": "s.ladsela@example.com"}, {"@id": "m.meli@example.com"}, {"@id": "g.oselrigsan@example.com"}, {"@id": "s.aselkol@example.com"}], "publisher": {"@id": "https://schema.datalad.org/publisher#Elsevier", "@type": "Organization", "name": "Elsevier"}, "publication": {"@id": "https://schema.datalad.org/publication_event#NeuroImage", "@type": "PublicationEvent", "name": "NeuroImage"}, "description": "k.rigpulsan@example.com", "isPartOf": {"@id": "#volume(119)", "@type": "PublicationVolume", "volumeNumber": 119}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#a.imolpala@example.com", "@type": "Person", "email": "a.imolpala@example.com", "name": "Dr. phil. Apulpulpiro Imolpala", "givenName": "Apulpulpiro", "familyName": "Imolpala", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#o.eselmodi@example.com", "@type": "Person", "email": "o.eselmodi@example.com", "name": "Oludgosi Eselmodi", "givenName": "Oludgosi", "familyName": "Eselmodi"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#k.umalpalo@example.com", "@type": "Person", "email": "k.umalpalo@example.com", "name": "Kosselo Umalpalo", "givenName": "Kosselo", "familyName": "Umalpalo"}, {"@id": "https://schema.datalad.org/person#s.upirmor@example.com", "@type": "Person", "email": "s.upirmor@example.com", "name": "Dr. Sulpirsuli Upirmor", "givenName": "Sulpirsuli", "familyName": "Upirmor", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#o.imadrig@example.com", "@type": "Person", "email": "o.imadrig@example.com", "name": "Dr. Opirlud Imadrig", "givenName": "Opirlud", "familyName": "Imadrig", "honorificSuffix": "Dr."}]}]}} +{"type": "dataset", "root_dataset_id": "58ff8024-dc76-11ea-ad78-7cdd908c7490", "root_dataset_version": "4862b1dd✂SHA1", "dataset_path": "study-85", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090458.2053657, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Masterthesis_Sindermann", "keywords": ["Affective Processing in Anorexia Nervosa", "Meta-Analysis"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#58ff8024-dc76-11ea-ad78-7cdd908c7490", "@type": "Dataset", "version": "4862b1dd✂SHA1", "name": "Dataset_isan_27", "url": "https://example.com/users/isan/dataset_27", "author": [{"@id": "e.isan@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "Nervosa: Processing Neuroimaging Affective Findings A Anorexia", "datePublished": 2129, "author": [{"@id": "e.isan@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Master thesis", "@type": "PublicationEvent", "name": "Master thesis"}, "sameAs": "10.100/99.abc-28", "pagination": "786-805"}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#p.omadsulgor@example.com", "@type": "Person", "email": "p.omadsulgor@example.com", "name": "Dr. Pulgorsan Omadsulgor", "givenName": "Pulgorsan", "familyName": "Omadsulgor", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}]}]}} +{"type": "dataset", "root_dataset_id": "59bff4ee-dc76-11ea-8f22-7cdd908c7490", "root_dataset_version": "927fa89d✂SHA1", "dataset_path": "study-84", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090458.1927183, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Masterthesis_Barisch", "keywords": ["Functional Connectivity Changes", "Schizophrena"], "accountablePerson": "m.apalsul@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#59bff4ee-dc76-11ea-8f22-7cdd908c7490", "@type": "Dataset", "version": "927fa89d✂SHA1", "name": "Dataset_kol_30", "url": "https://example.com/users/kol/dataset_30", "author": [{"@id": "u.kol@example.com"}, {"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "Affective Changes Network in Schizophrena: Connectivity the Functional A approach Auditory Matter Gray", "datePublished": 2132, "author": [{"@id": "u.kol@example.com"}], "sameAs": "10.100/99.abc-31", "pagination": "953-968"}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#g.ekoslud@example.com", "@type": "Person", "email": "g.ekoslud@example.com", "name": "Prof. Dr. Gormormel Ekoslud", "givenName": "Gormormel", "familyName": "Ekoslud", "honorificSuffix": "Prof. Dr."}]}]}} +{"type": "dataset", "root_dataset_id": "5a5bc5e0-dc76-11ea-a9da-7cdd908c7490", "root_dataset_version": "24cf1d64✂SHA1", "dataset_path": "study-83", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090458.1782668, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Tahmasian_Valk_2020", "keywords": ["interrelation of sleep and mental and physical health", "grey matter"], "accountablePerson": "e.irigludkolo@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#5a5bc5e0-dc76-11ea-a9da-7cdd908c7490", "@type": "Dataset", "version": "24cf1d64✂SHA1", "name": "Dataset_modsan_33", "url": "https://example.com/users/modsan/dataset_33", "author": [{"@id": "g.modsan@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "is physical sleep control and and grey-matter genetic The in anchored under interrelation of health", "datePublished": 2135, "accountablePerson": "a.pir@example.com", "sameAs": "10.100/99.abc-34", "author": [{"@id": "s.pal@example.com"}, {"@id": "m.gossulsan@example.com"}, {"@id": "m.imor@example.com"}, {"@id": "e.emali@example.com"}, {"@id": "m.gor@example.com"}, {"@id": "m.kolkospale@example.com"}, {"@id": "o.omorpallud@example.com"}, {"@id": "m.modselu@example.com"}, {"@id": "e.ogormod@example.com"}, {"@id": "s.ladsela@example.com"}, {"@id": "g.modsan@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Communications Biology", "@type": "PublicationEvent", "name": "Communications Biology"}, "description": "a.ekolriga@example.com", "isPartOf": {"@id": "#issue(171)", "@type": "PublicationIssue", "issue_number": 171, "isPartOf": {"@id": "#volume(3)", "@type": "PublicationVolume", "volumeNumber": 3}}, "pagination": "1767-1794"}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.pirsul@example.com", "@type": "Person", "email": "m.pirsul@example.com", "name": "Prof. Dr. Malpirrig Pirsul", "givenName": "Malpirrig", "familyName": "Pirsul", "honorificSuffix": "Prof. Dr."}, {"@id": "https://schema.datalad.org/person#m.sulmod@example.com", "@type": "Person", "email": "m.sulmod@example.com", "name": "Mel Sulmod", "givenName": "Mel", "familyName": "Sulmod"}, {"@id": "https://schema.datalad.org/person#a.pir@example.com", "@type": "Person", "email": "a.pir@example.com", "name": "Agossanrigu Pir", "givenName": "Agossanrigu", "familyName": "Pir"}, {"@id": "https://schema.datalad.org/person#s.ilud@example.com", "@type": "Person", "email": "s.ilud@example.com", "name": "Dr. rer. med. Sul Ilud", "givenName": "Sul", "familyName": "Ilud", "honorificSuffix": "Dr. rer. med."}, {"@id": "https://schema.datalad.org/person#e.modpiru@example.com", "@type": "Person", "email": "e.modpiru@example.com", "name": "Emadu Modpiru", "givenName": "Emadu", "familyName": "Modpiru"}, {"@id": "https://schema.datalad.org/person#i.uselmale@example.com", "@type": "Person", "email": "i.uselmale@example.com", "name": "Dr. Ipulmoro Uselmale", "givenName": "Ipulmoro", "familyName": "Uselmale", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.mora@example.com", "@type": "Person", "email": "i.mora@example.com", "name": "Imolpir Mora", "givenName": "Imolpir", "familyName": "Mora"}, {"@id": "https://schema.datalad.org/person#u.pulpula@example.com", "@type": "Person", "email": "u.pulpula@example.com", "name": "Upir Pulpula", "givenName": "Upir", "familyName": "Pulpula"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#m.ladi@example.com", "@type": "Person", "email": "m.ladi@example.com", "name": "Prof. Dr. Melsanpal Ladi", "givenName": "Melsanpal", "familyName": "Ladi", "honorificSuffix": "Prof. Dr."}, {"@id": "https://schema.datalad.org/person#e.emalkosseli@example.com", "@type": "Person", "email": "e.emalkosseli@example.com", "name": "Ekosmorsulo Emalkosseli", "givenName": "Ekosmorsulo", "familyName": "Emalkosseli"}]}]}} +{"type": "dataset", "root_dataset_id": "5b050b1e-dc76-11ea-88a8-7cdd908c7490", "root_dataset_version": "608716cc✂SHA1", "dataset_path": "study-82", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090458.1598752, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "DooseGruenefeld15 Frontiers", "keywords": ["audiovisual emotional processing"], "accountablePerson": "m.apalsul@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#5b050b1e-dc76-11ea-88a8-7cdd908c7490", "@type": "Dataset", "version": "608716cc✂SHA1", "name": "Dataset_omodpirgos_36", "url": "https://example.com/users/omodpirgos/dataset_36", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "with emotional patients in Audiovisual processing and", "datePublished": 2138, "accountablePerson": "i.selkolu@example.com", "sameAs": "10.100/99.abc-37", "author": [{"@id": "a.pirsanmela@example.com"}, {"@id": "s.ladsela@example.com"}, {"@id": "e.omodpirgos@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Frontiers in Integrative Neuroscience", "@type": "PublicationEvent", "name": "Frontiers in Integrative Neuroscience"}, "description": "e.madsani@example.com", "isPartOf": {"@id": "#issue(3)", "@type": "PublicationIssue", "issue_number": 3, "isPartOf": {"@id": "#volume(9)", "@type": "PublicationVolume", "volumeNumber": 9}}, "pagination": "892-922"}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.akolmormal@example.com", "@type": "Person", "email": "i.akolmormal@example.com", "name": "Imodmadlude Akolmormal", "givenName": "Imodmadlude", "familyName": "Akolmormal"}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}]}]}} +{"type": "dataset", "root_dataset_id": "5ba774b2-dc76-11ea-9186-7cdd908c7490", "root_dataset_version": "7d80d256✂SHA1", "dataset_path": "study-74", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090458.1440642, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "CBPtools", "keywords": ["CBPtools"], "accountablePerson": "a.gos@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#5ba774b2-dc76-11ea-9186-7cdd908c7490", "@type": "Dataset", "version": "7d80d256✂SHA1", "name": "Dataset_umel_39", "url": "https://example.com/users/umel/dataset_39", "author": [{"@id": "a.umel@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "parcellation A regional connectivity-based for", "datePublished": 2141, "sameAs": "10.100/99.abc-40", "pagination": "305-312", "author": [{"@id": "a.umel@example.com"}, {"@id": "i.imolmal@example.com"}, {"@id": "m.gor@example.com"}, {"@id": "m.kolkospale@example.com"}, {"@id": "g.imorpulmor@example.com"}, {"@id": "m.emodgos@example.com"}, {"@id": "s.ladsela@example.com"}, {"@id": "m.opalsulkosu@example.com"}], "publisher": {"@id": "https://schema.datalad.org/publisher#Springer", "@type": "Organization", "name": "Springer"}, "publication": {"@id": "https://schema.datalad.org/publication_event#Brain Structure and Function", "@type": "PublicationEvent", "name": "Brain Structure and Function"}, "isPartOf": {"@id": "#volume(225)", "@type": "PublicationVolume", "volumeNumber": 225}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#a.gos@example.com", "@type": "Person", "email": "a.gos@example.com", "name": "Aselu Gos", "givenName": "Aselu", "familyName": "Gos"}, {"@id": "https://schema.datalad.org/person#r.ugore@example.com", "@type": "Person", "email": "r.ugore@example.com", "name": "Dr. Rigmodu Ugore", "givenName": "Rigmodu", "familyName": "Ugore", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#u.gosa@example.com", "@type": "Person", "email": "u.gosa@example.com", "name": "Dr. Ukoli Gosa", "givenName": "Ukoli", "familyName": "Gosa", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#s.ilud@example.com", "@type": "Person", "email": "s.ilud@example.com", "name": "Dr. rer. med. Sul Ilud", "givenName": "Sul", "familyName": "Ilud", "honorificSuffix": "Dr. rer. med."}, {"@id": "https://schema.datalad.org/person#i.mora@example.com", "@type": "Person", "email": "i.mora@example.com", "name": "Imolpir Mora", "givenName": "Imolpir", "familyName": "Mora"}, {"@id": "https://schema.datalad.org/person#i.upalo@example.com", "@type": "Person", "email": "i.upalo@example.com", "name": "Imad Upalo", "givenName": "Imad", "familyName": "Upalo"}, {"@id": "https://schema.datalad.org/person#m.imolsel@example.com", "@type": "Person", "email": "m.imolsel@example.com", "name": "Melmodmad Imolsel", "givenName": "Melmodmad", "familyName": "Imolsel"}]}]}} +{"type": "dataset", "root_dataset_id": "5c62610a-dc76-11ea-af43-7cdd908c7490", "root_dataset_version": "089d0a8a✂SHA1", "dataset_path": "study-47", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090458.0654001, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Master Thesis Wolf", "keywords": ["Master Thesis"], "accountablePerson": "a.gos@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#5c62610a-dc76-11ea-af43-7cdd908c7490", "@type": "Dataset", "version": "089d0a8a✂SHA1", "name": "Dataset_madpul_42", "url": "https://example.com/users/madpul/dataset_42", "author": [{"@id": "g.madpul@example.com"}, {"@id": "m.opalsulkosu@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "processes aging of schizophrenia", "datePublished": 2144, "author": [{"@id": "g.madpul@example.com"}], "sameAs": "10.100/99.abc-43", "pagination": "1883-1898"}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#a.gos@example.com", "@type": "Person", "email": "a.gos@example.com", "name": "Aselu Gos", "givenName": "Aselu", "familyName": "Gos"}, {"@id": "https://schema.datalad.org/person#m.apir@example.com", "@type": "Person", "email": "m.apir@example.com", "name": "Madpirmod Apir", "givenName": "Madpirmod", "familyName": "Apir"}]}]}} +{"type": "dataset", "root_dataset_id": "5d1d514a-dc76-11ea-a8da-7cdd908c7490", "root_dataset_version": "ae851681✂SHA1", "dataset_path": "study-44", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090458.0509722, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Multimodal CBP", "keywords": ["Multimodal CBP"], "accountablePerson": "a.gos@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#5d1d514a-dc76-11ea-a8da-7cdd908c7490", "@type": "Dataset", "version": "ae851681✂SHA1", "name": "Dataset_opalsulkosu_45", "url": "https://example.com/users/opalsulkosu/dataset_45", "author": [{"@id": "m.opalsulkosu@example.com"}, {"@id": "g.imorpulmor@example.com"}], "description": ""}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#a.gos@example.com", "@type": "Person", "email": "a.gos@example.com", "name": "Aselu Gos", "givenName": "Aselu", "familyName": "Gos"}, {"@id": "https://schema.datalad.org/person#i.upalo@example.com", "@type": "Person", "email": "i.upalo@example.com", "name": "Imad Upalo", "givenName": "Imad", "familyName": "Upalo"}]}]}} +{"type": "dataset", "root_dataset_id": "4b88f9a2-dc76-11ea-a40f-7cdd908c7490", "root_dataset_version": "66955e1d✂SHA1", "dataset_path": "study-115", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090457.9129026, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "HBM_Classification_Paper_2017", "keywords": ["study"], "accountablePerson": "m.apalsul@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#4b88f9a2-dc76-11ea-a40f-7cdd908c7490", "@type": "Dataset", "version": "66955e1d✂SHA1", "name": "Dataset_upirmale_46", "url": "https://example.com/users/upirmale/dataset_46", "author": [{"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "of classification from schizophrenia, age: the advanced networks integrity and On connectivity-based functional disease, Parkinson\u2019s Evidence", "datePublished": 2148, "accountablePerson": "e.irigludkolo@example.com", "sameAs": "10.100/99.abc-47", "pagination": "1689-1699", "author": [{"@id": "p.rigmorluda@example.com"}, {"@id": "e.malu@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "m.kolkospale@example.com"}, {"@id": "m.piru@example.com"}, {"@id": "a.emadsanpali@example.com"}, {"@id": "a.sansani@example.com"}, {"@id": "a.lude@example.com"}, {"@id": "m.usanpalmale@example.com"}, {"@id": "u.morludmodo@example.com"}, {"@id": "a.gorpalsulu@example.com"}, {"@id": "k.omelriggor@example.com"}, {"@id": "m.gosmad@example.com"}, {"@id": "m.osulpira@example.com"}, {"@id": "i.esan@example.com"}, {"@id": "o.pir@example.com"}, {"@id": "i.malkos@example.com"}, {"@id": "i.mad@example.com"}, {"@id": "i.gorsel@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Human Brain Mapping", "@type": "PublicationEvent", "name": "Human Brain Mapping"}, "description": "i.san@example.com", "isPartOf": {"@id": "#issue(12)", "@type": "PublicationIssue", "issue_number": 12, "isPartOf": {"@id": "#volume(38)", "@type": "PublicationVolume", "volumeNumber": 38}}}, {"@id": "#publication[1]", "@type": "ScholarlyArticle", "headline": "advanced of \u201cOn brain to Evidence networks in and Corrigendum single-subject from age: integrity disease, functional the classification\u201d", "datePublished": 2150, "sameAs": "10.100/99.abc-49", "pagination": "1522-1551", "author": [{"@id": "p.rigmorluda@example.com"}, {"@id": "e.malu@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "m.kolkospale@example.com"}, {"@id": "m.piru@example.com"}, {"@id": "a.emadsanpali@example.com"}, {"@id": "a.sansani@example.com"}, {"@id": "a.lude@example.com"}, {"@id": "m.usanpalmale@example.com"}, {"@id": "u.morludmodo@example.com"}, {"@id": "a.gorpalsulu@example.com"}, {"@id": "k.omelriggor@example.com"}, {"@id": "m.gosmad@example.com"}, {"@id": "m.osulpira@example.com"}, {"@id": "i.esan@example.com"}, {"@id": "o.pir@example.com"}, {"@id": "i.malkos@example.com"}, {"@id": "i.mad@example.com"}, {"@id": "i.gorsel@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Human Brain Mapping", "@type": "PublicationEvent", "name": "Human Brain Mapping"}, "isPartOf": {"@id": "#issue(11)", "@type": "PublicationIssue", "issue_number": 11, "isPartOf": {"@id": "#volume(39)", "@type": "PublicationVolume", "volumeNumber": 39}}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#a.modmod@example.com", "@type": "Person", "email": "a.modmod@example.com", "name": "Dr. Aselpal Modmod", "givenName": "Aselpal", "familyName": "Modmod", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#a.ugorsan@example.com", "@type": "Person", "email": "a.ugorsan@example.com", "name": "Dr. Apirsan Ugorsan", "givenName": "Apirsan", "familyName": "Ugorsan", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#i.mora@example.com", "@type": "Person", "email": "i.mora@example.com", "name": "Imolpir Mora", "givenName": "Imolpir", "familyName": "Mora"}, {"@id": "https://schema.datalad.org/person#u.modmadkol@example.com", "@type": "Person", "email": "u.modmadkol@example.com", "name": "Dr. Ukosmodlado Modmadkol", "givenName": "Ukosmodlado", "familyName": "Modmadkol", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#a.omol@example.com", "@type": "Person", "email": "a.omol@example.com", "name": "Akosrigo Omol", "givenName": "Akosrigo", "familyName": "Omol"}, {"@id": "https://schema.datalad.org/person#r.pulmelkol@example.com", "@type": "Person", "email": "r.pulmelkol@example.com", "name": "Prof. Dr. Rigo Pulmelkol", "givenName": "Rigo", "familyName": "Pulmelkol", "honorificSuffix": "Prof. Dr."}, {"@id": "https://schema.datalad.org/person#i.rigi@example.com", "@type": "Person", "email": "i.rigi@example.com", "name": "Igossulmado Rigi", "givenName": "Igossulmado", "familyName": "Rigi"}, {"@id": "https://schema.datalad.org/person#e.uludpirkoli@example.com", "@type": "Person", "email": "e.uludpirkoli@example.com", "name": "Dr. phil. Epirmod Uludpirkoli", "givenName": "Epirmod", "familyName": "Uludpirkoli", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#r.sul@example.com", "@type": "Person", "email": "r.sul@example.com", "name": "Rigkolpul Sul", "givenName": "Rigkolpul", "familyName": "Sul"}, {"@id": "https://schema.datalad.org/person#k.emalselkosu@example.com", "@type": "Person", "email": "k.emalselkosu@example.com", "name": "Kosmoli Emalselkosu", "givenName": "Kosmoli", "familyName": "Emalselkosu"}, {"@id": "https://schema.datalad.org/person#m.amodkosgoru@example.com", "@type": "Person", "email": "m.amodkosgoru@example.com", "name": "Dr. Molmorkosa Amodkosgoru", "givenName": "Molmorkosa", "familyName": "Amodkosgoru", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#l.apali@example.com", "@type": "Person", "email": "l.apali@example.com", "name": "Dr. rer. med. Ludsulgoro Apali", "givenName": "Ludsulgoro", "familyName": "Apali", "honorificSuffix": "Dr. rer. med."}, {"@id": "https://schema.datalad.org/person#l.lado@example.com", "@type": "Person", "email": "l.lado@example.com", "name": "Ladgorgor Lado", "givenName": "Ladgorgor", "familyName": "Lado"}, {"@id": "https://schema.datalad.org/person#m.rigmorsan@example.com", "@type": "Person", "email": "m.rigmorsan@example.com", "name": "Malladpal Rigmorsan", "givenName": "Malladpal", "familyName": "Rigmorsan"}, {"@id": "https://schema.datalad.org/person#u.ladmol@example.com", "@type": "Person", "email": "u.ladmol@example.com", "name": "Umodkolo Ladmol", "givenName": "Umodkolo", "familyName": "Ladmol"}, {"@id": "https://schema.datalad.org/person#k.igorsele@example.com", "@type": "Person", "email": "k.igorsele@example.com", "name": "Dr. Kol Igorsele", "givenName": "Kol", "familyName": "Igorsele", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#l.akolkol@example.com", "@type": "Person", "email": "l.akolkol@example.com", "name": "Dr. rer. med. Ludmelmola Akolkol", "givenName": "Ludmelmola", "familyName": "Akolkol", "honorificSuffix": "Dr. rer. med."}, {"@id": "https://schema.datalad.org/person#e.mori@example.com", "@type": "Person", "email": "e.mori@example.com", "name": "Dr. phil. Epuli Mori", "givenName": "Epuli", "familyName": "Mori", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}]}]}} +{"type": "dataset", "root_dataset_id": "4c2ee286-dc76-11ea-911b-7cdd908c7490", "root_dataset_version": "7b966eab✂SHA1", "dataset_path": "study-109", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090457.7337663, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Mueller11_audiovisualhealthy", "keywords": ["study"], "accountablePerson": "m.apalsul@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#4c2ee286-dc76-11ea-911b-7cdd908c7490", "@type": "Dataset", "version": "7b966eab✂SHA1", "name": "Dataset_upirmale_51", "url": "https://example.com/users/upirmale/dataset_51", "author": [{"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "crossmodal effects Incongruence", "datePublished": 2153, "sameAs": "10.100/99.abc-52", "pagination": "1904-1913", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "g.rigkosu@example.com"}, {"@id": "s.aselkol@example.com"}, {"@id": "m.ipulmel@example.com"}, {"@id": "p.asel@example.com"}, {"@id": "r.agor@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#NeuroImage", "@type": "PublicationEvent", "name": "NeuroImage"}, "isPartOf": {"@id": "#issue(3)", "@type": "PublicationIssue", "issue_number": 3, "isPartOf": {"@id": "#volume(54)", "@type": "PublicationVolume", "volumeNumber": 54}}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#r.umelmola@example.com", "@type": "Person", "email": "r.umelmola@example.com", "name": "Riglud Umelmola", "givenName": "Riglud", "familyName": "Umelmola"}, {"@id": "https://schema.datalad.org/person#o.imadrig@example.com", "@type": "Person", "email": "o.imadrig@example.com", "name": "Dr. Opirlud Imadrig", "givenName": "Opirlud", "familyName": "Imadrig", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#s.sanmolmor@example.com", "@type": "Person", "email": "s.sanmolmor@example.com", "name": "Prof. Dr. Selsane Sanmolmor", "givenName": "Selsane", "familyName": "Sanmolmor", "honorificSuffix": "Prof. Dr."}, {"@id": "https://schema.datalad.org/person#o.aselmoro@example.com", "@type": "Person", "email": "o.aselmoro@example.com", "name": "Dr. phil. Opirselsano Aselmoro", "givenName": "Opirselsano", "familyName": "Aselmoro", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#s.esanmodmadu@example.com", "@type": "Person", "email": "s.esanmodmadu@example.com", "name": "Prof. Dr. Sana Esanmodmadu", "givenName": "Sana", "familyName": "Esanmodmadu", "honorificSuffix": "Prof. Dr."}]}]}} +{"type": "dataset", "root_dataset_id": "4ce38894-dc76-11ea-8fef-7cdd908c7490", "root_dataset_version": "ba052a5a✂SHA1", "dataset_path": "study-108", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090457.714016, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Mueller12_DCM", "keywords": ["study"], "accountablePerson": "m.apalsul@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#4ce38894-dc76-11ea-8fef-7cdd908c7490", "@type": "Dataset", "version": "ba052a5a✂SHA1", "name": "Dataset_upirmale_54", "url": "https://example.com/users/upirmale/dataset_54", "author": [{"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "emotion audiovisual processing", "datePublished": 2156, "sameAs": "10.100/99.abc-55", "pagination": "889-917", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "e.malu@example.com"}, {"@id": "e.sane@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#NeuroImage", "@type": "PublicationEvent", "name": "NeuroImage"}, "isPartOf": {"@id": "#issue(1)", "@type": "PublicationIssue", "issue_number": 1, "isPartOf": {"@id": "#volume(60)", "@type": "PublicationVolume", "volumeNumber": 60}}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#a.ugorsan@example.com", "@type": "Person", "email": "a.ugorsan@example.com", "name": "Dr. Apirsan Ugorsan", "givenName": "Apirsan", "familyName": "Ugorsan", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#e.ekos@example.com", "@type": "Person", "email": "e.ekos@example.com", "name": "Esulsana Ekos", "givenName": "Esulsana", "familyName": "Ekos"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}]}]}} +{"type": "dataset", "root_dataset_id": "4da8b48e-dc76-11ea-964e-7cdd908c7490", "root_dataset_version": "8219d0af✂SHA1", "dataset_path": "study-107", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090457.7120416, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Mueller13_frontiers", "keywords": ["study"], "accountablePerson": "m.apalsul@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#4da8b48e-dc76-11ea-964e-7cdd908c7490", "@type": "Dataset", "version": "8219d0af✂SHA1", "name": "Dataset_upirmale_57", "url": "https://example.com/users/upirmale/dataset_57", "author": [{"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "functional Dysregulated characterization in connectivity depression: parietal and activity schizophrenia", "datePublished": 2159, "sameAs": "10.100/99.abc-58", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "e.malu@example.com"}, {"@id": "m.asan@example.com"}, {"@id": "m.meli@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Front Hum Neurosci", "@type": "PublicationEvent", "name": "Front Hum Neurosci"}, "isPartOf": {"@id": "#issue(268)", "@type": "PublicationIssue", "issue_number": 268, "isPartOf": {"@id": "#volume(7)", "@type": "PublicationVolume", "volumeNumber": 7}}, "pagination": "71-98"}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#a.ugorsan@example.com", "@type": "Person", "email": "a.ugorsan@example.com", "name": "Dr. Apirsan Ugorsan", "givenName": "Apirsan", "familyName": "Ugorsan", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#s.omelgorladi@example.com", "@type": "Person", "email": "s.omelgorladi@example.com", "name": "Dr. phil. Sansul Omelgorladi", "givenName": "Sansul", "familyName": "Omelgorladi", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#k.umalpalo@example.com", "@type": "Person", "email": "k.umalpalo@example.com", "name": "Kosselo Umalpalo", "givenName": "Kosselo", "familyName": "Umalpalo"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}]}]}} +{"type": "dataset", "root_dataset_id": "4e6738a0-dc76-11ea-94dc-7cdd908c7490", "root_dataset_version": "43391d89✂SHA1", "dataset_path": "study-106", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090457.6966271, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Mueller14_audiovisualdepression", "keywords": ["study"], "accountablePerson": "m.apalsul@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#4e6738a0-dc76-11ea-94dc-7cdd908c7490", "@type": "Dataset", "version": "43391d89✂SHA1", "name": "Dataset_upirmale_60", "url": "https://example.com/users/upirmale/dataset_60", "author": [{"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "Crossmodal in major", "datePublished": 2162, "sameAs": "10.100/99.abc-61", "pagination": "476-500", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "e.malu@example.com"}, {"@id": "o.mal@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Soc Cogn Affect Neurosci", "@type": "PublicationEvent", "name": "Soc Cogn Affect Neurosci"}, "isPartOf": {"@id": "#issue(6)", "@type": "PublicationIssue", "issue_number": 6, "isPartOf": {"@id": "#volume(9)", "@type": "PublicationVolume", "volumeNumber": 9}}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#a.ugorsan@example.com", "@type": "Person", "email": "a.ugorsan@example.com", "name": "Dr. Apirsan Ugorsan", "givenName": "Apirsan", "familyName": "Ugorsan", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#a.gose@example.com", "@type": "Person", "email": "a.gose@example.com", "name": "Asulmolsana Gose", "givenName": "Asulmolsana", "familyName": "Gose"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}]}]}} +{"type": "dataset", "root_dataset_id": "4f03a794-dc76-11ea-994b-7cdd908c7490", "root_dataset_version": "afdc3973✂SHA1", "dataset_path": "study-104", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090457.6748545, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Camilleri_Multistate_Collaborations", "keywords": ["study"], "accountablePerson": "g.pirpirludu@example.com", "contributor": [{"@id": "o.omorpallud@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#4f03a794-dc76-11ea-994b-7cdd908c7490", "@type": "Dataset", "version": "afdc3973✂SHA1", "name": "Dataset_omorpallud_63", "url": "https://example.com/users/omorpallud/dataset_63", "author": [{"@id": "o.omorpallud@example.com"}, {"@id": "s.omelpire@example.com"}], "description": ""}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#g.pirpirludu@example.com", "@type": "Person", "email": "g.pirpirludu@example.com", "name": "Goso Pirpirludu", "givenName": "Goso", "familyName": "Pirpirludu"}, {"@id": "https://schema.datalad.org/person#u.pulpula@example.com", "@type": "Person", "email": "u.pulpula@example.com", "name": "Upir Pulpula", "givenName": "Upir", "familyName": "Pulpula"}]}]}} +{"type": "dataset", "root_dataset_id": "4fb7be64-dc76-11ea-ad07-7cdd908c7490", "root_dataset_version": "f801161e✂SHA1", "dataset_path": "study-103", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090457.6666787, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "OHBM15", "keywords": ["OHBM 2015"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#4fb7be64-dc76-11ea-ad07-7cdd908c7490", "@type": "Dataset", "version": "f801161e✂SHA1", "name": "Dataset_omodpirgos_64", "url": "https://example.com/users/omodpirgos/dataset_64", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}]}]}} +{"type": "dataset", "root_dataset_id": "506ce096-dc76-11ea-95f0-7cdd908c7490", "root_dataset_version": "15f405a8✂SHA1", "dataset_path": "study-102", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090457.6932034, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "OHBM_2019", "keywords": ["OHBM 2019"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#506ce096-dc76-11ea-95f0-7cdd908c7490", "@type": "Dataset", "version": "15f405a8✂SHA1", "name": "Dataset_omodpirgos_65", "url": "https://example.com/users/omodpirgos/dataset_65", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}]}]}} +{"type": "dataset", "root_dataset_id": "5146e8d6-dc76-11ea-a2da-7cdd908c7490", "root_dataset_version": "c0b548cd✂SHA1", "dataset_path": "study-101", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090457.6865904, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Camilleri15_MultiModal", "keywords": ["study"], "accountablePerson": "g.pirpirludu@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#5146e8d6-dc76-11ea-a2da-7cdd908c7490", "@type": "Dataset", "version": "c0b548cd✂SHA1", "name": "Dataset_omorpallud_66", "url": "https://example.com/users/omorpallud/dataset_66", "author": [{"@id": "o.omorpallud@example.com"}, {"@id": "s.omelpire@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "trail of of motor speed performance Multi-modal the correlates making imaging", "datePublished": 2168, "accountablePerson": "u.pulpula@example.com", "sameAs": "10.100/99.abc-67", "author": [{"@id": "o.omorpallud@example.com"}, {"@id": "l.imel@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "i.gorsel@example.com"}, {"@id": "e.pal@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Frontiers in neurology", "@type": "PublicationEvent", "name": "Frontiers in neurology"}, "description": "e.kospulsulu@example.com", "isPartOf": {"@id": "#issue(219)", "@type": "PublicationIssue", "issue_number": 219, "isPartOf": {"@id": "#volume(6)", "@type": "PublicationVolume", "volumeNumber": 6}}, "pagination": "1446-1454"}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#g.pirpirludu@example.com", "@type": "Person", "email": "g.pirpirludu@example.com", "name": "Goso Pirpirludu", "givenName": "Goso", "familyName": "Pirpirludu"}, {"@id": "https://schema.datalad.org/person#u.pulpula@example.com", "@type": "Person", "email": "u.pulpula@example.com", "name": "Upir Pulpula", "givenName": "Upir", "familyName": "Pulpula"}, {"@id": "https://schema.datalad.org/person#i.ugos@example.com", "@type": "Person", "email": "i.ugos@example.com", "name": "Imad Ugos", "givenName": "Imad", "familyName": "Ugos"}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#e.mori@example.com", "@type": "Person", "email": "e.mori@example.com", "name": "Dr. phil. Epuli Mori", "givenName": "Epuli", "familyName": "Mori", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#a.osel@example.com", "@type": "Person", "email": "a.osel@example.com", "name": "Dr. phil. Amellade Osel", "givenName": "Amellade", "familyName": "Osel", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}]}]}} +{"type": "dataset", "root_dataset_id": "52142b84-dc76-11ea-98c5-7cdd908c7490", "root_dataset_version": "244a8ad4✂SHA1", "dataset_path": "study-100", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090457.6464868, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Camilleri18_eMDN", "keywords": ["neural correlates"], "accountablePerson": "g.pirpirludu@example.com", "contributor": [{"@id": "o.omorpallud@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#52142b84-dc76-11ea-98c5-7cdd908c7490", "@type": "Dataset", "version": "244a8ad4✂SHA1", "name": "Dataset_omorpallud_69", "url": "https://example.com/users/omorpallud/dataset_69", "author": [{"@id": "o.omorpallud@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "multiple-demand Definition extended network and", "datePublished": 2171, "sameAs": "10.100/99.abc-70", "pagination": "1549-1564", "author": [{"@id": "o.omorpallud@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "m.meli@example.com"}, {"@id": "m.asan@example.com"}, {"@id": "m.kolkospale@example.com"}, {"@id": "m.emodgos@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Neuroimage", "@type": "PublicationEvent", "name": "Neuroimage"}, "isPartOf": {"@id": "#volume(165)", "@type": "PublicationVolume", "volumeNumber": 165}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#u.pulpula@example.com", "@type": "Person", "email": "u.pulpula@example.com", "name": "Upir Pulpula", "givenName": "Upir", "familyName": "Pulpula"}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#k.umalpalo@example.com", "@type": "Person", "email": "k.umalpalo@example.com", "name": "Kosselo Umalpalo", "givenName": "Kosselo", "familyName": "Umalpalo"}, {"@id": "https://schema.datalad.org/person#s.omelgorladi@example.com", "@type": "Person", "email": "s.omelgorladi@example.com", "name": "Dr. phil. Sansul Omelgorladi", "givenName": "Sansul", "familyName": "Omelgorladi", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#i.mora@example.com", "@type": "Person", "email": "i.mora@example.com", "name": "Imolpir Mora", "givenName": "Imolpir", "familyName": "Mora"}, {"@id": "https://schema.datalad.org/person#m.imolsel@example.com", "@type": "Person", "email": "m.imolsel@example.com", "name": "Melmodmad Imolsel", "givenName": "Melmodmad", "familyName": "Imolsel"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#g.pirpirludu@example.com", "@type": "Person", "email": "g.pirpirludu@example.com", "name": "Goso Pirpirludu", "givenName": "Goso", "familyName": "Pirpirludu"}]}]}} diff --git a/docs/beyond_basics/_examples/DL-101-181-114 b/docs/beyond_basics/_examples/DL-101-181-114 index 7b4f9a15d..c14edbf01 100644 --- a/docs/beyond_basics/_examples/DL-101-181-114 +++ b/docs/beyond_basics/_examples/DL-101-181-114 @@ -1,2 +1,2 @@ $ cat .git/refs/datalad/dataset-tree-version-list -589c3c7494ea87aca1bbda5bec911b3cc1d1acaa +589c3c74✂SHA1 diff --git a/docs/beyond_basics/_examples/DL-101-181-115 b/docs/beyond_basics/_examples/DL-101-181-115 index eb3465559..bca928c1e 100644 --- a/docs/beyond_basics/_examples/DL-101-181-115 +++ b/docs/beyond_basics/_examples/DL-101-181-115 @@ -1,8 +1,8 @@ -$ git show 589c3c7494ea87aca1bbda5bec911b3cc1d1acaa | jq +$ git show 589c3c74✂SHA1 | jq [ { - "primary_data_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", + "primary_data_version": "b3f02438✂SHA1", "time_stamp": "1677249905.6491013", "path": "", "dataset_tree": { @@ -11,11 +11,11 @@ $ git show 589c3c7494ea87aca1bbda5bec911b3cc1d1acaa | jq "version": "2.0" }, "class_name": "MTreeNode", - "location": "9ddcabd524e82d95f49404286551b78651361d99" + "location": "9ddcabd5✂SHA1" } }, { - "primary_data_version": "96883aefec188338b3b3e8790fcad734819615a8", + "primary_data_version": "96883aef✂SHA1", "time_stamp": "1677249905.6497943", "path": "", "dataset_tree": { @@ -24,11 +24,11 @@ $ git show 589c3c7494ea87aca1bbda5bec911b3cc1d1acaa | jq "version": "2.0" }, "class_name": "MTreeNode", - "location": "dc8f749180c4e5e968d9e0f54b69346c534b183f" + "location": "dc8f7491✂SHA1" } }, { - "primary_data_version": "4bcda921e409b4806e991e2bddfa712c77090935", + "primary_data_version": "4bcda921✂SHA1", "time_stamp": "1677249905.6502168", "path": "", "dataset_tree": { @@ -37,11 +37,11 @@ $ git show 589c3c7494ea87aca1bbda5bec911b3cc1d1acaa | jq "version": "2.0" }, "class_name": "MTreeNode", - "location": "33e1f59d0548cecb7a4938bd98a0da9073053114" + "location": "33e1f59d✂SHA1" } }, { - "primary_data_version": "c9f7737806d40c958f5f498fd1a060c0f2ddd5ff", + "primary_data_version": "c9f77378✂SHA1", "time_stamp": "1677249905.6506386", "path": "", "dataset_tree": { @@ -50,11 +50,11 @@ $ git show 589c3c7494ea87aca1bbda5bec911b3cc1d1acaa | jq "version": "2.0" }, "class_name": "MTreeNode", - "location": "b539974a32348d6867ae2f27f156bb2e118cfc8d" + "location": "b539974a✂SHA1" } }, { - "primary_data_version": "1fdf34c1d6c63285c765113e1128adf1720bf243", + "primary_data_version": "1fdf34c1✂SHA1", "time_stamp": "1677249905.6510594", "path": "", "dataset_tree": { @@ -63,11 +63,11 @@ $ git show 589c3c7494ea87aca1bbda5bec911b3cc1d1acaa | jq "version": "2.0" }, "class_name": "MTreeNode", - "location": "ac9d80baa1489607421b88a64b12ff175f488783" + "location": "ac9d80ba✂SHA1" } }, { - "primary_data_version": "734d1649f92c3a1d67d54e73185e33883feda9ef", + "primary_data_version": "734d1649✂SHA1", "time_stamp": "1677249905.6515157", "path": "", "dataset_tree": { @@ -76,11 +76,11 @@ $ git show 589c3c7494ea87aca1bbda5bec911b3cc1d1acaa | jq "version": "2.0" }, "class_name": "MTreeNode", - "location": "9c7b42ccd37e6095d2315f4c6ef3d87a3e1b9128" + "location": "9c7b42cc✂SHA1" } }, { - "primary_data_version": "2a5737a7ba741481283e535ae6b61e75d1fcd44d", + "primary_data_version": "2a5737a7✂SHA1", "time_stamp": "1677249905.6519253", "path": "", "dataset_tree": { @@ -89,11 +89,11 @@ $ git show 589c3c7494ea87aca1bbda5bec911b3cc1d1acaa | jq "version": "2.0" }, "class_name": "MTreeNode", - "location": "f8dba9ab82d9f01f4d226c1ed33a5b26a1e9c377" + "location": "f8dba9ab✂SHA1" } }, { - "primary_data_version": "dba9e0da671efbe129870a0cf9d9055c4bdc2276", + "primary_data_version": "dba9e0da✂SHA1", "time_stamp": "1677249905.6523588", "path": "", "dataset_tree": { @@ -102,11 +102,11 @@ $ git show 589c3c7494ea87aca1bbda5bec911b3cc1d1acaa | jq "version": "2.0" }, "class_name": "MTreeNode", - "location": "f3df96557a0708c1ef3e775ce6d61756c8fab83d" + "location": "f3df9655✂SHA1" } }, { - "primary_data_version": "5d344fee1cd692e26da0ce4e7ef5ef6aa0f4e59c", + "primary_data_version": "5d344fee✂SHA1", "time_stamp": "1677249905.6528437", "path": "", "dataset_tree": { @@ -115,11 +115,11 @@ $ git show 589c3c7494ea87aca1bbda5bec911b3cc1d1acaa | jq "version": "2.0" }, "class_name": "MTreeNode", - "location": "942872577b5ada4f5e78194083819920f62b0730" + "location": "94287257✂SHA1" } }, { - "primary_data_version": "4862b1dd8434e2e151f38e4c6b19617becae215b", + "primary_data_version": "4862b1dd✂SHA1", "time_stamp": "1677249905.653256", "path": "", "dataset_tree": { @@ -128,11 +128,11 @@ $ git show 589c3c7494ea87aca1bbda5bec911b3cc1d1acaa | jq "version": "2.0" }, "class_name": "MTreeNode", - "location": "72b9f0efea873c96a5d9e1086e6f85808be04e2d" + "location": "72b9f0ef✂SHA1" } }, { - "primary_data_version": "927fa89d9ddfb8dad8cf652554090afcd08fcf1e", + "primary_data_version": "927fa89d✂SHA1", "time_stamp": "1677249905.6537495", "path": "", "dataset_tree": { @@ -141,11 +141,11 @@ $ git show 589c3c7494ea87aca1bbda5bec911b3cc1d1acaa | jq "version": "2.0" }, "class_name": "MTreeNode", - "location": "a21b7afaa7dfc2b01c00e8b7c2d675284149a4ef" + "location": "a21b7afa✂SHA1" } }, { - "primary_data_version": "24cf1d6428d3e52e15136945f3bdff838e92825c", + "primary_data_version": "24cf1d64✂SHA1", "time_stamp": "1677249905.6543043", "path": "", "dataset_tree": { @@ -154,11 +154,11 @@ $ git show 589c3c7494ea87aca1bbda5bec911b3cc1d1acaa | jq "version": "2.0" }, "class_name": "MTreeNode", - "location": "6df5503ca9b7900a3273f0e6c500387e945671c3" + "location": "6df5503c✂SHA1" } }, { - "primary_data_version": "608716ccd9ed56bb445db81a9c73d43aa902a84d", + "primary_data_version": "608716cc✂SHA1", "time_stamp": "1677249905.654619", "path": "", "dataset_tree": { @@ -167,11 +167,11 @@ $ git show 589c3c7494ea87aca1bbda5bec911b3cc1d1acaa | jq "version": "2.0" }, "class_name": "MTreeNode", - "location": "9c25a07bcce252305b64a4432c679d8c687632c9" + "location": "9c25a07b✂SHA1" } }, { - "primary_data_version": "7d80d256827da2569c71e84f57151e0324169247", + "primary_data_version": "7d80d256✂SHA1", "time_stamp": "1677249905.6549146", "path": "", "dataset_tree": { @@ -180,11 +180,11 @@ $ git show 589c3c7494ea87aca1bbda5bec911b3cc1d1acaa | jq "version": "2.0" }, "class_name": "MTreeNode", - "location": "6bcafa8ab51c63e39f7765d28a74277437f0d6e0" + "location": "6bcafa8a✂SHA1" } }, { - "primary_data_version": "089d0a8a2b22d87e63f8de28caf6fa91790ad51a", + "primary_data_version": "089d0a8a✂SHA1", "time_stamp": "1677249905.6551852", "path": "", "dataset_tree": { @@ -193,11 +193,11 @@ $ git show 589c3c7494ea87aca1bbda5bec911b3cc1d1acaa | jq "version": "2.0" }, "class_name": "MTreeNode", - "location": "97ef1f7042718c206f8a29f62bda3989c58a23ed" + "location": "97ef1f70✂SHA1" } }, { - "primary_data_version": "ae851681646eed997d4d9e716bb5fc3e9a6c36e5", + "primary_data_version": "ae851681✂SHA1", "time_stamp": "1677249905.655501", "path": "", "dataset_tree": { @@ -206,11 +206,11 @@ $ git show 589c3c7494ea87aca1bbda5bec911b3cc1d1acaa | jq "version": "2.0" }, "class_name": "MTreeNode", - "location": "e12fe9171277f01d4594c3449c9651f795fdf5b1" + "location": "e12fe917✂SHA1" } }, { - "primary_data_version": "66955e1d17782f93b4e0ec100f8f6e6e4e897c3c", + "primary_data_version": "66955e1d✂SHA1", "time_stamp": "1677249905.6558466", "path": "", "dataset_tree": { @@ -219,11 +219,11 @@ $ git show 589c3c7494ea87aca1bbda5bec911b3cc1d1acaa | jq "version": "2.0" }, "class_name": "MTreeNode", - "location": "1fe9d3def2ba10de82f9ac21bbb6b77abb34cda1" + "location": "1fe9d3de✂SHA1" } }, { - "primary_data_version": "7b966eabe8e45acdf80d16865acd1cd96c516cde", + "primary_data_version": "7b966eab✂SHA1", "time_stamp": "1677249905.656139", "path": "", "dataset_tree": { @@ -232,11 +232,11 @@ $ git show 589c3c7494ea87aca1bbda5bec911b3cc1d1acaa | jq "version": "2.0" }, "class_name": "MTreeNode", - "location": "778aba3bc8020d0f65eeeb90a1bd55ae9196d1fe" + "location": "778aba3b✂SHA1" } }, { - "primary_data_version": "ba052a5a18032a0a83d3009be7c1b02b4813f23c", + "primary_data_version": "ba052a5a✂SHA1", "time_stamp": "1677249905.6564295", "path": "", "dataset_tree": { @@ -245,11 +245,11 @@ $ git show 589c3c7494ea87aca1bbda5bec911b3cc1d1acaa | jq "version": "2.0" }, "class_name": "MTreeNode", - "location": "edfad1df67af7ca54d17f637cc89925bcecd1fde" + "location": "edfad1df✂SHA1" } }, { - "primary_data_version": "8219d0afcbfe1397979bbbed1f9977c3ea6b8426", + "primary_data_version": "8219d0af✂SHA1", "time_stamp": "1677249905.6567576", "path": "", "dataset_tree": { @@ -258,11 +258,11 @@ $ git show 589c3c7494ea87aca1bbda5bec911b3cc1d1acaa | jq "version": "2.0" }, "class_name": "MTreeNode", - "location": "02744bd9c0cf6cab3890d8ace30b59ac1c1588db" + "location": "02744bd9✂SHA1" } }, { - "primary_data_version": "43391d89c87fe984a55430d7dab4b3300dbb6851", + "primary_data_version": "43391d89✂SHA1", "time_stamp": "1677249905.6570334", "path": "", "dataset_tree": { @@ -271,11 +271,11 @@ $ git show 589c3c7494ea87aca1bbda5bec911b3cc1d1acaa | jq "version": "2.0" }, "class_name": "MTreeNode", - "location": "f937e00e1eac07f62c2eedfe11e96a5efb2905ba" + "location": "f937e00e✂SHA1" } }, { - "primary_data_version": "afdc39738008c5c070590263874b8249544aefff", + "primary_data_version": "afdc3973✂SHA1", "time_stamp": "1677249905.657296", "path": "", "dataset_tree": { @@ -284,11 +284,11 @@ $ git show 589c3c7494ea87aca1bbda5bec911b3cc1d1acaa | jq "version": "2.0" }, "class_name": "MTreeNode", - "location": "b3468f977e44708ec5a8644a8610f31a5a5f2c27" + "location": "b3468f97✂SHA1" } }, { - "primary_data_version": "f801161e170ae8b5b281e651df1dbe62fafa9614", + "primary_data_version": "f801161e✂SHA1", "time_stamp": "1677249905.6575809", "path": "", "dataset_tree": { @@ -297,11 +297,11 @@ $ git show 589c3c7494ea87aca1bbda5bec911b3cc1d1acaa | jq "version": "2.0" }, "class_name": "MTreeNode", - "location": "43c62b84b5dc7429d9133ad9a1f9421538e517f8" + "location": "43c62b84✂SHA1" } }, { - "primary_data_version": "15f405a8e6b28ff641e8b3df0326aa06392341a1", + "primary_data_version": "15f405a8✂SHA1", "time_stamp": "1677249905.6578848", "path": "", "dataset_tree": { @@ -310,11 +310,11 @@ $ git show 589c3c7494ea87aca1bbda5bec911b3cc1d1acaa | jq "version": "2.0" }, "class_name": "MTreeNode", - "location": "c3c0f6d730d29b15fdb0a3fa68ee34dd721e734f" + "location": "c3c0f6d7✂SHA1" } }, { - "primary_data_version": "c0b548cd8a69ce91330e55167f5c243ae4dc25ac", + "primary_data_version": "c0b548cd✂SHA1", "time_stamp": "1677249905.6581686", "path": "", "dataset_tree": { @@ -323,11 +323,11 @@ $ git show 589c3c7494ea87aca1bbda5bec911b3cc1d1acaa | jq "version": "2.0" }, "class_name": "MTreeNode", - "location": "28551fe3dfaaa1647f0f75440e103ff466a684b7" + "location": "28551fe3✂SHA1" } }, { - "primary_data_version": "244a8ad43b00622989ae7f0d2b59c80697dadb80", + "primary_data_version": "244a8ad4✂SHA1", "time_stamp": "1677249905.6585097", "path": "", "dataset_tree": { @@ -336,7 +336,7 @@ $ git show 589c3c7494ea87aca1bbda5bec911b3cc1d1acaa | jq "version": "2.0" }, "class_name": "MTreeNode", - "location": "809e3e50990930aecb0fd52f68ca9d252567cdf1" + "location": "809e3e50✂SHA1" } } ] diff --git a/docs/beyond_basics/_examples/DL-101-181-116 b/docs/beyond_basics/_examples/DL-101-181-116 index 787103edb..fa29f93c8 100644 --- a/docs/beyond_basics/_examples/DL-101-181-116 +++ b/docs/beyond_basics/_examples/DL-101-181-116 @@ -1,27 +1,27 @@ -$ git ls-tree 9ddcabd524e82d95f49404286551b78651361d99 -dc8f749180c4e5e968d9e0f54b69346c534b183f -33e1f59d0548cecb7a4938bd98a0da9073053114 -b539974a32348d6867ae2f27f156bb2e118cfc8d -ac9d80baa1489607421b88a64b12ff175f488783 -9c7b42ccd37e6095d2315f4c6ef3d87a3e1b9128 -f8dba9ab82d9f01f4d226c1ed33a5b26a1e9c377 -f3df96557a0708c1ef3e775ce6d61756c8fab83d -942872577b5ada4f5e78194083819920f62b0730 -72b9f0efea873c96a5d9e1086e6f85808be04e2d -a21b7afaa7dfc2b01c00e8b7c2d675284149a4ef -6df5503ca9b7900a3273f0e6c500387e945671c3 -9c25a07bcce252305b64a4432c679d8c687632c9 -6bcafa8ab51c63e39f7765d28a74277437f0d6e0 -97ef1f7042718c206f8a29f62bda3989c58a23ed -e12fe9171277f01d4594c3449c9651f795fdf5b1 -1fe9d3def2ba10de82f9ac21bbb6b77abb34cda1 -778aba3bc8020d0f65eeeb90a1bd55ae9196d1fe -edfad1df67af7ca54d17f637cc89925bcecd1fde -02744bd9c0cf6cab3890d8ace30b59ac1c1588db -f937e00e1eac07f62c2eedfe11e96a5efb2905ba -b3468f977e44708ec5a8644a8610f31a5a5f2c27 -43c62b84b5dc7429d9133ad9a1f9421538e517f8 -c3c0f6d730d29b15fdb0a3fa68ee34dd721e734f -28551fe3dfaaa1647f0f75440e103ff466a684b7 -809e3e50990930aecb0fd52f68ca9d252567cdf1 +$ git ls-tree 9ddcabd5✂SHA1 +dc8f7491✂SHA1 +33e1f59d✂SHA1 +b539974a✂SHA1 +ac9d80ba✂SHA1 +9c7b42cc✂SHA1 +f8dba9ab✂SHA1 +f3df9655✂SHA1 +94287257✂SHA1 +72b9f0ef✂SHA1 +a21b7afa✂SHA1 +6df5503c✂SHA1 +9c25a07b✂SHA1 +6bcafa8a✂SHA1 +97ef1f70✂SHA1 +e12fe917✂SHA1 +1fe9d3de✂SHA1 +778aba3b✂SHA1 +edfad1df✂SHA1 +02744bd9✂SHA1 +f937e00e✂SHA1 +b3468f97✂SHA1 +43c62b84✂SHA1 +c3c0f6d7✂SHA1 +28551fe3✂SHA1 +809e3e50✂SHA1 diff --git a/docs/beyond_basics/_examples/DL-101-181-120 b/docs/beyond_basics/_examples/DL-101-181-120 index ec32fb266..95a35dd4d 100644 --- a/docs/beyond_basics/_examples/DL-101-181-120 +++ b/docs/beyond_basics/_examples/DL-101-181-120 @@ -1,4 +1,4 @@ $ datalad meta-dump \ -d https://github.com/christian-monch/metadata-test.git \ ./study-100 -{"type": "dataset", "root_dataset_id": "52142b84-dc76-11ea-98c5-7cdd908c7490", "root_dataset_version": "244a8ad43b00622989ae7f0d2b59c80697dadb80", "dataset_path": "study-100", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090457.6464868, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Camilleri18_eMDN", "keywords": ["neural correlates"], "accountablePerson": "g.pirpirludu@example.com", "contributor": [{"@id": "o.omorpallud@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#52142b84-dc76-11ea-98c5-7cdd908c7490", "@type": "Dataset", "version": "244a8ad43b00622989ae7f0d2b59c80697dadb80", "name": "Dataset_omorpallud_69", "url": "https://example.com/users/omorpallud/dataset_69", "author": [{"@id": "o.omorpallud@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "multiple-demand Definition extended network and", "datePublished": 2171, "sameAs": "10.100/99.abc-70", "pagination": "1549-1564", "author": [{"@id": "o.omorpallud@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "m.meli@example.com"}, {"@id": "m.asan@example.com"}, {"@id": "m.kolkospale@example.com"}, {"@id": "m.emodgos@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Neuroimage", "@type": "PublicationEvent", "name": "Neuroimage"}, "isPartOf": {"@id": "#volume(165)", "@type": "PublicationVolume", "volumeNumber": 165}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#u.pulpula@example.com", "@type": "Person", "email": "u.pulpula@example.com", "name": "Upir Pulpula", "givenName": "Upir", "familyName": "Pulpula"}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#k.umalpalo@example.com", "@type": "Person", "email": "k.umalpalo@example.com", "name": "Kosselo Umalpalo", "givenName": "Kosselo", "familyName": "Umalpalo"}, {"@id": "https://schema.datalad.org/person#s.omelgorladi@example.com", "@type": "Person", "email": "s.omelgorladi@example.com", "name": "Dr. phil. Sansul Omelgorladi", "givenName": "Sansul", "familyName": "Omelgorladi", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#i.mora@example.com", "@type": "Person", "email": "i.mora@example.com", "name": "Imolpir Mora", "givenName": "Imolpir", "familyName": "Mora"}, {"@id": "https://schema.datalad.org/person#m.imolsel@example.com", "@type": "Person", "email": "m.imolsel@example.com", "name": "Melmodmad Imolsel", "givenName": "Melmodmad", "familyName": "Imolsel"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#g.pirpirludu@example.com", "@type": "Person", "email": "g.pirpirludu@example.com", "name": "Goso Pirpirludu", "givenName": "Goso", "familyName": "Pirpirludu"}]}]}} +{"type": "dataset", "root_dataset_id": "52142b84-dc76-11ea-98c5-7cdd908c7490", "root_dataset_version": "244a8ad4✂SHA1", "dataset_path": "study-100", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090457.6464868, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Camilleri18_eMDN", "keywords": ["neural correlates"], "accountablePerson": "g.pirpirludu@example.com", "contributor": [{"@id": "o.omorpallud@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#52142b84-dc76-11ea-98c5-7cdd908c7490", "@type": "Dataset", "version": "244a8ad4✂SHA1", "name": "Dataset_omorpallud_69", "url": "https://example.com/users/omorpallud/dataset_69", "author": [{"@id": "o.omorpallud@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "multiple-demand Definition extended network and", "datePublished": 2171, "sameAs": "10.100/99.abc-70", "pagination": "1549-1564", "author": [{"@id": "o.omorpallud@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "m.meli@example.com"}, {"@id": "m.asan@example.com"}, {"@id": "m.kolkospale@example.com"}, {"@id": "m.emodgos@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Neuroimage", "@type": "PublicationEvent", "name": "Neuroimage"}, "isPartOf": {"@id": "#volume(165)", "@type": "PublicationVolume", "volumeNumber": 165}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#u.pulpula@example.com", "@type": "Person", "email": "u.pulpula@example.com", "name": "Upir Pulpula", "givenName": "Upir", "familyName": "Pulpula"}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#k.umalpalo@example.com", "@type": "Person", "email": "k.umalpalo@example.com", "name": "Kosselo Umalpalo", "givenName": "Kosselo", "familyName": "Umalpalo"}, {"@id": "https://schema.datalad.org/person#s.omelgorladi@example.com", "@type": "Person", "email": "s.omelgorladi@example.com", "name": "Dr. phil. Sansul Omelgorladi", "givenName": "Sansul", "familyName": "Omelgorladi", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#i.mora@example.com", "@type": "Person", "email": "i.mora@example.com", "name": "Imolpir Mora", "givenName": "Imolpir", "familyName": "Mora"}, {"@id": "https://schema.datalad.org/person#m.imolsel@example.com", "@type": "Person", "email": "m.imolsel@example.com", "name": "Melmodmad Imolsel", "givenName": "Melmodmad", "familyName": "Imolsel"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#g.pirpirludu@example.com", "@type": "Person", "email": "g.pirpirludu@example.com", "name": "Goso Pirpirludu", "givenName": "Goso", "familyName": "Pirpirludu"}]}]}} diff --git a/docs/beyond_basics/_examples/DL-101-181-121 b/docs/beyond_basics/_examples/DL-101-181-121 index 7e67d899e..e9956ed48 100644 --- a/docs/beyond_basics/_examples/DL-101-181-121 +++ b/docs/beyond_basics/_examples/DL-101-181-121 @@ -1,28 +1,28 @@ $ datalad meta-dump \ -d https://github.com/christian-monch/metadata-test.git -r -{"type": "dataset", "root_dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "root_dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "dataset_path": "study-99", "dataset_id": "52b2f098-dc76-11ea-a6da-7cdd908c7490", "dataset_version": "1b0d92f68a38129b950733e0a653595806014bf8", "extraction_time": 1675090458.2812586, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Mueller14_EEGSZ", "keywords": ["Schizophrenia"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#52b2f098-dc76-11ea-a6da-7cdd908c7490", "@type": "Dataset", "version": "1b0d92f68a38129b950733e0a653595806014bf8", "name": "Dataset_omodpirgos_0", "url": "https://example.com/users/omodpirgos/dataset_0", "author": [{"@id": "e.omodpirgos@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "in congruent Schizophrenia face emotional by of affective deficits", "datePublished": 2102, "sameAs": "10.100/99.abc-1", "pagination": "525-553", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "o.mal@example.com"}, {"@id": "o.gos@example.com"}, {"@id": "e.sane@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Soc Cogn Affect Neurosci", "@type": "PublicationEvent", "name": "Soc Cogn Affect Neurosci"}, "isPartOf": {"@id": "#issue(4)", "@type": "PublicationIssue", "issue_number": 4, "isPartOf": {"@id": "#volume(9)", "@type": "PublicationVolume", "volumeNumber": 9}}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#a.gose@example.com", "@type": "Person", "email": "a.gose@example.com", "name": "Asulmolsana Gose", "givenName": "Asulmolsana", "familyName": "Gose"}, {"@id": "https://schema.datalad.org/person#g.agor@example.com", "@type": "Person", "email": "g.agor@example.com", "name": "Gossulsela Agor", "givenName": "Gossulsela", "familyName": "Agor"}, {"@id": "https://schema.datalad.org/person#e.ekos@example.com", "@type": "Person", "email": "e.ekos@example.com", "name": "Esulsana Ekos", "givenName": "Esulsana", "familyName": "Ekos"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}]}]}} -{"type": "dataset", "root_dataset_id": "535edf84-dc76-11ea-979c-7cdd908c7490", "root_dataset_version": "96883aefec188338b3b3e8790fcad734819615a8", "dataset_path": "study-98", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090458.2790313, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Mueller15_cognflexibility", "keywords": ["Interindividual differences"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#535edf84-dc76-11ea-979c-7cdd908c7490", "@type": "Dataset", "version": "96883aefec188338b3b3e8790fcad734819615a8", "name": "Dataset_omodpirgos_3", "url": "https://example.com/users/omodpirgos/dataset_3", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "Interindividual of volume, differences impulsivity functional flexibility: influence matter and connectivity in", "datePublished": 2105, "sameAs": "10.100/99.abc-4", "pagination": "151-169", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "i.upirmale@example.com"}, {"@id": "e.malu@example.com"}, {"@id": "p.molludsulo@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Brain Struct Func", "@type": "PublicationEvent", "name": "Brain Struct Func"}, "isPartOf": {"@id": "#issue(4)", "@type": "PublicationIssue", "issue_number": 4, "isPartOf": {"@id": "#volume(220)", "@type": "PublicationVolume", "volumeNumber": 220}}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#a.ugorsan@example.com", "@type": "Person", "email": "a.ugorsan@example.com", "name": "Dr. Apirsan Ugorsan", "givenName": "Apirsan", "familyName": "Ugorsan", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#m.pal@example.com", "@type": "Person", "email": "m.pal@example.com", "name": "Dr. phil. Madludlade Pal", "givenName": "Madludlade", "familyName": "Pal", "honorificSuffix": "Dr. phil."}]}]}} -{"type": "dataset", "root_dataset_id": "542308c8-dc76-11ea-940a-7cdd908c7490", "root_dataset_version": "4bcda921e409b4806e991e2bddfa712c77090935", "dataset_path": "study-97", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090458.2600777, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Mueller18_FaceALE", "keywords": ["meta-analysis"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#542308c8-dc76-11ea-940a-7cdd908c7490", "@type": "Dataset", "version": "4bcda921e409b4806e991e2bddfa712c77090935", "name": "Dataset_omodpirgos_6", "url": "https://example.com/users/omodpirgos/dataset_6", "author": [{"@id": "e.omodpirgos@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "the An Influence task processing: of neural and meta-analysis of face network ALE", "datePublished": 2108, "sameAs": "10.100/99.abc-7", "pagination": "1634-1655", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "m.amol@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Cortex", "@type": "PublicationEvent", "name": "Cortex"}, "isPartOf": {"@id": "#volume(103)", "@type": "PublicationVolume", "volumeNumber": 103}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#o.ladlud@example.com", "@type": "Person", "email": "o.ladlud@example.com", "name": "Dr. Omorkolsan Ladlud", "givenName": "Omorkolsan", "familyName": "Ladlud", "honorificSuffix": "Dr."}]}]}} -{"type": "dataset", "root_dataset_id": "54ded198-dc76-11ea-9eff-7cdd908c7490", "root_dataset_version": "c9f7737806d40c958f5f498fd1a060c0f2ddd5ff", "dataset_path": "study-96", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090458.262438, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Nostro18_Prediction", "keywords": ["study"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}, {"@id": "o.omorpallud@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#54ded198-dc76-11ea-9eff-7cdd908c7490", "@type": "Dataset", "version": "c9f7737806d40c958f5f498fd1a060c0f2ddd5ff", "name": "Dataset_omodpirgos_9", "url": "https://example.com/users/omodpirgos/dataset_9", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "o.omorpallud@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "network-based connectivity functional personality", "datePublished": 2111, "sameAs": "10.100/99.abc-10", "pagination": "1374-1394", "author": [{"@id": "a.ilud@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "a.emadsanpali@example.com"}, {"@id": "p.rigmorluda@example.com"}, {"@id": "m.kolkospale@example.com"}, {"@id": "i.upirmale@example.com"}, {"@id": "m.opalsulkosu@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Brain Struct Funct", "@type": "PublicationEvent", "name": "Brain Struct Funct"}, "isPartOf": {"@id": "#issue(6)", "@type": "PublicationIssue", "issue_number": 6, "isPartOf": {"@id": "#volume(223)", "@type": "PublicationVolume", "volumeNumber": 223}}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.mora@example.com", "@type": "Person", "email": "i.mora@example.com", "name": "Imolpir Mora", "givenName": "Imolpir", "familyName": "Mora"}, {"@id": "https://schema.datalad.org/person#g.lad@example.com", "@type": "Person", "email": "g.lad@example.com", "name": "Gosa Lad", "givenName": "Gosa", "familyName": "Lad"}, {"@id": "https://schema.datalad.org/person#a.omol@example.com", "@type": "Person", "email": "a.omol@example.com", "name": "Akosrigo Omol", "givenName": "Akosrigo", "familyName": "Omol"}, {"@id": "https://schema.datalad.org/person#a.modmod@example.com", "@type": "Person", "email": "a.modmod@example.com", "name": "Dr. Aselpal Modmod", "givenName": "Aselpal", "familyName": "Modmod", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#a.gos@example.com", "@type": "Person", "email": "a.gos@example.com", "name": "Aselu Gos", "givenName": "Aselu", "familyName": "Gos"}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#u.pulpula@example.com", "@type": "Person", "email": "u.pulpula@example.com", "name": "Upir Pulpula", "givenName": "Upir", "familyName": "Pulpula"}]}]}} -{"type": "dataset", "root_dataset_id": "5599d916-dc76-11ea-8d5f-7cdd908c7490", "root_dataset_version": "1fdf34c1d6c63285c765113e1128adf1720bf243", "dataset_path": "study-95", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090458.2433488, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Nostro17_VBM", "keywords": ["Correlation Personality and Brain Structure"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}, {"@id": "o.omorpallud@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#5599d916-dc76-11ea-8d5f-7cdd908c7490", "@type": "Dataset", "version": "1fdf34c1d6c63285c765113e1128adf1720bf243", "name": "Dataset_omodpirgos_12", "url": "https://example.com/users/omodpirgos/dataset_12", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "o.omorpallud@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "Correlations and of Crucial A Brain Between Structure:", "datePublished": 2114, "sameAs": "10.100/99.abc-13", "pagination": "1945-1972", "author": [{"@id": "a.ilud@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "l.imel@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Cereb Cortex", "@type": "PublicationEvent", "name": "Cereb Cortex"}, "isPartOf": {"@id": "#issue(7)", "@type": "PublicationIssue", "issue_number": 7, "isPartOf": {"@id": "#volume(27)", "@type": "PublicationVolume", "volumeNumber": 27}}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#i.ugos@example.com", "@type": "Person", "email": "i.ugos@example.com", "name": "Imad Ugos", "givenName": "Imad", "familyName": "Ugos"}, {"@id": "https://schema.datalad.org/person#g.lad@example.com", "@type": "Person", "email": "g.lad@example.com", "name": "Gosa Lad", "givenName": "Gosa", "familyName": "Lad"}, {"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#u.pulpula@example.com", "@type": "Person", "email": "u.pulpula@example.com", "name": "Upir Pulpula", "givenName": "Upir", "familyName": "Pulpula"}]}]}} -{"type": "dataset", "root_dataset_id": "56370470-dc76-11ea-b64b-7cdd908c7490", "root_dataset_version": "734d1649f92c3a1d67d54e73185e33883feda9ef", "dataset_path": "study-93", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090458.243436, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Mueller16_ALEdepression", "keywords": ["Unipolar Depression"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#56370470-dc76-11ea-b64b-7cdd908c7490", "@type": "Dataset", "version": "734d1649f92c3a1d67d54e73185e33883feda9ef", "name": "Dataset_omodpirgos_15", "url": "https://example.com/users/omodpirgos/dataset_15", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "Revisited: in Unipolar Brain Activity Neuroimaging of Studies", "datePublished": 2117, "sameAs": "10.100/99.abc-16", "pagination": "1071-1083", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "e.malu@example.com"}, {"@id": "m.emod@example.com"}, {"@id": "m.asan@example.com"}, {"@id": "m.meli@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#JAMA Psychiatry", "@type": "PublicationEvent", "name": "JAMA Psychiatry"}, "isPartOf": {"@id": "#issue(1)", "@type": "PublicationIssue", "issue_number": 1, "isPartOf": {"@id": "#volume(74)", "@type": "PublicationVolume", "volumeNumber": 74}}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#k.umalpalo@example.com", "@type": "Person", "email": "k.umalpalo@example.com", "name": "Kosselo Umalpalo", "givenName": "Kosselo", "familyName": "Umalpalo"}, {"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#o.selsulmor@example.com", "@type": "Person", "email": "o.selsulmor@example.com", "name": "Dr. Osanmodmelo Selsulmor", "givenName": "Osanmodmelo", "familyName": "Selsulmor", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#a.ugorsan@example.com", "@type": "Person", "email": "a.ugorsan@example.com", "name": "Dr. Apirsan Ugorsan", "givenName": "Apirsan", "familyName": "Ugorsan", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#s.omelgorladi@example.com", "@type": "Person", "email": "s.omelgorladi@example.com", "name": "Dr. phil. Sansul Omelgorladi", "givenName": "Sansul", "familyName": "Omelgorladi", "honorificSuffix": "Dr. phil."}]}]}} -{"type": "dataset", "root_dataset_id": "56da392e-dc76-11ea-91f4-7cdd908c7490", "root_dataset_version": "2a5737a7ba741481283e535ae6b61e75d1fcd44d", "dataset_path": "study-92", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090458.2252412, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Masterthesis_Serbanescu", "keywords": ["master thesis", "meta-analysis", "functional neuroimgaging studies"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}, {"@id": "m.emod@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#56da392e-dc76-11ea-91f4-7cdd908c7490", "@type": "Dataset", "version": "2a5737a7ba741481283e535ae6b61e75d1fcd44d", "name": "Dataset_emod_18", "url": "https://example.com/users/emod/dataset_18", "author": [{"@id": "m.emod@example.com"}, {"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "meta-analysis depression: cognitive Changes major functional brain coordinate studies processing and neuroimaging in activity of emotional", "datePublished": 2120, "author": [{"@id": "m.emod@example.com"}], "sameAs": "10.100/99.abc-19", "pagination": "1154-1182"}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#o.selsulmor@example.com", "@type": "Person", "email": "o.selsulmor@example.com", "name": "Dr. Osanmodmelo Selsulmor", "givenName": "Osanmodmelo", "familyName": "Selsulmor", "honorificSuffix": "Dr."}]}]}} -{"type": "dataset", "root_dataset_id": "57796120-dc76-11ea-a8c4-7cdd908c7490", "root_dataset_version": "dba9e0da671efbe129870a0cf9d9055c4bdc2276", "dataset_path": "study-91", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090458.2255168, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Kogler16_AmyRS", "keywords": ["Sex differences", "amygdalae"], "accountablePerson": "m.apalsul@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#57796120-dc76-11ea-a8c4-7cdd908c7490", "@type": "Dataset", "version": "dba9e0da671efbe129870a0cf9d9055c4bdc2276", "name": "Dataset_ukol_21", "url": "https://example.com/users/ukol/dataset_21", "author": [{"@id": "g.ukol@example.com"}, {"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "association cortisol in functional the of the Sex amygdalae with", "datePublished": 2123, "sameAs": "10.100/99.abc-22", "pagination": "681-699", "author": [{"@id": "g.ukol@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "m.puli@example.com"}, {"@id": "m.aladmadsane@example.com"}, {"@id": "k.mal@example.com"}, {"@id": "l.akol@example.com"}, {"@id": "g.rigkosu@example.com"}, {"@id": "g.oselrigsan@example.com"}, {"@id": "s.ladsela@example.com"}, {"@id": "s.aselkol@example.com"}], "publisher": {"@id": "https://schema.datalad.org/publisher#Elsevier", "@type": "Organization", "name": "Elsevier"}, "publication": {"@id": "https://schema.datalad.org/publication_event#NeuroImage", "@type": "PublicationEvent", "name": "NeuroImage"}, "isPartOf": {"@id": "#volume(134)", "@type": "PublicationVolume", "volumeNumber": 134}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#k.modsul@example.com", "@type": "Person", "email": "k.modsul@example.com", "name": "Dr. Kolselo Modsul", "givenName": "Kolselo", "familyName": "Modsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#m.upalpal@example.com", "@type": "Person", "email": "m.upalpal@example.com", "name": "Dr. Modmol Upalpal", "givenName": "Modmol", "familyName": "Upalpal", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#o.morkosu@example.com", "@type": "Person", "email": "o.morkosu@example.com", "name": "Osulkol Morkosu", "givenName": "Osulkol", "familyName": "Morkosu"}, {"@id": "https://schema.datalad.org/person#a.esel@example.com", "@type": "Person", "email": "a.esel@example.com", "name": "Dr. Agorsul Esel", "givenName": "Agorsul", "familyName": "Esel", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#a.imolpala@example.com", "@type": "Person", "email": "a.imolpala@example.com", "name": "Dr. phil. Apulpulpiro Imolpala", "givenName": "Apulpulpiro", "familyName": "Imolpala", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#o.eselmodi@example.com", "@type": "Person", "email": "o.eselmodi@example.com", "name": "Oludgosi Eselmodi", "givenName": "Oludgosi", "familyName": "Eselmodi"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#k.umalpalo@example.com", "@type": "Person", "email": "k.umalpalo@example.com", "name": "Kosselo Umalpalo", "givenName": "Kosselo", "familyName": "Umalpalo"}, {"@id": "https://schema.datalad.org/person#s.upirmor@example.com", "@type": "Person", "email": "s.upirmor@example.com", "name": "Dr. Sulpirsuli Upirmor", "givenName": "Sulpirsuli", "familyName": "Upirmor", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#o.imadrig@example.com", "@type": "Person", "email": "o.imadrig@example.com", "name": "Dr. Opirlud Imadrig", "givenName": "Opirlud", "familyName": "Imadrig", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#r.umelmola@example.com", "@type": "Person", "email": "r.umelmola@example.com", "name": "Riglud Umelmola", "givenName": "Riglud", "familyName": "Umelmola"}]}]}} -{"type": "dataset", "root_dataset_id": "58253d06-dc76-11ea-aa7e-7cdd908c7490", "root_dataset_version": "5d344fee1cd692e26da0ce4e7ef5ef6aa0f4e59c", "dataset_path": "study-90", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090458.2096868, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Kogler15_MetaStress", "keywords": ["Psychosocial versus physiological stress", "Meta-Analyses"], "accountablePerson": "m.apalsul@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#58253d06-dc76-11ea-aa7e-7cdd908c7490", "@type": "Dataset", "version": "5d344fee1cd692e26da0ce4e7ef5ef6aa0f4e59c", "name": "Dataset_upirmale_24", "url": "https://example.com/users/upirmale/dataset_24", "author": [{"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "- of Meta-analyses of stress neural reactions the stress and versus deactivations activations correlates", "datePublished": 2126, "accountablePerson": "a.imolpala@example.com", "sameAs": "10.100/99.abc-25", "pagination": "447-470", "author": [{"@id": "g.ukol@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "g.lud@example.com"}, {"@id": "s.ladsela@example.com"}, {"@id": "m.meli@example.com"}, {"@id": "g.oselrigsan@example.com"}, {"@id": "s.aselkol@example.com"}], "publisher": {"@id": "https://schema.datalad.org/publisher#Elsevier", "@type": "Organization", "name": "Elsevier"}, "publication": {"@id": "https://schema.datalad.org/publication_event#NeuroImage", "@type": "PublicationEvent", "name": "NeuroImage"}, "description": "k.rigpulsan@example.com", "isPartOf": {"@id": "#volume(119)", "@type": "PublicationVolume", "volumeNumber": 119}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#a.imolpala@example.com", "@type": "Person", "email": "a.imolpala@example.com", "name": "Dr. phil. Apulpulpiro Imolpala", "givenName": "Apulpulpiro", "familyName": "Imolpala", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#o.eselmodi@example.com", "@type": "Person", "email": "o.eselmodi@example.com", "name": "Oludgosi Eselmodi", "givenName": "Oludgosi", "familyName": "Eselmodi"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#k.umalpalo@example.com", "@type": "Person", "email": "k.umalpalo@example.com", "name": "Kosselo Umalpalo", "givenName": "Kosselo", "familyName": "Umalpalo"}, {"@id": "https://schema.datalad.org/person#s.upirmor@example.com", "@type": "Person", "email": "s.upirmor@example.com", "name": "Dr. Sulpirsuli Upirmor", "givenName": "Sulpirsuli", "familyName": "Upirmor", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#o.imadrig@example.com", "@type": "Person", "email": "o.imadrig@example.com", "name": "Dr. Opirlud Imadrig", "givenName": "Opirlud", "familyName": "Imadrig", "honorificSuffix": "Dr."}]}]}} -{"type": "dataset", "root_dataset_id": "58ff8024-dc76-11ea-ad78-7cdd908c7490", "root_dataset_version": "4862b1dd8434e2e151f38e4c6b19617becae215b", "dataset_path": "study-85", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090458.2053657, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Masterthesis_Sindermann", "keywords": ["Affective Processing in Anorexia Nervosa", "Meta-Analysis"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#58ff8024-dc76-11ea-ad78-7cdd908c7490", "@type": "Dataset", "version": "4862b1dd8434e2e151f38e4c6b19617becae215b", "name": "Dataset_isan_27", "url": "https://example.com/users/isan/dataset_27", "author": [{"@id": "e.isan@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "Nervosa: Processing Neuroimaging Affective Findings A Anorexia", "datePublished": 2129, "author": [{"@id": "e.isan@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Master thesis", "@type": "PublicationEvent", "name": "Master thesis"}, "sameAs": "10.100/99.abc-28", "pagination": "786-805"}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#p.omadsulgor@example.com", "@type": "Person", "email": "p.omadsulgor@example.com", "name": "Dr. Pulgorsan Omadsulgor", "givenName": "Pulgorsan", "familyName": "Omadsulgor", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}]}]}} -{"type": "dataset", "root_dataset_id": "59bff4ee-dc76-11ea-8f22-7cdd908c7490", "root_dataset_version": "927fa89d9ddfb8dad8cf652554090afcd08fcf1e", "dataset_path": "study-84", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090458.1927183, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Masterthesis_Barisch", "keywords": ["Functional Connectivity Changes", "Schizophrena"], "accountablePerson": "m.apalsul@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#59bff4ee-dc76-11ea-8f22-7cdd908c7490", "@type": "Dataset", "version": "927fa89d9ddfb8dad8cf652554090afcd08fcf1e", "name": "Dataset_kol_30", "url": "https://example.com/users/kol/dataset_30", "author": [{"@id": "u.kol@example.com"}, {"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "Affective Changes Network in Schizophrena: Connectivity the Functional A approach Auditory Matter Gray", "datePublished": 2132, "author": [{"@id": "u.kol@example.com"}], "sameAs": "10.100/99.abc-31", "pagination": "953-968"}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#g.ekoslud@example.com", "@type": "Person", "email": "g.ekoslud@example.com", "name": "Prof. Dr. Gormormel Ekoslud", "givenName": "Gormormel", "familyName": "Ekoslud", "honorificSuffix": "Prof. Dr."}]}]}} -{"type": "dataset", "root_dataset_id": "5a5bc5e0-dc76-11ea-a9da-7cdd908c7490", "root_dataset_version": "24cf1d6428d3e52e15136945f3bdff838e92825c", "dataset_path": "study-83", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090458.1782668, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Tahmasian_Valk_2020", "keywords": ["interrelation of sleep and mental and physical health", "grey matter"], "accountablePerson": "e.irigludkolo@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#5a5bc5e0-dc76-11ea-a9da-7cdd908c7490", "@type": "Dataset", "version": "24cf1d6428d3e52e15136945f3bdff838e92825c", "name": "Dataset_modsan_33", "url": "https://example.com/users/modsan/dataset_33", "author": [{"@id": "g.modsan@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "is physical sleep control and and grey-matter genetic The in anchored under interrelation of health", "datePublished": 2135, "accountablePerson": "a.pir@example.com", "sameAs": "10.100/99.abc-34", "author": [{"@id": "s.pal@example.com"}, {"@id": "m.gossulsan@example.com"}, {"@id": "m.imor@example.com"}, {"@id": "e.emali@example.com"}, {"@id": "m.gor@example.com"}, {"@id": "m.kolkospale@example.com"}, {"@id": "o.omorpallud@example.com"}, {"@id": "m.modselu@example.com"}, {"@id": "e.ogormod@example.com"}, {"@id": "s.ladsela@example.com"}, {"@id": "g.modsan@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Communications Biology", "@type": "PublicationEvent", "name": "Communications Biology"}, "description": "a.ekolriga@example.com", "isPartOf": {"@id": "#issue(171)", "@type": "PublicationIssue", "issue_number": 171, "isPartOf": {"@id": "#volume(3)", "@type": "PublicationVolume", "volumeNumber": 3}}, "pagination": "1767-1794"}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.pirsul@example.com", "@type": "Person", "email": "m.pirsul@example.com", "name": "Prof. Dr. Malpirrig Pirsul", "givenName": "Malpirrig", "familyName": "Pirsul", "honorificSuffix": "Prof. Dr."}, {"@id": "https://schema.datalad.org/person#m.sulmod@example.com", "@type": "Person", "email": "m.sulmod@example.com", "name": "Mel Sulmod", "givenName": "Mel", "familyName": "Sulmod"}, {"@id": "https://schema.datalad.org/person#a.pir@example.com", "@type": "Person", "email": "a.pir@example.com", "name": "Agossanrigu Pir", "givenName": "Agossanrigu", "familyName": "Pir"}, {"@id": "https://schema.datalad.org/person#s.ilud@example.com", "@type": "Person", "email": "s.ilud@example.com", "name": "Dr. rer. med. Sul Ilud", "givenName": "Sul", "familyName": "Ilud", "honorificSuffix": "Dr. rer. med."}, {"@id": "https://schema.datalad.org/person#e.modpiru@example.com", "@type": "Person", "email": "e.modpiru@example.com", "name": "Emadu Modpiru", "givenName": "Emadu", "familyName": "Modpiru"}, {"@id": "https://schema.datalad.org/person#i.uselmale@example.com", "@type": "Person", "email": "i.uselmale@example.com", "name": "Dr. Ipulmoro Uselmale", "givenName": "Ipulmoro", "familyName": "Uselmale", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.mora@example.com", "@type": "Person", "email": "i.mora@example.com", "name": "Imolpir Mora", "givenName": "Imolpir", "familyName": "Mora"}, {"@id": "https://schema.datalad.org/person#u.pulpula@example.com", "@type": "Person", "email": "u.pulpula@example.com", "name": "Upir Pulpula", "givenName": "Upir", "familyName": "Pulpula"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#m.ladi@example.com", "@type": "Person", "email": "m.ladi@example.com", "name": "Prof. Dr. Melsanpal Ladi", "givenName": "Melsanpal", "familyName": "Ladi", "honorificSuffix": "Prof. Dr."}, {"@id": "https://schema.datalad.org/person#e.emalkosseli@example.com", "@type": "Person", "email": "e.emalkosseli@example.com", "name": "Ekosmorsulo Emalkosseli", "givenName": "Ekosmorsulo", "familyName": "Emalkosseli"}]}]}} -{"type": "dataset", "root_dataset_id": "5b050b1e-dc76-11ea-88a8-7cdd908c7490", "root_dataset_version": "608716ccd9ed56bb445db81a9c73d43aa902a84d", "dataset_path": "study-82", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090458.1598752, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "DooseGruenefeld15 Frontiers", "keywords": ["audiovisual emotional processing"], "accountablePerson": "m.apalsul@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#5b050b1e-dc76-11ea-88a8-7cdd908c7490", "@type": "Dataset", "version": "608716ccd9ed56bb445db81a9c73d43aa902a84d", "name": "Dataset_omodpirgos_36", "url": "https://example.com/users/omodpirgos/dataset_36", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "with emotional patients in Audiovisual processing and", "datePublished": 2138, "accountablePerson": "i.selkolu@example.com", "sameAs": "10.100/99.abc-37", "author": [{"@id": "a.pirsanmela@example.com"}, {"@id": "s.ladsela@example.com"}, {"@id": "e.omodpirgos@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Frontiers in Integrative Neuroscience", "@type": "PublicationEvent", "name": "Frontiers in Integrative Neuroscience"}, "description": "e.madsani@example.com", "isPartOf": {"@id": "#issue(3)", "@type": "PublicationIssue", "issue_number": 3, "isPartOf": {"@id": "#volume(9)", "@type": "PublicationVolume", "volumeNumber": 9}}, "pagination": "892-922"}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.akolmormal@example.com", "@type": "Person", "email": "i.akolmormal@example.com", "name": "Imodmadlude Akolmormal", "givenName": "Imodmadlude", "familyName": "Akolmormal"}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}]}]}} -{"type": "dataset", "root_dataset_id": "5ba774b2-dc76-11ea-9186-7cdd908c7490", "root_dataset_version": "7d80d256827da2569c71e84f57151e0324169247", "dataset_path": "study-74", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090458.1440642, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "CBPtools", "keywords": ["CBPtools"], "accountablePerson": "a.gos@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#5ba774b2-dc76-11ea-9186-7cdd908c7490", "@type": "Dataset", "version": "7d80d256827da2569c71e84f57151e0324169247", "name": "Dataset_umel_39", "url": "https://example.com/users/umel/dataset_39", "author": [{"@id": "a.umel@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "parcellation A regional connectivity-based for", "datePublished": 2141, "sameAs": "10.100/99.abc-40", "pagination": "305-312", "author": [{"@id": "a.umel@example.com"}, {"@id": "i.imolmal@example.com"}, {"@id": "m.gor@example.com"}, {"@id": "m.kolkospale@example.com"}, {"@id": "g.imorpulmor@example.com"}, {"@id": "m.emodgos@example.com"}, {"@id": "s.ladsela@example.com"}, {"@id": "m.opalsulkosu@example.com"}], "publisher": {"@id": "https://schema.datalad.org/publisher#Springer", "@type": "Organization", "name": "Springer"}, "publication": {"@id": "https://schema.datalad.org/publication_event#Brain Structure and Function", "@type": "PublicationEvent", "name": "Brain Structure and Function"}, "isPartOf": {"@id": "#volume(225)", "@type": "PublicationVolume", "volumeNumber": 225}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#a.gos@example.com", "@type": "Person", "email": "a.gos@example.com", "name": "Aselu Gos", "givenName": "Aselu", "familyName": "Gos"}, {"@id": "https://schema.datalad.org/person#r.ugore@example.com", "@type": "Person", "email": "r.ugore@example.com", "name": "Dr. Rigmodu Ugore", "givenName": "Rigmodu", "familyName": "Ugore", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#u.gosa@example.com", "@type": "Person", "email": "u.gosa@example.com", "name": "Dr. Ukoli Gosa", "givenName": "Ukoli", "familyName": "Gosa", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#s.ilud@example.com", "@type": "Person", "email": "s.ilud@example.com", "name": "Dr. rer. med. Sul Ilud", "givenName": "Sul", "familyName": "Ilud", "honorificSuffix": "Dr. rer. med."}, {"@id": "https://schema.datalad.org/person#i.mora@example.com", "@type": "Person", "email": "i.mora@example.com", "name": "Imolpir Mora", "givenName": "Imolpir", "familyName": "Mora"}, {"@id": "https://schema.datalad.org/person#i.upalo@example.com", "@type": "Person", "email": "i.upalo@example.com", "name": "Imad Upalo", "givenName": "Imad", "familyName": "Upalo"}, {"@id": "https://schema.datalad.org/person#m.imolsel@example.com", "@type": "Person", "email": "m.imolsel@example.com", "name": "Melmodmad Imolsel", "givenName": "Melmodmad", "familyName": "Imolsel"}]}]}} -{"type": "dataset", "root_dataset_id": "5c62610a-dc76-11ea-af43-7cdd908c7490", "root_dataset_version": "089d0a8a2b22d87e63f8de28caf6fa91790ad51a", "dataset_path": "study-47", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090458.0654001, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Master Thesis Wolf", "keywords": ["Master Thesis"], "accountablePerson": "a.gos@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#5c62610a-dc76-11ea-af43-7cdd908c7490", "@type": "Dataset", "version": "089d0a8a2b22d87e63f8de28caf6fa91790ad51a", "name": "Dataset_madpul_42", "url": "https://example.com/users/madpul/dataset_42", "author": [{"@id": "g.madpul@example.com"}, {"@id": "m.opalsulkosu@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "processes aging of schizophrenia", "datePublished": 2144, "author": [{"@id": "g.madpul@example.com"}], "sameAs": "10.100/99.abc-43", "pagination": "1883-1898"}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#a.gos@example.com", "@type": "Person", "email": "a.gos@example.com", "name": "Aselu Gos", "givenName": "Aselu", "familyName": "Gos"}, {"@id": "https://schema.datalad.org/person#m.apir@example.com", "@type": "Person", "email": "m.apir@example.com", "name": "Madpirmod Apir", "givenName": "Madpirmod", "familyName": "Apir"}]}]}} -{"type": "dataset", "root_dataset_id": "5d1d514a-dc76-11ea-a8da-7cdd908c7490", "root_dataset_version": "ae851681646eed997d4d9e716bb5fc3e9a6c36e5", "dataset_path": "study-44", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090458.0509722, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Multimodal CBP", "keywords": ["Multimodal CBP"], "accountablePerson": "a.gos@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#5d1d514a-dc76-11ea-a8da-7cdd908c7490", "@type": "Dataset", "version": "ae851681646eed997d4d9e716bb5fc3e9a6c36e5", "name": "Dataset_opalsulkosu_45", "url": "https://example.com/users/opalsulkosu/dataset_45", "author": [{"@id": "m.opalsulkosu@example.com"}, {"@id": "g.imorpulmor@example.com"}], "description": ""}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#a.gos@example.com", "@type": "Person", "email": "a.gos@example.com", "name": "Aselu Gos", "givenName": "Aselu", "familyName": "Gos"}, {"@id": "https://schema.datalad.org/person#i.upalo@example.com", "@type": "Person", "email": "i.upalo@example.com", "name": "Imad Upalo", "givenName": "Imad", "familyName": "Upalo"}]}]}} -{"type": "dataset", "root_dataset_id": "4b88f9a2-dc76-11ea-a40f-7cdd908c7490", "root_dataset_version": "66955e1d17782f93b4e0ec100f8f6e6e4e897c3c", "dataset_path": "study-115", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090457.9129026, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "HBM_Classification_Paper_2017", "keywords": ["study"], "accountablePerson": "m.apalsul@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#4b88f9a2-dc76-11ea-a40f-7cdd908c7490", "@type": "Dataset", "version": "66955e1d17782f93b4e0ec100f8f6e6e4e897c3c", "name": "Dataset_upirmale_46", "url": "https://example.com/users/upirmale/dataset_46", "author": [{"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "of classification from schizophrenia, age: the advanced networks integrity and On connectivity-based functional disease, Parkinson\u2019s Evidence", "datePublished": 2148, "accountablePerson": "e.irigludkolo@example.com", "sameAs": "10.100/99.abc-47", "pagination": "1689-1699", "author": [{"@id": "p.rigmorluda@example.com"}, {"@id": "e.malu@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "m.kolkospale@example.com"}, {"@id": "m.piru@example.com"}, {"@id": "a.emadsanpali@example.com"}, {"@id": "a.sansani@example.com"}, {"@id": "a.lude@example.com"}, {"@id": "m.usanpalmale@example.com"}, {"@id": "u.morludmodo@example.com"}, {"@id": "a.gorpalsulu@example.com"}, {"@id": "k.omelriggor@example.com"}, {"@id": "m.gosmad@example.com"}, {"@id": "m.osulpira@example.com"}, {"@id": "i.esan@example.com"}, {"@id": "o.pir@example.com"}, {"@id": "i.malkos@example.com"}, {"@id": "i.mad@example.com"}, {"@id": "i.gorsel@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Human Brain Mapping", "@type": "PublicationEvent", "name": "Human Brain Mapping"}, "description": "i.san@example.com", "isPartOf": {"@id": "#issue(12)", "@type": "PublicationIssue", "issue_number": 12, "isPartOf": {"@id": "#volume(38)", "@type": "PublicationVolume", "volumeNumber": 38}}}, {"@id": "#publication[1]", "@type": "ScholarlyArticle", "headline": "advanced of \u201cOn brain to Evidence networks in and Corrigendum single-subject from age: integrity disease, functional the classification\u201d", "datePublished": 2150, "sameAs": "10.100/99.abc-49", "pagination": "1522-1551", "author": [{"@id": "p.rigmorluda@example.com"}, {"@id": "e.malu@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "m.kolkospale@example.com"}, {"@id": "m.piru@example.com"}, {"@id": "a.emadsanpali@example.com"}, {"@id": "a.sansani@example.com"}, {"@id": "a.lude@example.com"}, {"@id": "m.usanpalmale@example.com"}, {"@id": "u.morludmodo@example.com"}, {"@id": "a.gorpalsulu@example.com"}, {"@id": "k.omelriggor@example.com"}, {"@id": "m.gosmad@example.com"}, {"@id": "m.osulpira@example.com"}, {"@id": "i.esan@example.com"}, {"@id": "o.pir@example.com"}, {"@id": "i.malkos@example.com"}, {"@id": "i.mad@example.com"}, {"@id": "i.gorsel@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Human Brain Mapping", "@type": "PublicationEvent", "name": "Human Brain Mapping"}, "isPartOf": {"@id": "#issue(11)", "@type": "PublicationIssue", "issue_number": 11, "isPartOf": {"@id": "#volume(39)", "@type": "PublicationVolume", "volumeNumber": 39}}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#a.modmod@example.com", "@type": "Person", "email": "a.modmod@example.com", "name": "Dr. Aselpal Modmod", "givenName": "Aselpal", "familyName": "Modmod", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#a.ugorsan@example.com", "@type": "Person", "email": "a.ugorsan@example.com", "name": "Dr. Apirsan Ugorsan", "givenName": "Apirsan", "familyName": "Ugorsan", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#i.mora@example.com", "@type": "Person", "email": "i.mora@example.com", "name": "Imolpir Mora", "givenName": "Imolpir", "familyName": "Mora"}, {"@id": "https://schema.datalad.org/person#u.modmadkol@example.com", "@type": "Person", "email": "u.modmadkol@example.com", "name": "Dr. Ukosmodlado Modmadkol", "givenName": "Ukosmodlado", "familyName": "Modmadkol", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#a.omol@example.com", "@type": "Person", "email": "a.omol@example.com", "name": "Akosrigo Omol", "givenName": "Akosrigo", "familyName": "Omol"}, {"@id": "https://schema.datalad.org/person#r.pulmelkol@example.com", "@type": "Person", "email": "r.pulmelkol@example.com", "name": "Prof. Dr. Rigo Pulmelkol", "givenName": "Rigo", "familyName": "Pulmelkol", "honorificSuffix": "Prof. Dr."}, {"@id": "https://schema.datalad.org/person#i.rigi@example.com", "@type": "Person", "email": "i.rigi@example.com", "name": "Igossulmado Rigi", "givenName": "Igossulmado", "familyName": "Rigi"}, {"@id": "https://schema.datalad.org/person#e.uludpirkoli@example.com", "@type": "Person", "email": "e.uludpirkoli@example.com", "name": "Dr. phil. Epirmod Uludpirkoli", "givenName": "Epirmod", "familyName": "Uludpirkoli", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#r.sul@example.com", "@type": "Person", "email": "r.sul@example.com", "name": "Rigkolpul Sul", "givenName": "Rigkolpul", "familyName": "Sul"}, {"@id": "https://schema.datalad.org/person#k.emalselkosu@example.com", "@type": "Person", "email": "k.emalselkosu@example.com", "name": "Kosmoli Emalselkosu", "givenName": "Kosmoli", "familyName": "Emalselkosu"}, {"@id": "https://schema.datalad.org/person#m.amodkosgoru@example.com", "@type": "Person", "email": "m.amodkosgoru@example.com", "name": "Dr. Molmorkosa Amodkosgoru", "givenName": "Molmorkosa", "familyName": "Amodkosgoru", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#l.apali@example.com", "@type": "Person", "email": "l.apali@example.com", "name": "Dr. rer. med. Ludsulgoro Apali", "givenName": "Ludsulgoro", "familyName": "Apali", "honorificSuffix": "Dr. rer. med."}, {"@id": "https://schema.datalad.org/person#l.lado@example.com", "@type": "Person", "email": "l.lado@example.com", "name": "Ladgorgor Lado", "givenName": "Ladgorgor", "familyName": "Lado"}, {"@id": "https://schema.datalad.org/person#m.rigmorsan@example.com", "@type": "Person", "email": "m.rigmorsan@example.com", "name": "Malladpal Rigmorsan", "givenName": "Malladpal", "familyName": "Rigmorsan"}, {"@id": "https://schema.datalad.org/person#u.ladmol@example.com", "@type": "Person", "email": "u.ladmol@example.com", "name": "Umodkolo Ladmol", "givenName": "Umodkolo", "familyName": "Ladmol"}, {"@id": "https://schema.datalad.org/person#k.igorsele@example.com", "@type": "Person", "email": "k.igorsele@example.com", "name": "Dr. Kol Igorsele", "givenName": "Kol", "familyName": "Igorsele", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#l.akolkol@example.com", "@type": "Person", "email": "l.akolkol@example.com", "name": "Dr. rer. med. Ludmelmola Akolkol", "givenName": "Ludmelmola", "familyName": "Akolkol", "honorificSuffix": "Dr. rer. med."}, {"@id": "https://schema.datalad.org/person#e.mori@example.com", "@type": "Person", "email": "e.mori@example.com", "name": "Dr. phil. Epuli Mori", "givenName": "Epuli", "familyName": "Mori", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}]}]}} -{"type": "dataset", "root_dataset_id": "4c2ee286-dc76-11ea-911b-7cdd908c7490", "root_dataset_version": "7b966eabe8e45acdf80d16865acd1cd96c516cde", "dataset_path": "study-109", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090457.7337663, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Mueller11_audiovisualhealthy", "keywords": ["study"], "accountablePerson": "m.apalsul@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#4c2ee286-dc76-11ea-911b-7cdd908c7490", "@type": "Dataset", "version": "7b966eabe8e45acdf80d16865acd1cd96c516cde", "name": "Dataset_upirmale_51", "url": "https://example.com/users/upirmale/dataset_51", "author": [{"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "crossmodal effects Incongruence", "datePublished": 2153, "sameAs": "10.100/99.abc-52", "pagination": "1904-1913", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "g.rigkosu@example.com"}, {"@id": "s.aselkol@example.com"}, {"@id": "m.ipulmel@example.com"}, {"@id": "p.asel@example.com"}, {"@id": "r.agor@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#NeuroImage", "@type": "PublicationEvent", "name": "NeuroImage"}, "isPartOf": {"@id": "#issue(3)", "@type": "PublicationIssue", "issue_number": 3, "isPartOf": {"@id": "#volume(54)", "@type": "PublicationVolume", "volumeNumber": 54}}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#r.umelmola@example.com", "@type": "Person", "email": "r.umelmola@example.com", "name": "Riglud Umelmola", "givenName": "Riglud", "familyName": "Umelmola"}, {"@id": "https://schema.datalad.org/person#o.imadrig@example.com", "@type": "Person", "email": "o.imadrig@example.com", "name": "Dr. Opirlud Imadrig", "givenName": "Opirlud", "familyName": "Imadrig", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#s.sanmolmor@example.com", "@type": "Person", "email": "s.sanmolmor@example.com", "name": "Prof. Dr. Selsane Sanmolmor", "givenName": "Selsane", "familyName": "Sanmolmor", "honorificSuffix": "Prof. Dr."}, {"@id": "https://schema.datalad.org/person#o.aselmoro@example.com", "@type": "Person", "email": "o.aselmoro@example.com", "name": "Dr. phil. Opirselsano Aselmoro", "givenName": "Opirselsano", "familyName": "Aselmoro", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#s.esanmodmadu@example.com", "@type": "Person", "email": "s.esanmodmadu@example.com", "name": "Prof. Dr. Sana Esanmodmadu", "givenName": "Sana", "familyName": "Esanmodmadu", "honorificSuffix": "Prof. Dr."}]}]}} -{"type": "dataset", "root_dataset_id": "4ce38894-dc76-11ea-8fef-7cdd908c7490", "root_dataset_version": "ba052a5a18032a0a83d3009be7c1b02b4813f23c", "dataset_path": "study-108", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090457.714016, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Mueller12_DCM", "keywords": ["study"], "accountablePerson": "m.apalsul@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#4ce38894-dc76-11ea-8fef-7cdd908c7490", "@type": "Dataset", "version": "ba052a5a18032a0a83d3009be7c1b02b4813f23c", "name": "Dataset_upirmale_54", "url": "https://example.com/users/upirmale/dataset_54", "author": [{"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "emotion audiovisual processing", "datePublished": 2156, "sameAs": "10.100/99.abc-55", "pagination": "889-917", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "e.malu@example.com"}, {"@id": "e.sane@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#NeuroImage", "@type": "PublicationEvent", "name": "NeuroImage"}, "isPartOf": {"@id": "#issue(1)", "@type": "PublicationIssue", "issue_number": 1, "isPartOf": {"@id": "#volume(60)", "@type": "PublicationVolume", "volumeNumber": 60}}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#a.ugorsan@example.com", "@type": "Person", "email": "a.ugorsan@example.com", "name": "Dr. Apirsan Ugorsan", "givenName": "Apirsan", "familyName": "Ugorsan", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#e.ekos@example.com", "@type": "Person", "email": "e.ekos@example.com", "name": "Esulsana Ekos", "givenName": "Esulsana", "familyName": "Ekos"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}]}]}} -{"type": "dataset", "root_dataset_id": "4da8b48e-dc76-11ea-964e-7cdd908c7490", "root_dataset_version": "8219d0afcbfe1397979bbbed1f9977c3ea6b8426", "dataset_path": "study-107", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090457.7120416, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Mueller13_frontiers", "keywords": ["study"], "accountablePerson": "m.apalsul@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#4da8b48e-dc76-11ea-964e-7cdd908c7490", "@type": "Dataset", "version": "8219d0afcbfe1397979bbbed1f9977c3ea6b8426", "name": "Dataset_upirmale_57", "url": "https://example.com/users/upirmale/dataset_57", "author": [{"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "functional Dysregulated characterization in connectivity depression: parietal and activity schizophrenia", "datePublished": 2159, "sameAs": "10.100/99.abc-58", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "e.malu@example.com"}, {"@id": "m.asan@example.com"}, {"@id": "m.meli@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Front Hum Neurosci", "@type": "PublicationEvent", "name": "Front Hum Neurosci"}, "isPartOf": {"@id": "#issue(268)", "@type": "PublicationIssue", "issue_number": 268, "isPartOf": {"@id": "#volume(7)", "@type": "PublicationVolume", "volumeNumber": 7}}, "pagination": "71-98"}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#a.ugorsan@example.com", "@type": "Person", "email": "a.ugorsan@example.com", "name": "Dr. Apirsan Ugorsan", "givenName": "Apirsan", "familyName": "Ugorsan", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#s.omelgorladi@example.com", "@type": "Person", "email": "s.omelgorladi@example.com", "name": "Dr. phil. Sansul Omelgorladi", "givenName": "Sansul", "familyName": "Omelgorladi", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#k.umalpalo@example.com", "@type": "Person", "email": "k.umalpalo@example.com", "name": "Kosselo Umalpalo", "givenName": "Kosselo", "familyName": "Umalpalo"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}]}]}} -{"type": "dataset", "root_dataset_id": "4e6738a0-dc76-11ea-94dc-7cdd908c7490", "root_dataset_version": "43391d89c87fe984a55430d7dab4b3300dbb6851", "dataset_path": "study-106", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090457.6966271, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Mueller14_audiovisualdepression", "keywords": ["study"], "accountablePerson": "m.apalsul@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#4e6738a0-dc76-11ea-94dc-7cdd908c7490", "@type": "Dataset", "version": "43391d89c87fe984a55430d7dab4b3300dbb6851", "name": "Dataset_upirmale_60", "url": "https://example.com/users/upirmale/dataset_60", "author": [{"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "Crossmodal in major", "datePublished": 2162, "sameAs": "10.100/99.abc-61", "pagination": "476-500", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "e.malu@example.com"}, {"@id": "o.mal@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Soc Cogn Affect Neurosci", "@type": "PublicationEvent", "name": "Soc Cogn Affect Neurosci"}, "isPartOf": {"@id": "#issue(6)", "@type": "PublicationIssue", "issue_number": 6, "isPartOf": {"@id": "#volume(9)", "@type": "PublicationVolume", "volumeNumber": 9}}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#a.ugorsan@example.com", "@type": "Person", "email": "a.ugorsan@example.com", "name": "Dr. Apirsan Ugorsan", "givenName": "Apirsan", "familyName": "Ugorsan", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#a.gose@example.com", "@type": "Person", "email": "a.gose@example.com", "name": "Asulmolsana Gose", "givenName": "Asulmolsana", "familyName": "Gose"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}]}]}} -{"type": "dataset", "root_dataset_id": "4f03a794-dc76-11ea-994b-7cdd908c7490", "root_dataset_version": "afdc39738008c5c070590263874b8249544aefff", "dataset_path": "study-104", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090457.6748545, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Camilleri_Multistate_Collaborations", "keywords": ["study"], "accountablePerson": "g.pirpirludu@example.com", "contributor": [{"@id": "o.omorpallud@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#4f03a794-dc76-11ea-994b-7cdd908c7490", "@type": "Dataset", "version": "afdc39738008c5c070590263874b8249544aefff", "name": "Dataset_omorpallud_63", "url": "https://example.com/users/omorpallud/dataset_63", "author": [{"@id": "o.omorpallud@example.com"}, {"@id": "s.omelpire@example.com"}], "description": ""}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#g.pirpirludu@example.com", "@type": "Person", "email": "g.pirpirludu@example.com", "name": "Goso Pirpirludu", "givenName": "Goso", "familyName": "Pirpirludu"}, {"@id": "https://schema.datalad.org/person#u.pulpula@example.com", "@type": "Person", "email": "u.pulpula@example.com", "name": "Upir Pulpula", "givenName": "Upir", "familyName": "Pulpula"}]}]}} -{"type": "dataset", "root_dataset_id": "4fb7be64-dc76-11ea-ad07-7cdd908c7490", "root_dataset_version": "f801161e170ae8b5b281e651df1dbe62fafa9614", "dataset_path": "study-103", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090457.6666787, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "OHBM15", "keywords": ["OHBM 2015"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#4fb7be64-dc76-11ea-ad07-7cdd908c7490", "@type": "Dataset", "version": "f801161e170ae8b5b281e651df1dbe62fafa9614", "name": "Dataset_omodpirgos_64", "url": "https://example.com/users/omodpirgos/dataset_64", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}]}]}} -{"type": "dataset", "root_dataset_id": "506ce096-dc76-11ea-95f0-7cdd908c7490", "root_dataset_version": "15f405a8e6b28ff641e8b3df0326aa06392341a1", "dataset_path": "study-102", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090457.6932034, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "OHBM_2019", "keywords": ["OHBM 2019"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#506ce096-dc76-11ea-95f0-7cdd908c7490", "@type": "Dataset", "version": "15f405a8e6b28ff641e8b3df0326aa06392341a1", "name": "Dataset_omodpirgos_65", "url": "https://example.com/users/omodpirgos/dataset_65", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}]}]}} -{"type": "dataset", "root_dataset_id": "5146e8d6-dc76-11ea-a2da-7cdd908c7490", "root_dataset_version": "c0b548cd8a69ce91330e55167f5c243ae4dc25ac", "dataset_path": "study-101", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090457.6865904, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Camilleri15_MultiModal", "keywords": ["study"], "accountablePerson": "g.pirpirludu@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#5146e8d6-dc76-11ea-a2da-7cdd908c7490", "@type": "Dataset", "version": "c0b548cd8a69ce91330e55167f5c243ae4dc25ac", "name": "Dataset_omorpallud_66", "url": "https://example.com/users/omorpallud/dataset_66", "author": [{"@id": "o.omorpallud@example.com"}, {"@id": "s.omelpire@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "trail of of motor speed performance Multi-modal the correlates making imaging", "datePublished": 2168, "accountablePerson": "u.pulpula@example.com", "sameAs": "10.100/99.abc-67", "author": [{"@id": "o.omorpallud@example.com"}, {"@id": "l.imel@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "i.gorsel@example.com"}, {"@id": "e.pal@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Frontiers in neurology", "@type": "PublicationEvent", "name": "Frontiers in neurology"}, "description": "e.kospulsulu@example.com", "isPartOf": {"@id": "#issue(219)", "@type": "PublicationIssue", "issue_number": 219, "isPartOf": {"@id": "#volume(6)", "@type": "PublicationVolume", "volumeNumber": 6}}, "pagination": "1446-1454"}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#g.pirpirludu@example.com", "@type": "Person", "email": "g.pirpirludu@example.com", "name": "Goso Pirpirludu", "givenName": "Goso", "familyName": "Pirpirludu"}, {"@id": "https://schema.datalad.org/person#u.pulpula@example.com", "@type": "Person", "email": "u.pulpula@example.com", "name": "Upir Pulpula", "givenName": "Upir", "familyName": "Pulpula"}, {"@id": "https://schema.datalad.org/person#i.ugos@example.com", "@type": "Person", "email": "i.ugos@example.com", "name": "Imad Ugos", "givenName": "Imad", "familyName": "Ugos"}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#e.mori@example.com", "@type": "Person", "email": "e.mori@example.com", "name": "Dr. phil. Epuli Mori", "givenName": "Epuli", "familyName": "Mori", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#a.osel@example.com", "@type": "Person", "email": "a.osel@example.com", "name": "Dr. phil. Amellade Osel", "givenName": "Amellade", "familyName": "Osel", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}]}]}} -{"type": "dataset", "root_dataset_id": "52142b84-dc76-11ea-98c5-7cdd908c7490", "root_dataset_version": "244a8ad43b00622989ae7f0d2b59c80697dadb80", "dataset_path": "study-100", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438b210c2bfbd4f0da79f2791c599c8856e", "extraction_time": 1675090457.6464868, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Camilleri18_eMDN", "keywords": ["neural correlates"], "accountablePerson": "g.pirpirludu@example.com", "contributor": [{"@id": "o.omorpallud@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#52142b84-dc76-11ea-98c5-7cdd908c7490", "@type": "Dataset", "version": "244a8ad43b00622989ae7f0d2b59c80697dadb80", "name": "Dataset_omorpallud_69", "url": "https://example.com/users/omorpallud/dataset_69", "author": [{"@id": "o.omorpallud@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "multiple-demand Definition extended network and", "datePublished": 2171, "sameAs": "10.100/99.abc-70", "pagination": "1549-1564", "author": [{"@id": "o.omorpallud@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "m.meli@example.com"}, {"@id": "m.asan@example.com"}, {"@id": "m.kolkospale@example.com"}, {"@id": "m.emodgos@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Neuroimage", "@type": "PublicationEvent", "name": "Neuroimage"}, "isPartOf": {"@id": "#volume(165)", "@type": "PublicationVolume", "volumeNumber": 165}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#u.pulpula@example.com", "@type": "Person", "email": "u.pulpula@example.com", "name": "Upir Pulpula", "givenName": "Upir", "familyName": "Pulpula"}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#k.umalpalo@example.com", "@type": "Person", "email": "k.umalpalo@example.com", "name": "Kosselo Umalpalo", "givenName": "Kosselo", "familyName": "Umalpalo"}, {"@id": "https://schema.datalad.org/person#s.omelgorladi@example.com", "@type": "Person", "email": "s.omelgorladi@example.com", "name": "Dr. phil. Sansul Omelgorladi", "givenName": "Sansul", "familyName": "Omelgorladi", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#i.mora@example.com", "@type": "Person", "email": "i.mora@example.com", "name": "Imolpir Mora", "givenName": "Imolpir", "familyName": "Mora"}, {"@id": "https://schema.datalad.org/person#m.imolsel@example.com", "@type": "Person", "email": "m.imolsel@example.com", "name": "Melmodmad Imolsel", "givenName": "Melmodmad", "familyName": "Imolsel"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#g.pirpirludu@example.com", "@type": "Person", "email": "g.pirpirludu@example.com", "name": "Goso Pirpirludu", "givenName": "Goso", "familyName": "Pirpirludu"}]}]}} +{"type": "dataset", "root_dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "root_dataset_version": "b3f02438✂SHA1", "dataset_path": "study-99", "dataset_id": "52b2f098-dc76-11ea-a6da-7cdd908c7490", "dataset_version": "1b0d92f6✂SHA1", "extraction_time": 1675090458.2812586, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Mueller14_EEGSZ", "keywords": ["Schizophrenia"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#52b2f098-dc76-11ea-a6da-7cdd908c7490", "@type": "Dataset", "version": "1b0d92f6✂SHA1", "name": "Dataset_omodpirgos_0", "url": "https://example.com/users/omodpirgos/dataset_0", "author": [{"@id": "e.omodpirgos@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "in congruent Schizophrenia face emotional by of affective deficits", "datePublished": 2102, "sameAs": "10.100/99.abc-1", "pagination": "525-553", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "o.mal@example.com"}, {"@id": "o.gos@example.com"}, {"@id": "e.sane@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Soc Cogn Affect Neurosci", "@type": "PublicationEvent", "name": "Soc Cogn Affect Neurosci"}, "isPartOf": {"@id": "#issue(4)", "@type": "PublicationIssue", "issue_number": 4, "isPartOf": {"@id": "#volume(9)", "@type": "PublicationVolume", "volumeNumber": 9}}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#a.gose@example.com", "@type": "Person", "email": "a.gose@example.com", "name": "Asulmolsana Gose", "givenName": "Asulmolsana", "familyName": "Gose"}, {"@id": "https://schema.datalad.org/person#g.agor@example.com", "@type": "Person", "email": "g.agor@example.com", "name": "Gossulsela Agor", "givenName": "Gossulsela", "familyName": "Agor"}, {"@id": "https://schema.datalad.org/person#e.ekos@example.com", "@type": "Person", "email": "e.ekos@example.com", "name": "Esulsana Ekos", "givenName": "Esulsana", "familyName": "Ekos"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}]}]}} +{"type": "dataset", "root_dataset_id": "535edf84-dc76-11ea-979c-7cdd908c7490", "root_dataset_version": "96883aef✂SHA1", "dataset_path": "study-98", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090458.2790313, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Mueller15_cognflexibility", "keywords": ["Interindividual differences"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#535edf84-dc76-11ea-979c-7cdd908c7490", "@type": "Dataset", "version": "96883aef✂SHA1", "name": "Dataset_omodpirgos_3", "url": "https://example.com/users/omodpirgos/dataset_3", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "Interindividual of volume, differences impulsivity functional flexibility: influence matter and connectivity in", "datePublished": 2105, "sameAs": "10.100/99.abc-4", "pagination": "151-169", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "i.upirmale@example.com"}, {"@id": "e.malu@example.com"}, {"@id": "p.molludsulo@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Brain Struct Func", "@type": "PublicationEvent", "name": "Brain Struct Func"}, "isPartOf": {"@id": "#issue(4)", "@type": "PublicationIssue", "issue_number": 4, "isPartOf": {"@id": "#volume(220)", "@type": "PublicationVolume", "volumeNumber": 220}}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#a.ugorsan@example.com", "@type": "Person", "email": "a.ugorsan@example.com", "name": "Dr. Apirsan Ugorsan", "givenName": "Apirsan", "familyName": "Ugorsan", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#m.pal@example.com", "@type": "Person", "email": "m.pal@example.com", "name": "Dr. phil. Madludlade Pal", "givenName": "Madludlade", "familyName": "Pal", "honorificSuffix": "Dr. phil."}]}]}} +{"type": "dataset", "root_dataset_id": "542308c8-dc76-11ea-940a-7cdd908c7490", "root_dataset_version": "4bcda921✂SHA1", "dataset_path": "study-97", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090458.2600777, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Mueller18_FaceALE", "keywords": ["meta-analysis"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#542308c8-dc76-11ea-940a-7cdd908c7490", "@type": "Dataset", "version": "4bcda921✂SHA1", "name": "Dataset_omodpirgos_6", "url": "https://example.com/users/omodpirgos/dataset_6", "author": [{"@id": "e.omodpirgos@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "the An Influence task processing: of neural and meta-analysis of face network ALE", "datePublished": 2108, "sameAs": "10.100/99.abc-7", "pagination": "1634-1655", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "m.amol@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Cortex", "@type": "PublicationEvent", "name": "Cortex"}, "isPartOf": {"@id": "#volume(103)", "@type": "PublicationVolume", "volumeNumber": 103}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#o.ladlud@example.com", "@type": "Person", "email": "o.ladlud@example.com", "name": "Dr. Omorkolsan Ladlud", "givenName": "Omorkolsan", "familyName": "Ladlud", "honorificSuffix": "Dr."}]}]}} +{"type": "dataset", "root_dataset_id": "54ded198-dc76-11ea-9eff-7cdd908c7490", "root_dataset_version": "c9f77378✂SHA1", "dataset_path": "study-96", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090458.262438, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Nostro18_Prediction", "keywords": ["study"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}, {"@id": "o.omorpallud@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#54ded198-dc76-11ea-9eff-7cdd908c7490", "@type": "Dataset", "version": "c9f77378✂SHA1", "name": "Dataset_omodpirgos_9", "url": "https://example.com/users/omodpirgos/dataset_9", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "o.omorpallud@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "network-based connectivity functional personality", "datePublished": 2111, "sameAs": "10.100/99.abc-10", "pagination": "1374-1394", "author": [{"@id": "a.ilud@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "a.emadsanpali@example.com"}, {"@id": "p.rigmorluda@example.com"}, {"@id": "m.kolkospale@example.com"}, {"@id": "i.upirmale@example.com"}, {"@id": "m.opalsulkosu@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Brain Struct Funct", "@type": "PublicationEvent", "name": "Brain Struct Funct"}, "isPartOf": {"@id": "#issue(6)", "@type": "PublicationIssue", "issue_number": 6, "isPartOf": {"@id": "#volume(223)", "@type": "PublicationVolume", "volumeNumber": 223}}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.mora@example.com", "@type": "Person", "email": "i.mora@example.com", "name": "Imolpir Mora", "givenName": "Imolpir", "familyName": "Mora"}, {"@id": "https://schema.datalad.org/person#g.lad@example.com", "@type": "Person", "email": "g.lad@example.com", "name": "Gosa Lad", "givenName": "Gosa", "familyName": "Lad"}, {"@id": "https://schema.datalad.org/person#a.omol@example.com", "@type": "Person", "email": "a.omol@example.com", "name": "Akosrigo Omol", "givenName": "Akosrigo", "familyName": "Omol"}, {"@id": "https://schema.datalad.org/person#a.modmod@example.com", "@type": "Person", "email": "a.modmod@example.com", "name": "Dr. Aselpal Modmod", "givenName": "Aselpal", "familyName": "Modmod", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#a.gos@example.com", "@type": "Person", "email": "a.gos@example.com", "name": "Aselu Gos", "givenName": "Aselu", "familyName": "Gos"}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#u.pulpula@example.com", "@type": "Person", "email": "u.pulpula@example.com", "name": "Upir Pulpula", "givenName": "Upir", "familyName": "Pulpula"}]}]}} +{"type": "dataset", "root_dataset_id": "5599d916-dc76-11ea-8d5f-7cdd908c7490", "root_dataset_version": "1fdf34c1✂SHA1", "dataset_path": "study-95", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090458.2433488, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Nostro17_VBM", "keywords": ["Correlation Personality and Brain Structure"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}, {"@id": "o.omorpallud@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#5599d916-dc76-11ea-8d5f-7cdd908c7490", "@type": "Dataset", "version": "1fdf34c1✂SHA1", "name": "Dataset_omodpirgos_12", "url": "https://example.com/users/omodpirgos/dataset_12", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "o.omorpallud@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "Correlations and of Crucial A Brain Between Structure:", "datePublished": 2114, "sameAs": "10.100/99.abc-13", "pagination": "1945-1972", "author": [{"@id": "a.ilud@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "l.imel@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Cereb Cortex", "@type": "PublicationEvent", "name": "Cereb Cortex"}, "isPartOf": {"@id": "#issue(7)", "@type": "PublicationIssue", "issue_number": 7, "isPartOf": {"@id": "#volume(27)", "@type": "PublicationVolume", "volumeNumber": 27}}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#i.ugos@example.com", "@type": "Person", "email": "i.ugos@example.com", "name": "Imad Ugos", "givenName": "Imad", "familyName": "Ugos"}, {"@id": "https://schema.datalad.org/person#g.lad@example.com", "@type": "Person", "email": "g.lad@example.com", "name": "Gosa Lad", "givenName": "Gosa", "familyName": "Lad"}, {"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#u.pulpula@example.com", "@type": "Person", "email": "u.pulpula@example.com", "name": "Upir Pulpula", "givenName": "Upir", "familyName": "Pulpula"}]}]}} +{"type": "dataset", "root_dataset_id": "56370470-dc76-11ea-b64b-7cdd908c7490", "root_dataset_version": "734d1649✂SHA1", "dataset_path": "study-93", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090458.243436, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Mueller16_ALEdepression", "keywords": ["Unipolar Depression"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#56370470-dc76-11ea-b64b-7cdd908c7490", "@type": "Dataset", "version": "734d1649✂SHA1", "name": "Dataset_omodpirgos_15", "url": "https://example.com/users/omodpirgos/dataset_15", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "Revisited: in Unipolar Brain Activity Neuroimaging of Studies", "datePublished": 2117, "sameAs": "10.100/99.abc-16", "pagination": "1071-1083", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "e.malu@example.com"}, {"@id": "m.emod@example.com"}, {"@id": "m.asan@example.com"}, {"@id": "m.meli@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#JAMA Psychiatry", "@type": "PublicationEvent", "name": "JAMA Psychiatry"}, "isPartOf": {"@id": "#issue(1)", "@type": "PublicationIssue", "issue_number": 1, "isPartOf": {"@id": "#volume(74)", "@type": "PublicationVolume", "volumeNumber": 74}}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#k.umalpalo@example.com", "@type": "Person", "email": "k.umalpalo@example.com", "name": "Kosselo Umalpalo", "givenName": "Kosselo", "familyName": "Umalpalo"}, {"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#o.selsulmor@example.com", "@type": "Person", "email": "o.selsulmor@example.com", "name": "Dr. Osanmodmelo Selsulmor", "givenName": "Osanmodmelo", "familyName": "Selsulmor", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#a.ugorsan@example.com", "@type": "Person", "email": "a.ugorsan@example.com", "name": "Dr. Apirsan Ugorsan", "givenName": "Apirsan", "familyName": "Ugorsan", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#s.omelgorladi@example.com", "@type": "Person", "email": "s.omelgorladi@example.com", "name": "Dr. phil. Sansul Omelgorladi", "givenName": "Sansul", "familyName": "Omelgorladi", "honorificSuffix": "Dr. phil."}]}]}} +{"type": "dataset", "root_dataset_id": "56da392e-dc76-11ea-91f4-7cdd908c7490", "root_dataset_version": "2a5737a7✂SHA1", "dataset_path": "study-92", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090458.2252412, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Masterthesis_Serbanescu", "keywords": ["master thesis", "meta-analysis", "functional neuroimgaging studies"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}, {"@id": "m.emod@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#56da392e-dc76-11ea-91f4-7cdd908c7490", "@type": "Dataset", "version": "2a5737a7✂SHA1", "name": "Dataset_emod_18", "url": "https://example.com/users/emod/dataset_18", "author": [{"@id": "m.emod@example.com"}, {"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "meta-analysis depression: cognitive Changes major functional brain coordinate studies processing and neuroimaging in activity of emotional", "datePublished": 2120, "author": [{"@id": "m.emod@example.com"}], "sameAs": "10.100/99.abc-19", "pagination": "1154-1182"}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#o.selsulmor@example.com", "@type": "Person", "email": "o.selsulmor@example.com", "name": "Dr. Osanmodmelo Selsulmor", "givenName": "Osanmodmelo", "familyName": "Selsulmor", "honorificSuffix": "Dr."}]}]}} +{"type": "dataset", "root_dataset_id": "57796120-dc76-11ea-a8c4-7cdd908c7490", "root_dataset_version": "dba9e0da✂SHA1", "dataset_path": "study-91", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090458.2255168, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Kogler16_AmyRS", "keywords": ["Sex differences", "amygdalae"], "accountablePerson": "m.apalsul@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#57796120-dc76-11ea-a8c4-7cdd908c7490", "@type": "Dataset", "version": "dba9e0da✂SHA1", "name": "Dataset_ukol_21", "url": "https://example.com/users/ukol/dataset_21", "author": [{"@id": "g.ukol@example.com"}, {"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "association cortisol in functional the of the Sex amygdalae with", "datePublished": 2123, "sameAs": "10.100/99.abc-22", "pagination": "681-699", "author": [{"@id": "g.ukol@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "m.puli@example.com"}, {"@id": "m.aladmadsane@example.com"}, {"@id": "k.mal@example.com"}, {"@id": "l.akol@example.com"}, {"@id": "g.rigkosu@example.com"}, {"@id": "g.oselrigsan@example.com"}, {"@id": "s.ladsela@example.com"}, {"@id": "s.aselkol@example.com"}], "publisher": {"@id": "https://schema.datalad.org/publisher#Elsevier", "@type": "Organization", "name": "Elsevier"}, "publication": {"@id": "https://schema.datalad.org/publication_event#NeuroImage", "@type": "PublicationEvent", "name": "NeuroImage"}, "isPartOf": {"@id": "#volume(134)", "@type": "PublicationVolume", "volumeNumber": 134}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#k.modsul@example.com", "@type": "Person", "email": "k.modsul@example.com", "name": "Dr. Kolselo Modsul", "givenName": "Kolselo", "familyName": "Modsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#m.upalpal@example.com", "@type": "Person", "email": "m.upalpal@example.com", "name": "Dr. Modmol Upalpal", "givenName": "Modmol", "familyName": "Upalpal", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#o.morkosu@example.com", "@type": "Person", "email": "o.morkosu@example.com", "name": "Osulkol Morkosu", "givenName": "Osulkol", "familyName": "Morkosu"}, {"@id": "https://schema.datalad.org/person#a.esel@example.com", "@type": "Person", "email": "a.esel@example.com", "name": "Dr. Agorsul Esel", "givenName": "Agorsul", "familyName": "Esel", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#a.imolpala@example.com", "@type": "Person", "email": "a.imolpala@example.com", "name": "Dr. phil. Apulpulpiro Imolpala", "givenName": "Apulpulpiro", "familyName": "Imolpala", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#o.eselmodi@example.com", "@type": "Person", "email": "o.eselmodi@example.com", "name": "Oludgosi Eselmodi", "givenName": "Oludgosi", "familyName": "Eselmodi"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#k.umalpalo@example.com", "@type": "Person", "email": "k.umalpalo@example.com", "name": "Kosselo Umalpalo", "givenName": "Kosselo", "familyName": "Umalpalo"}, {"@id": "https://schema.datalad.org/person#s.upirmor@example.com", "@type": "Person", "email": "s.upirmor@example.com", "name": "Dr. Sulpirsuli Upirmor", "givenName": "Sulpirsuli", "familyName": "Upirmor", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#o.imadrig@example.com", "@type": "Person", "email": "o.imadrig@example.com", "name": "Dr. Opirlud Imadrig", "givenName": "Opirlud", "familyName": "Imadrig", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#r.umelmola@example.com", "@type": "Person", "email": "r.umelmola@example.com", "name": "Riglud Umelmola", "givenName": "Riglud", "familyName": "Umelmola"}]}]}} +{"type": "dataset", "root_dataset_id": "58253d06-dc76-11ea-aa7e-7cdd908c7490", "root_dataset_version": "5d344fee✂SHA1", "dataset_path": "study-90", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090458.2096868, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Kogler15_MetaStress", "keywords": ["Psychosocial versus physiological stress", "Meta-Analyses"], "accountablePerson": "m.apalsul@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#58253d06-dc76-11ea-aa7e-7cdd908c7490", "@type": "Dataset", "version": "5d344fee✂SHA1", "name": "Dataset_upirmale_24", "url": "https://example.com/users/upirmale/dataset_24", "author": [{"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "- of Meta-analyses of stress neural reactions the stress and versus deactivations activations correlates", "datePublished": 2126, "accountablePerson": "a.imolpala@example.com", "sameAs": "10.100/99.abc-25", "pagination": "447-470", "author": [{"@id": "g.ukol@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "g.lud@example.com"}, {"@id": "s.ladsela@example.com"}, {"@id": "m.meli@example.com"}, {"@id": "g.oselrigsan@example.com"}, {"@id": "s.aselkol@example.com"}], "publisher": {"@id": "https://schema.datalad.org/publisher#Elsevier", "@type": "Organization", "name": "Elsevier"}, "publication": {"@id": "https://schema.datalad.org/publication_event#NeuroImage", "@type": "PublicationEvent", "name": "NeuroImage"}, "description": "k.rigpulsan@example.com", "isPartOf": {"@id": "#volume(119)", "@type": "PublicationVolume", "volumeNumber": 119}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#a.imolpala@example.com", "@type": "Person", "email": "a.imolpala@example.com", "name": "Dr. phil. Apulpulpiro Imolpala", "givenName": "Apulpulpiro", "familyName": "Imolpala", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#o.eselmodi@example.com", "@type": "Person", "email": "o.eselmodi@example.com", "name": "Oludgosi Eselmodi", "givenName": "Oludgosi", "familyName": "Eselmodi"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#k.umalpalo@example.com", "@type": "Person", "email": "k.umalpalo@example.com", "name": "Kosselo Umalpalo", "givenName": "Kosselo", "familyName": "Umalpalo"}, {"@id": "https://schema.datalad.org/person#s.upirmor@example.com", "@type": "Person", "email": "s.upirmor@example.com", "name": "Dr. Sulpirsuli Upirmor", "givenName": "Sulpirsuli", "familyName": "Upirmor", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#o.imadrig@example.com", "@type": "Person", "email": "o.imadrig@example.com", "name": "Dr. Opirlud Imadrig", "givenName": "Opirlud", "familyName": "Imadrig", "honorificSuffix": "Dr."}]}]}} +{"type": "dataset", "root_dataset_id": "58ff8024-dc76-11ea-ad78-7cdd908c7490", "root_dataset_version": "4862b1dd✂SHA1", "dataset_path": "study-85", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090458.2053657, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Masterthesis_Sindermann", "keywords": ["Affective Processing in Anorexia Nervosa", "Meta-Analysis"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#58ff8024-dc76-11ea-ad78-7cdd908c7490", "@type": "Dataset", "version": "4862b1dd✂SHA1", "name": "Dataset_isan_27", "url": "https://example.com/users/isan/dataset_27", "author": [{"@id": "e.isan@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "Nervosa: Processing Neuroimaging Affective Findings A Anorexia", "datePublished": 2129, "author": [{"@id": "e.isan@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Master thesis", "@type": "PublicationEvent", "name": "Master thesis"}, "sameAs": "10.100/99.abc-28", "pagination": "786-805"}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#p.omadsulgor@example.com", "@type": "Person", "email": "p.omadsulgor@example.com", "name": "Dr. Pulgorsan Omadsulgor", "givenName": "Pulgorsan", "familyName": "Omadsulgor", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}]}]}} +{"type": "dataset", "root_dataset_id": "59bff4ee-dc76-11ea-8f22-7cdd908c7490", "root_dataset_version": "927fa89d✂SHA1", "dataset_path": "study-84", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090458.1927183, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Masterthesis_Barisch", "keywords": ["Functional Connectivity Changes", "Schizophrena"], "accountablePerson": "m.apalsul@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#59bff4ee-dc76-11ea-8f22-7cdd908c7490", "@type": "Dataset", "version": "927fa89d✂SHA1", "name": "Dataset_kol_30", "url": "https://example.com/users/kol/dataset_30", "author": [{"@id": "u.kol@example.com"}, {"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "Affective Changes Network in Schizophrena: Connectivity the Functional A approach Auditory Matter Gray", "datePublished": 2132, "author": [{"@id": "u.kol@example.com"}], "sameAs": "10.100/99.abc-31", "pagination": "953-968"}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#g.ekoslud@example.com", "@type": "Person", "email": "g.ekoslud@example.com", "name": "Prof. Dr. Gormormel Ekoslud", "givenName": "Gormormel", "familyName": "Ekoslud", "honorificSuffix": "Prof. Dr."}]}]}} +{"type": "dataset", "root_dataset_id": "5a5bc5e0-dc76-11ea-a9da-7cdd908c7490", "root_dataset_version": "24cf1d64✂SHA1", "dataset_path": "study-83", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090458.1782668, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Tahmasian_Valk_2020", "keywords": ["interrelation of sleep and mental and physical health", "grey matter"], "accountablePerson": "e.irigludkolo@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#5a5bc5e0-dc76-11ea-a9da-7cdd908c7490", "@type": "Dataset", "version": "24cf1d64✂SHA1", "name": "Dataset_modsan_33", "url": "https://example.com/users/modsan/dataset_33", "author": [{"@id": "g.modsan@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "is physical sleep control and and grey-matter genetic The in anchored under interrelation of health", "datePublished": 2135, "accountablePerson": "a.pir@example.com", "sameAs": "10.100/99.abc-34", "author": [{"@id": "s.pal@example.com"}, {"@id": "m.gossulsan@example.com"}, {"@id": "m.imor@example.com"}, {"@id": "e.emali@example.com"}, {"@id": "m.gor@example.com"}, {"@id": "m.kolkospale@example.com"}, {"@id": "o.omorpallud@example.com"}, {"@id": "m.modselu@example.com"}, {"@id": "e.ogormod@example.com"}, {"@id": "s.ladsela@example.com"}, {"@id": "g.modsan@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Communications Biology", "@type": "PublicationEvent", "name": "Communications Biology"}, "description": "a.ekolriga@example.com", "isPartOf": {"@id": "#issue(171)", "@type": "PublicationIssue", "issue_number": 171, "isPartOf": {"@id": "#volume(3)", "@type": "PublicationVolume", "volumeNumber": 3}}, "pagination": "1767-1794"}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.pirsul@example.com", "@type": "Person", "email": "m.pirsul@example.com", "name": "Prof. Dr. Malpirrig Pirsul", "givenName": "Malpirrig", "familyName": "Pirsul", "honorificSuffix": "Prof. Dr."}, {"@id": "https://schema.datalad.org/person#m.sulmod@example.com", "@type": "Person", "email": "m.sulmod@example.com", "name": "Mel Sulmod", "givenName": "Mel", "familyName": "Sulmod"}, {"@id": "https://schema.datalad.org/person#a.pir@example.com", "@type": "Person", "email": "a.pir@example.com", "name": "Agossanrigu Pir", "givenName": "Agossanrigu", "familyName": "Pir"}, {"@id": "https://schema.datalad.org/person#s.ilud@example.com", "@type": "Person", "email": "s.ilud@example.com", "name": "Dr. rer. med. Sul Ilud", "givenName": "Sul", "familyName": "Ilud", "honorificSuffix": "Dr. rer. med."}, {"@id": "https://schema.datalad.org/person#e.modpiru@example.com", "@type": "Person", "email": "e.modpiru@example.com", "name": "Emadu Modpiru", "givenName": "Emadu", "familyName": "Modpiru"}, {"@id": "https://schema.datalad.org/person#i.uselmale@example.com", "@type": "Person", "email": "i.uselmale@example.com", "name": "Dr. Ipulmoro Uselmale", "givenName": "Ipulmoro", "familyName": "Uselmale", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.mora@example.com", "@type": "Person", "email": "i.mora@example.com", "name": "Imolpir Mora", "givenName": "Imolpir", "familyName": "Mora"}, {"@id": "https://schema.datalad.org/person#u.pulpula@example.com", "@type": "Person", "email": "u.pulpula@example.com", "name": "Upir Pulpula", "givenName": "Upir", "familyName": "Pulpula"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#m.ladi@example.com", "@type": "Person", "email": "m.ladi@example.com", "name": "Prof. Dr. Melsanpal Ladi", "givenName": "Melsanpal", "familyName": "Ladi", "honorificSuffix": "Prof. Dr."}, {"@id": "https://schema.datalad.org/person#e.emalkosseli@example.com", "@type": "Person", "email": "e.emalkosseli@example.com", "name": "Ekosmorsulo Emalkosseli", "givenName": "Ekosmorsulo", "familyName": "Emalkosseli"}]}]}} +{"type": "dataset", "root_dataset_id": "5b050b1e-dc76-11ea-88a8-7cdd908c7490", "root_dataset_version": "608716cc✂SHA1", "dataset_path": "study-82", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090458.1598752, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "DooseGruenefeld15 Frontiers", "keywords": ["audiovisual emotional processing"], "accountablePerson": "m.apalsul@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#5b050b1e-dc76-11ea-88a8-7cdd908c7490", "@type": "Dataset", "version": "608716cc✂SHA1", "name": "Dataset_omodpirgos_36", "url": "https://example.com/users/omodpirgos/dataset_36", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "with emotional patients in Audiovisual processing and", "datePublished": 2138, "accountablePerson": "i.selkolu@example.com", "sameAs": "10.100/99.abc-37", "author": [{"@id": "a.pirsanmela@example.com"}, {"@id": "s.ladsela@example.com"}, {"@id": "e.omodpirgos@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Frontiers in Integrative Neuroscience", "@type": "PublicationEvent", "name": "Frontiers in Integrative Neuroscience"}, "description": "e.madsani@example.com", "isPartOf": {"@id": "#issue(3)", "@type": "PublicationIssue", "issue_number": 3, "isPartOf": {"@id": "#volume(9)", "@type": "PublicationVolume", "volumeNumber": 9}}, "pagination": "892-922"}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.akolmormal@example.com", "@type": "Person", "email": "i.akolmormal@example.com", "name": "Imodmadlude Akolmormal", "givenName": "Imodmadlude", "familyName": "Akolmormal"}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}]}]}} +{"type": "dataset", "root_dataset_id": "5ba774b2-dc76-11ea-9186-7cdd908c7490", "root_dataset_version": "7d80d256✂SHA1", "dataset_path": "study-74", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090458.1440642, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "CBPtools", "keywords": ["CBPtools"], "accountablePerson": "a.gos@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#5ba774b2-dc76-11ea-9186-7cdd908c7490", "@type": "Dataset", "version": "7d80d256✂SHA1", "name": "Dataset_umel_39", "url": "https://example.com/users/umel/dataset_39", "author": [{"@id": "a.umel@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "parcellation A regional connectivity-based for", "datePublished": 2141, "sameAs": "10.100/99.abc-40", "pagination": "305-312", "author": [{"@id": "a.umel@example.com"}, {"@id": "i.imolmal@example.com"}, {"@id": "m.gor@example.com"}, {"@id": "m.kolkospale@example.com"}, {"@id": "g.imorpulmor@example.com"}, {"@id": "m.emodgos@example.com"}, {"@id": "s.ladsela@example.com"}, {"@id": "m.opalsulkosu@example.com"}], "publisher": {"@id": "https://schema.datalad.org/publisher#Springer", "@type": "Organization", "name": "Springer"}, "publication": {"@id": "https://schema.datalad.org/publication_event#Brain Structure and Function", "@type": "PublicationEvent", "name": "Brain Structure and Function"}, "isPartOf": {"@id": "#volume(225)", "@type": "PublicationVolume", "volumeNumber": 225}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#a.gos@example.com", "@type": "Person", "email": "a.gos@example.com", "name": "Aselu Gos", "givenName": "Aselu", "familyName": "Gos"}, {"@id": "https://schema.datalad.org/person#r.ugore@example.com", "@type": "Person", "email": "r.ugore@example.com", "name": "Dr. Rigmodu Ugore", "givenName": "Rigmodu", "familyName": "Ugore", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#u.gosa@example.com", "@type": "Person", "email": "u.gosa@example.com", "name": "Dr. Ukoli Gosa", "givenName": "Ukoli", "familyName": "Gosa", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#s.ilud@example.com", "@type": "Person", "email": "s.ilud@example.com", "name": "Dr. rer. med. Sul Ilud", "givenName": "Sul", "familyName": "Ilud", "honorificSuffix": "Dr. rer. med."}, {"@id": "https://schema.datalad.org/person#i.mora@example.com", "@type": "Person", "email": "i.mora@example.com", "name": "Imolpir Mora", "givenName": "Imolpir", "familyName": "Mora"}, {"@id": "https://schema.datalad.org/person#i.upalo@example.com", "@type": "Person", "email": "i.upalo@example.com", "name": "Imad Upalo", "givenName": "Imad", "familyName": "Upalo"}, {"@id": "https://schema.datalad.org/person#m.imolsel@example.com", "@type": "Person", "email": "m.imolsel@example.com", "name": "Melmodmad Imolsel", "givenName": "Melmodmad", "familyName": "Imolsel"}]}]}} +{"type": "dataset", "root_dataset_id": "5c62610a-dc76-11ea-af43-7cdd908c7490", "root_dataset_version": "089d0a8a✂SHA1", "dataset_path": "study-47", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090458.0654001, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Master Thesis Wolf", "keywords": ["Master Thesis"], "accountablePerson": "a.gos@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#5c62610a-dc76-11ea-af43-7cdd908c7490", "@type": "Dataset", "version": "089d0a8a✂SHA1", "name": "Dataset_madpul_42", "url": "https://example.com/users/madpul/dataset_42", "author": [{"@id": "g.madpul@example.com"}, {"@id": "m.opalsulkosu@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "processes aging of schizophrenia", "datePublished": 2144, "author": [{"@id": "g.madpul@example.com"}], "sameAs": "10.100/99.abc-43", "pagination": "1883-1898"}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#a.gos@example.com", "@type": "Person", "email": "a.gos@example.com", "name": "Aselu Gos", "givenName": "Aselu", "familyName": "Gos"}, {"@id": "https://schema.datalad.org/person#m.apir@example.com", "@type": "Person", "email": "m.apir@example.com", "name": "Madpirmod Apir", "givenName": "Madpirmod", "familyName": "Apir"}]}]}} +{"type": "dataset", "root_dataset_id": "5d1d514a-dc76-11ea-a8da-7cdd908c7490", "root_dataset_version": "ae851681✂SHA1", "dataset_path": "study-44", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090458.0509722, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Multimodal CBP", "keywords": ["Multimodal CBP"], "accountablePerson": "a.gos@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#5d1d514a-dc76-11ea-a8da-7cdd908c7490", "@type": "Dataset", "version": "ae851681✂SHA1", "name": "Dataset_opalsulkosu_45", "url": "https://example.com/users/opalsulkosu/dataset_45", "author": [{"@id": "m.opalsulkosu@example.com"}, {"@id": "g.imorpulmor@example.com"}], "description": ""}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#a.gos@example.com", "@type": "Person", "email": "a.gos@example.com", "name": "Aselu Gos", "givenName": "Aselu", "familyName": "Gos"}, {"@id": "https://schema.datalad.org/person#i.upalo@example.com", "@type": "Person", "email": "i.upalo@example.com", "name": "Imad Upalo", "givenName": "Imad", "familyName": "Upalo"}]}]}} +{"type": "dataset", "root_dataset_id": "4b88f9a2-dc76-11ea-a40f-7cdd908c7490", "root_dataset_version": "66955e1d✂SHA1", "dataset_path": "study-115", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090457.9129026, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "HBM_Classification_Paper_2017", "keywords": ["study"], "accountablePerson": "m.apalsul@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#4b88f9a2-dc76-11ea-a40f-7cdd908c7490", "@type": "Dataset", "version": "66955e1d✂SHA1", "name": "Dataset_upirmale_46", "url": "https://example.com/users/upirmale/dataset_46", "author": [{"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "of classification from schizophrenia, age: the advanced networks integrity and On connectivity-based functional disease, Parkinson\u2019s Evidence", "datePublished": 2148, "accountablePerson": "e.irigludkolo@example.com", "sameAs": "10.100/99.abc-47", "pagination": "1689-1699", "author": [{"@id": "p.rigmorluda@example.com"}, {"@id": "e.malu@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "m.kolkospale@example.com"}, {"@id": "m.piru@example.com"}, {"@id": "a.emadsanpali@example.com"}, {"@id": "a.sansani@example.com"}, {"@id": "a.lude@example.com"}, {"@id": "m.usanpalmale@example.com"}, {"@id": "u.morludmodo@example.com"}, {"@id": "a.gorpalsulu@example.com"}, {"@id": "k.omelriggor@example.com"}, {"@id": "m.gosmad@example.com"}, {"@id": "m.osulpira@example.com"}, {"@id": "i.esan@example.com"}, {"@id": "o.pir@example.com"}, {"@id": "i.malkos@example.com"}, {"@id": "i.mad@example.com"}, {"@id": "i.gorsel@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Human Brain Mapping", "@type": "PublicationEvent", "name": "Human Brain Mapping"}, "description": "i.san@example.com", "isPartOf": {"@id": "#issue(12)", "@type": "PublicationIssue", "issue_number": 12, "isPartOf": {"@id": "#volume(38)", "@type": "PublicationVolume", "volumeNumber": 38}}}, {"@id": "#publication[1]", "@type": "ScholarlyArticle", "headline": "advanced of \u201cOn brain to Evidence networks in and Corrigendum single-subject from age: integrity disease, functional the classification\u201d", "datePublished": 2150, "sameAs": "10.100/99.abc-49", "pagination": "1522-1551", "author": [{"@id": "p.rigmorluda@example.com"}, {"@id": "e.malu@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "m.kolkospale@example.com"}, {"@id": "m.piru@example.com"}, {"@id": "a.emadsanpali@example.com"}, {"@id": "a.sansani@example.com"}, {"@id": "a.lude@example.com"}, {"@id": "m.usanpalmale@example.com"}, {"@id": "u.morludmodo@example.com"}, {"@id": "a.gorpalsulu@example.com"}, {"@id": "k.omelriggor@example.com"}, {"@id": "m.gosmad@example.com"}, {"@id": "m.osulpira@example.com"}, {"@id": "i.esan@example.com"}, {"@id": "o.pir@example.com"}, {"@id": "i.malkos@example.com"}, {"@id": "i.mad@example.com"}, {"@id": "i.gorsel@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Human Brain Mapping", "@type": "PublicationEvent", "name": "Human Brain Mapping"}, "isPartOf": {"@id": "#issue(11)", "@type": "PublicationIssue", "issue_number": 11, "isPartOf": {"@id": "#volume(39)", "@type": "PublicationVolume", "volumeNumber": 39}}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#a.modmod@example.com", "@type": "Person", "email": "a.modmod@example.com", "name": "Dr. Aselpal Modmod", "givenName": "Aselpal", "familyName": "Modmod", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#a.ugorsan@example.com", "@type": "Person", "email": "a.ugorsan@example.com", "name": "Dr. Apirsan Ugorsan", "givenName": "Apirsan", "familyName": "Ugorsan", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#i.mora@example.com", "@type": "Person", "email": "i.mora@example.com", "name": "Imolpir Mora", "givenName": "Imolpir", "familyName": "Mora"}, {"@id": "https://schema.datalad.org/person#u.modmadkol@example.com", "@type": "Person", "email": "u.modmadkol@example.com", "name": "Dr. Ukosmodlado Modmadkol", "givenName": "Ukosmodlado", "familyName": "Modmadkol", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#a.omol@example.com", "@type": "Person", "email": "a.omol@example.com", "name": "Akosrigo Omol", "givenName": "Akosrigo", "familyName": "Omol"}, {"@id": "https://schema.datalad.org/person#r.pulmelkol@example.com", "@type": "Person", "email": "r.pulmelkol@example.com", "name": "Prof. Dr. Rigo Pulmelkol", "givenName": "Rigo", "familyName": "Pulmelkol", "honorificSuffix": "Prof. Dr."}, {"@id": "https://schema.datalad.org/person#i.rigi@example.com", "@type": "Person", "email": "i.rigi@example.com", "name": "Igossulmado Rigi", "givenName": "Igossulmado", "familyName": "Rigi"}, {"@id": "https://schema.datalad.org/person#e.uludpirkoli@example.com", "@type": "Person", "email": "e.uludpirkoli@example.com", "name": "Dr. phil. Epirmod Uludpirkoli", "givenName": "Epirmod", "familyName": "Uludpirkoli", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#r.sul@example.com", "@type": "Person", "email": "r.sul@example.com", "name": "Rigkolpul Sul", "givenName": "Rigkolpul", "familyName": "Sul"}, {"@id": "https://schema.datalad.org/person#k.emalselkosu@example.com", "@type": "Person", "email": "k.emalselkosu@example.com", "name": "Kosmoli Emalselkosu", "givenName": "Kosmoli", "familyName": "Emalselkosu"}, {"@id": "https://schema.datalad.org/person#m.amodkosgoru@example.com", "@type": "Person", "email": "m.amodkosgoru@example.com", "name": "Dr. Molmorkosa Amodkosgoru", "givenName": "Molmorkosa", "familyName": "Amodkosgoru", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#l.apali@example.com", "@type": "Person", "email": "l.apali@example.com", "name": "Dr. rer. med. Ludsulgoro Apali", "givenName": "Ludsulgoro", "familyName": "Apali", "honorificSuffix": "Dr. rer. med."}, {"@id": "https://schema.datalad.org/person#l.lado@example.com", "@type": "Person", "email": "l.lado@example.com", "name": "Ladgorgor Lado", "givenName": "Ladgorgor", "familyName": "Lado"}, {"@id": "https://schema.datalad.org/person#m.rigmorsan@example.com", "@type": "Person", "email": "m.rigmorsan@example.com", "name": "Malladpal Rigmorsan", "givenName": "Malladpal", "familyName": "Rigmorsan"}, {"@id": "https://schema.datalad.org/person#u.ladmol@example.com", "@type": "Person", "email": "u.ladmol@example.com", "name": "Umodkolo Ladmol", "givenName": "Umodkolo", "familyName": "Ladmol"}, {"@id": "https://schema.datalad.org/person#k.igorsele@example.com", "@type": "Person", "email": "k.igorsele@example.com", "name": "Dr. Kol Igorsele", "givenName": "Kol", "familyName": "Igorsele", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#l.akolkol@example.com", "@type": "Person", "email": "l.akolkol@example.com", "name": "Dr. rer. med. Ludmelmola Akolkol", "givenName": "Ludmelmola", "familyName": "Akolkol", "honorificSuffix": "Dr. rer. med."}, {"@id": "https://schema.datalad.org/person#e.mori@example.com", "@type": "Person", "email": "e.mori@example.com", "name": "Dr. phil. Epuli Mori", "givenName": "Epuli", "familyName": "Mori", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}]}]}} +{"type": "dataset", "root_dataset_id": "4c2ee286-dc76-11ea-911b-7cdd908c7490", "root_dataset_version": "7b966eab✂SHA1", "dataset_path": "study-109", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090457.7337663, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Mueller11_audiovisualhealthy", "keywords": ["study"], "accountablePerson": "m.apalsul@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#4c2ee286-dc76-11ea-911b-7cdd908c7490", "@type": "Dataset", "version": "7b966eab✂SHA1", "name": "Dataset_upirmale_51", "url": "https://example.com/users/upirmale/dataset_51", "author": [{"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "crossmodal effects Incongruence", "datePublished": 2153, "sameAs": "10.100/99.abc-52", "pagination": "1904-1913", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "g.rigkosu@example.com"}, {"@id": "s.aselkol@example.com"}, {"@id": "m.ipulmel@example.com"}, {"@id": "p.asel@example.com"}, {"@id": "r.agor@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#NeuroImage", "@type": "PublicationEvent", "name": "NeuroImage"}, "isPartOf": {"@id": "#issue(3)", "@type": "PublicationIssue", "issue_number": 3, "isPartOf": {"@id": "#volume(54)", "@type": "PublicationVolume", "volumeNumber": 54}}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#r.umelmola@example.com", "@type": "Person", "email": "r.umelmola@example.com", "name": "Riglud Umelmola", "givenName": "Riglud", "familyName": "Umelmola"}, {"@id": "https://schema.datalad.org/person#o.imadrig@example.com", "@type": "Person", "email": "o.imadrig@example.com", "name": "Dr. Opirlud Imadrig", "givenName": "Opirlud", "familyName": "Imadrig", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#s.sanmolmor@example.com", "@type": "Person", "email": "s.sanmolmor@example.com", "name": "Prof. Dr. Selsane Sanmolmor", "givenName": "Selsane", "familyName": "Sanmolmor", "honorificSuffix": "Prof. Dr."}, {"@id": "https://schema.datalad.org/person#o.aselmoro@example.com", "@type": "Person", "email": "o.aselmoro@example.com", "name": "Dr. phil. Opirselsano Aselmoro", "givenName": "Opirselsano", "familyName": "Aselmoro", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#s.esanmodmadu@example.com", "@type": "Person", "email": "s.esanmodmadu@example.com", "name": "Prof. Dr. Sana Esanmodmadu", "givenName": "Sana", "familyName": "Esanmodmadu", "honorificSuffix": "Prof. Dr."}]}]}} +{"type": "dataset", "root_dataset_id": "4ce38894-dc76-11ea-8fef-7cdd908c7490", "root_dataset_version": "ba052a5a✂SHA1", "dataset_path": "study-108", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090457.714016, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Mueller12_DCM", "keywords": ["study"], "accountablePerson": "m.apalsul@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#4ce38894-dc76-11ea-8fef-7cdd908c7490", "@type": "Dataset", "version": "ba052a5a✂SHA1", "name": "Dataset_upirmale_54", "url": "https://example.com/users/upirmale/dataset_54", "author": [{"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "emotion audiovisual processing", "datePublished": 2156, "sameAs": "10.100/99.abc-55", "pagination": "889-917", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "e.malu@example.com"}, {"@id": "e.sane@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#NeuroImage", "@type": "PublicationEvent", "name": "NeuroImage"}, "isPartOf": {"@id": "#issue(1)", "@type": "PublicationIssue", "issue_number": 1, "isPartOf": {"@id": "#volume(60)", "@type": "PublicationVolume", "volumeNumber": 60}}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#a.ugorsan@example.com", "@type": "Person", "email": "a.ugorsan@example.com", "name": "Dr. Apirsan Ugorsan", "givenName": "Apirsan", "familyName": "Ugorsan", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#e.ekos@example.com", "@type": "Person", "email": "e.ekos@example.com", "name": "Esulsana Ekos", "givenName": "Esulsana", "familyName": "Ekos"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}]}]}} +{"type": "dataset", "root_dataset_id": "4da8b48e-dc76-11ea-964e-7cdd908c7490", "root_dataset_version": "8219d0af✂SHA1", "dataset_path": "study-107", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090457.7120416, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Mueller13_frontiers", "keywords": ["study"], "accountablePerson": "m.apalsul@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#4da8b48e-dc76-11ea-964e-7cdd908c7490", "@type": "Dataset", "version": "8219d0af✂SHA1", "name": "Dataset_upirmale_57", "url": "https://example.com/users/upirmale/dataset_57", "author": [{"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "functional Dysregulated characterization in connectivity depression: parietal and activity schizophrenia", "datePublished": 2159, "sameAs": "10.100/99.abc-58", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "e.malu@example.com"}, {"@id": "m.asan@example.com"}, {"@id": "m.meli@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Front Hum Neurosci", "@type": "PublicationEvent", "name": "Front Hum Neurosci"}, "isPartOf": {"@id": "#issue(268)", "@type": "PublicationIssue", "issue_number": 268, "isPartOf": {"@id": "#volume(7)", "@type": "PublicationVolume", "volumeNumber": 7}}, "pagination": "71-98"}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#a.ugorsan@example.com", "@type": "Person", "email": "a.ugorsan@example.com", "name": "Dr. Apirsan Ugorsan", "givenName": "Apirsan", "familyName": "Ugorsan", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#s.omelgorladi@example.com", "@type": "Person", "email": "s.omelgorladi@example.com", "name": "Dr. phil. Sansul Omelgorladi", "givenName": "Sansul", "familyName": "Omelgorladi", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#k.umalpalo@example.com", "@type": "Person", "email": "k.umalpalo@example.com", "name": "Kosselo Umalpalo", "givenName": "Kosselo", "familyName": "Umalpalo"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}]}]}} +{"type": "dataset", "root_dataset_id": "4e6738a0-dc76-11ea-94dc-7cdd908c7490", "root_dataset_version": "43391d89✂SHA1", "dataset_path": "study-106", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090457.6966271, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Mueller14_audiovisualdepression", "keywords": ["study"], "accountablePerson": "m.apalsul@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#4e6738a0-dc76-11ea-94dc-7cdd908c7490", "@type": "Dataset", "version": "43391d89✂SHA1", "name": "Dataset_upirmale_60", "url": "https://example.com/users/upirmale/dataset_60", "author": [{"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "Crossmodal in major", "datePublished": 2162, "sameAs": "10.100/99.abc-61", "pagination": "476-500", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "e.malu@example.com"}, {"@id": "o.mal@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Soc Cogn Affect Neurosci", "@type": "PublicationEvent", "name": "Soc Cogn Affect Neurosci"}, "isPartOf": {"@id": "#issue(6)", "@type": "PublicationIssue", "issue_number": 6, "isPartOf": {"@id": "#volume(9)", "@type": "PublicationVolume", "volumeNumber": 9}}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#a.ugorsan@example.com", "@type": "Person", "email": "a.ugorsan@example.com", "name": "Dr. Apirsan Ugorsan", "givenName": "Apirsan", "familyName": "Ugorsan", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#a.gose@example.com", "@type": "Person", "email": "a.gose@example.com", "name": "Asulmolsana Gose", "givenName": "Asulmolsana", "familyName": "Gose"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}]}]}} +{"type": "dataset", "root_dataset_id": "4f03a794-dc76-11ea-994b-7cdd908c7490", "root_dataset_version": "afdc3973✂SHA1", "dataset_path": "study-104", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090457.6748545, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Camilleri_Multistate_Collaborations", "keywords": ["study"], "accountablePerson": "g.pirpirludu@example.com", "contributor": [{"@id": "o.omorpallud@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#4f03a794-dc76-11ea-994b-7cdd908c7490", "@type": "Dataset", "version": "afdc3973✂SHA1", "name": "Dataset_omorpallud_63", "url": "https://example.com/users/omorpallud/dataset_63", "author": [{"@id": "o.omorpallud@example.com"}, {"@id": "s.omelpire@example.com"}], "description": ""}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#g.pirpirludu@example.com", "@type": "Person", "email": "g.pirpirludu@example.com", "name": "Goso Pirpirludu", "givenName": "Goso", "familyName": "Pirpirludu"}, {"@id": "https://schema.datalad.org/person#u.pulpula@example.com", "@type": "Person", "email": "u.pulpula@example.com", "name": "Upir Pulpula", "givenName": "Upir", "familyName": "Pulpula"}]}]}} +{"type": "dataset", "root_dataset_id": "4fb7be64-dc76-11ea-ad07-7cdd908c7490", "root_dataset_version": "f801161e✂SHA1", "dataset_path": "study-103", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090457.6666787, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "OHBM15", "keywords": ["OHBM 2015"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#4fb7be64-dc76-11ea-ad07-7cdd908c7490", "@type": "Dataset", "version": "f801161e✂SHA1", "name": "Dataset_omodpirgos_64", "url": "https://example.com/users/omodpirgos/dataset_64", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}]}]}} +{"type": "dataset", "root_dataset_id": "506ce096-dc76-11ea-95f0-7cdd908c7490", "root_dataset_version": "15f405a8✂SHA1", "dataset_path": "study-102", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090457.6932034, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "OHBM_2019", "keywords": ["OHBM 2019"], "accountablePerson": "m.apalsul@example.com", "contributor": [{"@id": "e.omodpirgos@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#506ce096-dc76-11ea-95f0-7cdd908c7490", "@type": "Dataset", "version": "15f405a8✂SHA1", "name": "Dataset_omodpirgos_65", "url": "https://example.com/users/omodpirgos/dataset_65", "author": [{"@id": "e.omodpirgos@example.com"}, {"@id": "i.upirmale@example.com"}], "description": ""}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#m.apalsul@example.com", "@type": "Person", "email": "m.apalsul@example.com", "name": "Dr. Malmelu Apalsul", "givenName": "Malmelu", "familyName": "Apalsul", "honorificSuffix": "Dr."}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}]}]}} +{"type": "dataset", "root_dataset_id": "5146e8d6-dc76-11ea-a2da-7cdd908c7490", "root_dataset_version": "c0b548cd✂SHA1", "dataset_path": "study-101", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090457.6865904, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Camilleri15_MultiModal", "keywords": ["study"], "accountablePerson": "g.pirpirludu@example.com"}, {"@id": "https://schema.datalad.org/datalad_dataset#5146e8d6-dc76-11ea-a2da-7cdd908c7490", "@type": "Dataset", "version": "c0b548cd✂SHA1", "name": "Dataset_omorpallud_66", "url": "https://example.com/users/omorpallud/dataset_66", "author": [{"@id": "o.omorpallud@example.com"}, {"@id": "s.omelpire@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "trail of of motor speed performance Multi-modal the correlates making imaging", "datePublished": 2168, "accountablePerson": "u.pulpula@example.com", "sameAs": "10.100/99.abc-67", "author": [{"@id": "o.omorpallud@example.com"}, {"@id": "l.imel@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "i.gorsel@example.com"}, {"@id": "e.pal@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Frontiers in neurology", "@type": "PublicationEvent", "name": "Frontiers in neurology"}, "description": "e.kospulsulu@example.com", "isPartOf": {"@id": "#issue(219)", "@type": "PublicationIssue", "issue_number": 219, "isPartOf": {"@id": "#volume(6)", "@type": "PublicationVolume", "volumeNumber": 6}}, "pagination": "1446-1454"}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#g.pirpirludu@example.com", "@type": "Person", "email": "g.pirpirludu@example.com", "name": "Goso Pirpirludu", "givenName": "Goso", "familyName": "Pirpirludu"}, {"@id": "https://schema.datalad.org/person#u.pulpula@example.com", "@type": "Person", "email": "u.pulpula@example.com", "name": "Upir Pulpula", "givenName": "Upir", "familyName": "Pulpula"}, {"@id": "https://schema.datalad.org/person#i.ugos@example.com", "@type": "Person", "email": "i.ugos@example.com", "name": "Imad Ugos", "givenName": "Imad", "familyName": "Ugos"}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#e.mori@example.com", "@type": "Person", "email": "e.mori@example.com", "name": "Dr. phil. Epuli Mori", "givenName": "Epuli", "familyName": "Mori", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#a.osel@example.com", "@type": "Person", "email": "a.osel@example.com", "name": "Dr. phil. Amellade Osel", "givenName": "Amellade", "familyName": "Osel", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}]}]}} +{"type": "dataset", "root_dataset_id": "52142b84-dc76-11ea-98c5-7cdd908c7490", "root_dataset_version": "244a8ad4✂SHA1", "dataset_path": "study-100", "dataset_id": "84e51a9a-dc8b-11ea-ae66-7cdd908c7490", "dataset_version": "b3f02438✂SHA1", "extraction_time": 1675090457.6464868, "agent_name": "Mad Isanpire", "agent_email": "m.isanpire@example.com", "extractor_name": "metalad_studyminimeta", "extractor_version": "0.1", "extraction_parameter": {}, "extracted_metadata": {"@context": {"@vocab": "http://schema.org/"}, "@graph": [{"@id": "#study", "@type": "CreativeWork", "name": "Camilleri18_eMDN", "keywords": ["neural correlates"], "accountablePerson": "g.pirpirludu@example.com", "contributor": [{"@id": "o.omorpallud@example.com"}]}, {"@id": "https://schema.datalad.org/datalad_dataset#52142b84-dc76-11ea-98c5-7cdd908c7490", "@type": "Dataset", "version": "244a8ad4✂SHA1", "name": "Dataset_omorpallud_69", "url": "https://example.com/users/omorpallud/dataset_69", "author": [{"@id": "o.omorpallud@example.com"}], "description": ""}, {"@id": "#publicationList", "@list": [{"@id": "#publication[0]", "@type": "ScholarlyArticle", "headline": "multiple-demand Definition extended network and", "datePublished": 2171, "sameAs": "10.100/99.abc-70", "pagination": "1549-1564", "author": [{"@id": "o.omorpallud@example.com"}, {"@id": "e.omodpirgos@example.com"}, {"@id": "m.meli@example.com"}, {"@id": "m.asan@example.com"}, {"@id": "m.kolkospale@example.com"}, {"@id": "m.emodgos@example.com"}, {"@id": "s.ladsela@example.com"}], "publication": {"@id": "https://schema.datalad.org/publication_event#Neuroimage", "@type": "PublicationEvent", "name": "Neuroimage"}, "isPartOf": {"@id": "#volume(165)", "@type": "PublicationVolume", "volumeNumber": 165}}]}, {"@id": "#personList", "@list": [{"@id": "https://schema.datalad.org/person#u.pulpula@example.com", "@type": "Person", "email": "u.pulpula@example.com", "name": "Upir Pulpula", "givenName": "Upir", "familyName": "Pulpula"}, {"@id": "https://schema.datalad.org/person#i.selkolu@example.com", "@type": "Person", "email": "i.selkolu@example.com", "name": "Ipalmad Selkolu", "givenName": "Ipalmad", "familyName": "Selkolu"}, {"@id": "https://schema.datalad.org/person#k.umalpalo@example.com", "@type": "Person", "email": "k.umalpalo@example.com", "name": "Kosselo Umalpalo", "givenName": "Kosselo", "familyName": "Umalpalo"}, {"@id": "https://schema.datalad.org/person#s.omelgorladi@example.com", "@type": "Person", "email": "s.omelgorladi@example.com", "name": "Dr. phil. Sansul Omelgorladi", "givenName": "Sansul", "familyName": "Omelgorladi", "honorificSuffix": "Dr. phil."}, {"@id": "https://schema.datalad.org/person#i.mora@example.com", "@type": "Person", "email": "i.mora@example.com", "name": "Imolpir Mora", "givenName": "Imolpir", "familyName": "Mora"}, {"@id": "https://schema.datalad.org/person#m.imolsel@example.com", "@type": "Person", "email": "m.imolsel@example.com", "name": "Melmodmad Imolsel", "givenName": "Melmodmad", "familyName": "Imolsel"}, {"@id": "https://schema.datalad.org/person#e.irigludkolo@example.com", "@type": "Person", "email": "e.irigludkolo@example.com", "name": "Epalmollud Irigludkolo", "givenName": "Epalmollud", "familyName": "Irigludkolo"}, {"@id": "https://schema.datalad.org/person#g.pirpirludu@example.com", "@type": "Person", "email": "g.pirpirludu@example.com", "name": "Goso Pirpirludu", "givenName": "Goso", "familyName": "Pirpirludu"}]}]}} diff --git a/docs/beyond_basics/_examples/DL-101-182-101 b/docs/beyond_basics/_examples/DL-101-182-101 index 64d5d09a9..d05c404dd 100644 --- a/docs/beyond_basics/_examples/DL-101-182-101 +++ b/docs/beyond_basics/_examples/DL-101-182-101 @@ -1,18 +1,17 @@ $ datalad catalog --help -Usage: datalad catalog [-h] [-c CATALOG_DIR] [-m METADATA] [-i DATASET_ID] - [-v DATASET_VERSION] [-f] [-y CONFIG_FILE] - [-d DATASET_PATH] [-s SUBDATASET_PATH] [--version] - {create|add|remove|serve|set-super|validate|workflow-new|workflow-update} +Usage: datalad catalog [-h] [--version] Generate a user-friendly web-based data catalog from structured metadata. -The ``datalad catalog`` command can be used to ``create`` a new -catalog, ``add`` and ``remove`` metadata entries to/from an -existing catalog, or start a a local http server to ``serve`` an -existing catalog locally. It can also ``validate`` a metadata -entry (validation is also performed implicitly when adding) and -set the dataset to be shown by default (``set-super``). +``datalad catalog`` can be used to ``-create`` a new catalog, +``-add`` and ``-remove`` metadata entries to/from an existing catalog, +start a local http server to ``-serve`` an existing catalog locally. +It can also ``-validate`` a metadata entry (validation is also +performed implicitly when adding), ``-set`` dataset properties +such as the ``home`` page to be shown by default, and ``-get`` +dataset properties such as the ``config``, specific ``metadata``, +or the ``home`` page. Metadata can be provided to DataLad Catalog from any number of arbitrary metadata sources, as an aggregated set or as individual @@ -32,92 +31,69 @@ choice as a static webpage. Note: in the catalog website, each dataset entry is displayed under ``
/#/dataset//``. By default, the main page of the catalog will display a 404 error, -unless the default dataset is configured with ``datalad catalog -set-super``. +unless the default dataset is configured with ``datalad catalog-set +home``. *Examples* -Create a new catalog from scratch:: +CREATE a new catalog from scratch:: - % datalad catalog create -c /tmp/my-cat + % datalad catalog-create -c /tmp/my-cat -Add metadata to an existing catalog:: +ADD metadata to an existing catalog:: - % datalad catalog add -c /tmp/my-cat -m path/to/metadata.jsonl + % datalad catalog-add -c /tmp/my-cat -m path/to/metadata.jsonl -Set the superdataset of an existing catalog - the first dataset -displayed when navigating to the root URL of the catalog:: +SET a property of an existing catalog, such as the home page of an +existing catalog - i.e. the first dataset displayed when navigating to +the root URL of the catalog:: - % datalad catalog set-super -c /tmp/my-cat -i abcd -v 1234 + % datalad catalog-set -c /tmp/my-cat -i abcd -v 1234 home -Serve the content of the catalog via a local HTTP server at -http://localhost:8000:: +SERVE the content of the catalog via a local HTTP server at +http://localhost:8001:: - % datalad catalog serve -c /tmp/my-cat + % datalad catalog-serve -c /tmp/my-cat -p 8001 -Check if metadata conforms to catalog schema without adding it to the +VALIDATE metadata against a catalog schema without adding it to the catalog:: - % datalad catalog validate -m path/to/metadata.jsonl + % datalad catalog-validate -c /tmp/my-cat/-m path/to/metadata.jsonl' -Run a workflow for recursive metadata extraction (using datalad- -metalad), translating metadata to the catalog schema (using JQ -bindings), and adding the translated metadata to a new catalog.:: +GET a property of an existing catalog, such as the catalog +configuration:: - % datalad catalog workflow-new -c /tmp/my-cat -d 'path/to/superdataset' + % datalad catalog-get -c /tmp/my-cat/ config -Run a workflow for updating a catalog after registering a subdataset +REMOVE a specific metadata record from an existing catalog:: + + % datalad catalog-remove -c /tmp/my-cat -i efgh -v 5678 + +TRANSLATE a metalad-extracted metadata item from a particular source +structure into the catalog schema. A dedicated translator should be +provided and exposed as an entry point (e.g. via a DataLad extension) +as part of the 'datalad.metadata.translators' group.:: + + % datalad catalog-translate -c /tmp/my-cat -m path/to/metadata.jsonl + +RUN A WORKFLOW for recursive metadata extraction (using datalad- +metalad), translating metadata to the catalog schema, and adding the +translated metadata to a new catalog:: + + % datalad catalog-workflow -t new -c /tmp/my-cat -d path/to/superdataset -e metalad_core + +RUN A WORKFLOW for updating a catalog after registering a subdataset to the superdataset which the catalog represents. This workflow includes extraction (using datalad-metalad), translating metadata to -the catalog schema (using JQ bindings), and adding the translated -metadata to the existing catalog.:: - - % datalad catalog workflow-update -c /tmp/my-cat -d 'path/to/superdataset' -s 'path/to/subdataset' +the catalog schema, and adding the translated metadata to the existing +catalog.:: -positional arguments: - {create|add|remove|serve|set-super|validate|workflow-new|workflow-update} - This is the subcommand to be executed by datalad- - catalog. Options include: create, add, remove, serve, - set-super, validate, workflow-new, and workflow- - update. Example: ''. Constraints: value must be one of - ('create', 'add', 'remove', 'serve', 'set-super', - 'validate', 'workflow-new', 'workflow-update') + % datalad catalog-workflow -t new -c /tmp/my-cat -d path/to/superdataset -s path/to/subdataset -e metalad_core optional arguments: -h, --help, --help-np show this help message. --help-np forcefully disables the use of a pager for displaying the help message - -c CATALOG_DIR, --catalog-dir CATALOG_DIR - Directory where the catalog is located or will be - created. Example: ''. - -m METADATA, --metadata METADATA - Path to input metadata. Multiple input types are - possible: - A '.json' file containing an array of JSON - objects related to a single datalad dataset. - A - stream of JSON objects/lines Example: ''. - -i DATASET_ID, --dataset-id DATASET_ID - Example: ''. - -v DATASET_VERSION, --dataset-version DATASET_VERSION - Example: ''. - -f, --force If content for the user interface already exists in - the catalog directory, force this content to be - overwritten. Content overwritten with this flag - include the 'artwork' and 'assets' directories and the - 'index.html' and 'config.json' files. Content in the - 'metadata' directory remain untouched. Example: ''. - -y CONFIG_FILE, --config-file CONFIG_FILE - Path to config file in YAML or JSON format. Default - config is read from datalad_catalog/config/config.json - Example: ''. - -d DATASET_PATH, --dataset-path DATASET_PATH - Path to dataset on which to run an extraction, - translation and catalog generation workflow. Example: - ''. - -s SUBDATASET_PATH, --subdataset-path SUBDATASET_PATH - Path to dataset on which to run an extraction, - translation and catalog generation workflow. Used - together with '-d', '--dataset-path' when running - 'workflow-update'. Example: ''. --version show the module and its version which provides the command diff --git a/docs/beyond_basics/_examples/DL-101-182-102 b/docs/beyond_basics/_examples/DL-101-182-102 index 216243d06..7d7bb5ec2 100644 --- a/docs/beyond_basics/_examples/DL-101-182-102 +++ b/docs/beyond_basics/_examples/DL-101-182-102 @@ -1,2 +1,2 @@ -$ datalad catalog create --catalog-dir data-cat +$ datalad catalog-create --catalog data-cat catalog_create(ok): data-cat [Catalog successfully created at: data-cat] diff --git a/docs/beyond_basics/_examples/DL-101-182-103 b/docs/beyond_basics/_examples/DL-101-182-103 index a8ab1ae83..85273030e 100644 --- a/docs/beyond_basics/_examples/DL-101-182-103 +++ b/docs/beyond_basics/_examples/DL-101-182-103 @@ -1,11 +1,12 @@ $ tree -L 1 data-cat data-cat +├── README.md ├── artwork ├── assets ├── config.json ├── index.html ├── metadata -├── README.md +├── schema └── templates -4 directories, 3 files +5 directories, 3 files diff --git a/docs/beyond_basics/_examples/DL-101-182-104 b/docs/beyond_basics/_examples/DL-101-182-104 index e5696e94b..8473c35f1 100644 --- a/docs/beyond_basics/_examples/DL-101-182-104 +++ b/docs/beyond_basics/_examples/DL-101-182-104 @@ -1,4 +1,4 @@ $ touch toy_metadata.jsonl -$ echo '{ "type": "dataset", "dataset_id": "5df8eb3a-95c5-11ea-b4b9-a0369f287950", "dataset_version": "dae38cf901995aace0dde5346515a0134f919523", "name": "My toy dataset", "short_name": "My toy dataset", "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus nec justo tellus. Nunc sagittis eleifend magna, eu blandit arcu tincidunt eu. Mauris pharetra justo nec volutpat euismod. Curabitur bibendum vitae nunc a pharetra. Donec non rhoncus risus, ac consequat purus. Pellentesque ultricies ut enim non luctus. Sed viverra dolor enim, sed blandit lorem interdum sit amet. Aenean tincidunt et dolor sit amet tincidunt. Vivamus in sollicitudin ligula. Curabitur volutpat sapien erat, eget consectetur mauris dapibus a. Phasellus fringilla justo ligula, et fringilla tortor ullamcorper id. Praesent tristique lacus purus, eu convallis quam vestibulum eget. Donec ullamcorper mi neque, vel tincidunt augue porttitor vel.", "doi": "", "url": "https://github.com/jsheunis/multi-echo-super", "license": { "name": "CC BY 4.0", "url": "https://creativecommons.org/licenses/by/4.0/" }, "authors": [ { "givenName": "Stephan", "familyName": "Heunis"} ], "keywords": [ "lorum", "ipsum", "foxes" ], "funding": [ { "name": "Stephans Bank Account", "identifier": "No. 42", "description": "Nothing to see here" } ], "extractors_used": [ { "extractor_name": "stephan_manual", "extractor_version": "1", "extraction_parameter": {}, "extraction_time": 1652340647.0, "agent_name": "Stephan Heunis", "agent_email": "" } ] }' >> toy_metadata.jsonl -$ echo '{ "type": "file", "dataset_id": "5df8eb3a-95c5-11ea-b4b9-a0369f287950", "dataset_version": "dae38cf901995aace0dde5346515a0134f919523", "contentbytesize": 1403, "path": "README", "extractors_used": [ { "extractor_name": "stephan_manual", "extractor_version": "1", "extraction_parameter": {}, "extraction_time": 1652340647.0, "agent_name": "Stephan Heunis", "agent_email": "" } ] }' >> toy_metadata.jsonl -$ echo '{ "type": "file", "dataset_id": "5df8eb3a-95c5-11ea-b4b9-a0369f287950", "dataset_version": "dae38cf901995aace0dde5346515a0134f919523", "contentbytesize": 15572, "path": "main_data/main_results.png", "extractors_used": [ { "extractor_name": "stephan_manual", "extractor_version": "1", "extraction_parameter": {}, "extraction_time": 1652340647.0, "agent_name": "Stephan Heunis", "agent_email": "" } ] }' >> toy_metadata.jsonl +$ echo '{ "type": "dataset", "dataset_id": "5df8eb3a-95c5-11ea-b4b9-a0369f287950", "dataset_version": "dae38cf901995aace0dde5346515a0134f919523", "name": "My toy dataset", "short_name": "My toy dataset", "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus nec justo tellus. Nunc sagittis eleifend magna, eu blandit arcu tincidunt eu. Mauris pharetra justo nec volutpat euismod. Curabitur bibendum vitae nunc a pharetra. Donec non rhoncus risus, ac consequat purus. Pellentesque ultricies ut enim non luctus. Sed viverra dolor enim, sed blandit lorem interdum sit amet. Aenean tincidunt et dolor sit amet tincidunt. Vivamus in sollicitudin ligula. Curabitur volutpat sapien erat, eget consectetur mauris dapibus a. Phasellus fringilla justo ligula, et fringilla tortor ullamcorper id. Praesent tristique lacus purus, eu convallis quam vestibulum eget. Donec ullamcorper mi neque, vel tincidunt augue porttitor vel.", "doi": "", "url": "https://github.com/jsheunis/multi-echo-super", "license": { "name": "CC BY 4.0", "url": "https://creativecommons.org/licenses/by/4.0/" }, "authors": [ { "givenName": "Stephan", "familyName": "Heunis"} ], "keywords": [ "lorum", "ipsum", "foxes" ], "funding": [ { "name": "Stephans Bank Account", "identifier": "No. 42", "description": "Nothing to see here" } ], "metadata_sources": { "key_source_map": {}, "sources": [ { "source_name": "stephan_manual", "source_version": "1", "source_parameter": {}, "source_time": 1652340647.0, "agent_name": "Stephan Heunis", "agent_email": "" } ] } }' >> toy_metadata.jsonl +$ echo '{ "type": "file", "dataset_id": "5df8eb3a-95c5-11ea-b4b9-a0369f287950", "dataset_version": "dae38cf901995aace0dde5346515a0134f919523", "contentbytesize": 1403, "path": "README", "metadata_sources": { "key_source_map": {}, "sources": [ { "source_name": "stephan_manual", "source_version": "1", "source_parameter": {}, "source_time": 1652340647.0, "agent_name": "Stephan Heunis", "agent_email": "" } ] } }' >> toy_metadata.jsonl +$ echo '{ "type": "file", "dataset_id": "5df8eb3a-95c5-11ea-b4b9-a0369f287950", "dataset_version": "dae38cf901995aace0dde5346515a0134f919523", "contentbytesize": 15572, "path": "main_data/main_results.png", "metadata_sources": { "key_source_map": {}, "sources": [ { "source_name": "stephan_manual", "source_version": "1", "source_parameter": {}, "source_time": 1652340647.0, "agent_name": "Stephan Heunis", "agent_email": "" } ] } }' >> toy_metadata.jsonl diff --git a/docs/beyond_basics/_examples/DL-101-182-105 b/docs/beyond_basics/_examples/DL-101-182-105 index c2c55c668..d016d195a 100644 --- a/docs/beyond_basics/_examples/DL-101-182-105 +++ b/docs/beyond_basics/_examples/DL-101-182-105 @@ -1,4 +1,6 @@ -$ datalad catalog validate --metadata toy_metadata.jsonl -[INFO] Validating metadata -[INFO] Validation completed -catalog_validate(ok): toy_metadata.jsonl [Metadata successfully validated] +$ datalad catalog-validate --metadata toy_metadata.jsonl +catalog_validate(ok): /private/tmp/me/catalog +catalog_validate(ok): /private/tmp/me/catalog +catalog_validate(ok): /private/tmp/me/catalog +action summary: + catalog_validate (ok: 3) diff --git a/docs/beyond_basics/_examples/DL-101-182-106 b/docs/beyond_basics/_examples/DL-101-182-106 index 258d5fa41..9947e599a 100644 --- a/docs/beyond_basics/_examples/DL-101-182-106 +++ b/docs/beyond_basics/_examples/DL-101-182-106 @@ -1,2 +1,6 @@ -$ datalad catalog add --catalog-dir data-cat --metadata toy_metadata.jsonl -catalog_add(ok): data-cat [Metadata items successfully added to catalog] +$ datalad catalog-add --catalog data-cat --metadata toy_metadata.jsonl +catalog_add(ok): data-cat [Metadata record successfully added to catalog (dataset: dataset_id=5df8eb3a-95c5-11ea-b4b9-a0369f287950, dataset_version=dae38cf9✂SHA1)] +catalog_add(ok): data-cat [Metadata record successfully updated in catalog (filetree of dataset: dataset_id=5df8eb3a-95c5-11ea-b4b9-a0369f287950, dataset_version=dae38cf9✂SHA1)] +catalog_add(ok): data-cat [Metadata record successfully updated in catalog (filetree of dataset: dataset_id=5df8eb3a-95c5-11ea-b4b9-a0369f287950, dataset_version=dae38cf9✂SHA1)] +action summary: + catalog_add (ok: 3) diff --git a/docs/beyond_basics/_examples/DL-101-182-107 b/docs/beyond_basics/_examples/DL-101-182-107 index 2e739d1a9..7b5b7b523 100644 --- a/docs/beyond_basics/_examples/DL-101-182-107 +++ b/docs/beyond_basics/_examples/DL-101-182-107 @@ -1,7 +1,7 @@ $ tree data-cat/metadata data-cat/metadata └── 5df8eb3a-95c5-11ea-b4b9-a0369f287950 - └── dae38cf901995aace0dde5346515a0134f919523 + └── dae38cf9✂SHA1 ├── 449 │   └── 268b13a1c869555f6c2f6e66d3923.json └── 578 diff --git a/docs/beyond_basics/_examples/DL-101-182-108 b/docs/beyond_basics/_examples/DL-101-182-108 index 9d777323a..167c2a11c 100644 --- a/docs/beyond_basics/_examples/DL-101-182-108 +++ b/docs/beyond_basics/_examples/DL-101-182-108 @@ -3,24 +3,27 @@ $ cat data-cat/metadata/5df8eb3a-95c5-11ea-b4b9-a0369f287950/dae38cf901995aace0d { "type": "dataset", "dataset_id": "5df8eb3a-95c5-11ea-b4b9-a0369f287950", - "dataset_version": "dae38cf901995aace0dde5346515a0134f919523", + "dataset_version": "dae38cf9✂SHA1", "children": [ { "type": "file", "dataset_id": "5df8eb3a-95c5-11ea-b4b9-a0369f287950", - "dataset_version": "dae38cf901995aace0dde5346515a0134f919523", + "dataset_version": "dae38cf9✂SHA1", "contentbytesize": 1403, "path": "README", - "extractors_used": [ - { - "extractor_name": "stephan_manual", - "extractor_version": "1", - "extraction_parameter": {}, - "extraction_time": 1652340647, - "agent_name": "Stephan Heunis", - "agent_email": "" - } - ], + "metadata_sources": { + "key_source_map": {}, + "sources": [ + { + "source_name": "stephan_manual", + "source_version": "1", + "source_parameter": {}, + "source_time": 1652340647, + "agent_name": "Stephan Heunis", + "agent_email": "" + } + ] + }, "name": "README" }, { @@ -28,17 +31,44 @@ $ cat data-cat/metadata/5df8eb3a-95c5-11ea-b4b9-a0369f287950/dae38cf901995aace0d "name": "main_data", "path": "main_data", "dataset_id": "5df8eb3a-95c5-11ea-b4b9-a0369f287950", - "dataset_version": "dae38cf901995aace0dde5346515a0134f919523" + "dataset_version": "dae38cf9✂SHA1" } ], - "name": "My toy dataset", + "metadata_sources": { + "key_source_map": { + "short_name": [ + "stephan_manual" + ], + "url": [ + "stephan_manual" + ], + "license": [ + "stephan_manual" + ], + "authors": [ + "stephan_manual" + ], + "keywords": [ + "stephan_manual" + ], + "funding": [ + "stephan_manual" + ] + }, + "sources": [ + { + "source_name": "stephan_manual", + "source_version": "1", + "source_parameter": {}, + "source_time": 1652340647, + "agent_name": "Stephan Heunis", + "agent_email": "" + } + ] + }, + "name": null, "short_name": "My toy dataset", - "description": [ - { - "source": "stephan_manual", - "content": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus nec justo tellus. Nunc sagittis eleifend magna, eu blandit arcu tincidunt eu. Mauris pharetra justo nec volutpat euismod. Curabitur bibendum vitae nunc a pharetra. Donec non rhoncus risus, ac consequat purus. Pellentesque ultricies ut enim non luctus. Sed viverra dolor enim, sed blandit lorem interdum sit amet. Aenean tincidunt et dolor sit amet tincidunt. Vivamus in sollicitudin ligula. Curabitur volutpat sapien erat, eget consectetur mauris dapibus a. Phasellus fringilla justo ligula, et fringilla tortor ullamcorper id. Praesent tristique lacus purus, eu convallis quam vestibulum eget. Donec ullamcorper mi neque, vel tincidunt augue porttitor vel." - } - ], + "description": null, "url": "https://github.com/jsheunis/multi-echo-super", "license": { "name": "CC BY 4.0", @@ -61,39 +91,32 @@ $ cat data-cat/metadata/5df8eb3a-95c5-11ea-b4b9-a0369f287950/dae38cf901995aace0d "identifier": "No. 42", "description": "Nothing to see here" } - ], - "extractors_used": [ - { - "extractor_name": "stephan_manual", - "extractor_version": "1", - "extraction_parameter": {}, - "extraction_time": 1652340647, - "agent_name": "Stephan Heunis", - "agent_email": "" - } ] } { "type": "directory", "dataset_id": "5df8eb3a-95c5-11ea-b4b9-a0369f287950", - "dataset_version": "dae38cf901995aace0dde5346515a0134f919523", + "dataset_version": "dae38cf9✂SHA1", "children": [ { "type": "file", "dataset_id": "5df8eb3a-95c5-11ea-b4b9-a0369f287950", - "dataset_version": "dae38cf901995aace0dde5346515a0134f919523", + "dataset_version": "dae38cf9✂SHA1", "contentbytesize": 15572, "path": "main_data/main_results.png", - "extractors_used": [ - { - "extractor_name": "stephan_manual", - "extractor_version": "1", - "extraction_parameter": {}, - "extraction_time": 1652340647, - "agent_name": "Stephan Heunis", - "agent_email": "" - } - ], + "metadata_sources": { + "key_source_map": {}, + "sources": [ + { + "source_name": "stephan_manual", + "source_version": "1", + "source_parameter": {}, + "source_time": 1652340647, + "agent_name": "Stephan Heunis", + "agent_email": "" + } + ] + }, "name": "main_results.png" } ], diff --git a/docs/beyond_basics/_examples/DL-101-182-109 b/docs/beyond_basics/_examples/DL-101-182-109 index 7706b341c..dae6e4767 100644 --- a/docs/beyond_basics/_examples/DL-101-182-109 +++ b/docs/beyond_basics/_examples/DL-101-182-109 @@ -1,2 +1,2 @@ -$ datalad catalog set-super --catalog-dir data-cat --dataset-id 5df8eb3a-95c5-11ea-b4b9-a0369f287950 --dataset-version dae38cf901995aace0dde5346515a0134f919523 -catalog_set_super(ok): /home/me/catalog [Superdataset successfully set for catalog] +$ datalad catalog-set --catalog data-cat --dataset-id 5df8eb3a-95c5-11ea-b4b9-a0369f287950 --dataset-version dae38cf901995aace0dde5346515a0134f919523 home +catalog_set(ok): data-cat [Home page successfully set to: dataset_id=5df8eb3a-95c5-11ea-b4b9-a0369f287950, dataset_version=dae38cf9✂SHA1.] diff --git a/docs/beyond_basics/_examples/DL-101-182-110 b/docs/beyond_basics/_examples/DL-101-182-110 index 119c9400d..6258fd35b 100644 --- a/docs/beyond_basics/_examples/DL-101-182-110 +++ b/docs/beyond_basics/_examples/DL-101-182-110 @@ -1,5 +1,5 @@ $ cat data-cat/metadata/super.json | jq . { "dataset_id": "5df8eb3a-95c5-11ea-b4b9-a0369f287950", - "dataset_version": "dae38cf901995aace0dde5346515a0134f919523" + "dataset_version": "dae38cf9✂SHA1" } diff --git a/docs/beyond_basics/_examples/DL-101-182-111 b/docs/beyond_basics/_examples/DL-101-182-111 index df4006c8a..8cb866273 100644 --- a/docs/beyond_basics/_examples/DL-101-182-111 +++ b/docs/beyond_basics/_examples/DL-101-182-111 @@ -4,30 +4,81 @@ $ cat data-cat/config.json | jq . "logo_path": "", "link_color": "#fba304", "link_hover_color": "#af7714", - "property_source": { + "social_links": { + "about": null, + "documentation": "https://docs.datalad.org/projects/catalog/en/latest/", + "github": "https://github.com/datalad/datalad-catalog", + "twitter": "https://twitter.com/datalad" + }, + "dataset_options": { + "include_metadata_export": true + }, + "property_sources": { "dataset": { - "dataset_id": "metalad_core", - "dataset_version": "metalad_core", - "type": "metalad_core", - "children": "merge", - "name": "metalad_studyminimeta", - "short_name": "", - "description": [ - "metalad_studyminimeta", - "datacite_gin", - "readme.md" - ], - "doi": "", - "url": "merge", - "authors": "merge", - "keywords": "merge", - "license": "", - "funding": "merge", - "publications": "merge", - "subdatasets": "merge", - "extractors_used": "merge", - "additional_display": "merge", - "top_display": "merge" + "dataset_id": { + "rule": "single", + "source": "metalad_core" + }, + "dataset_version": { + "rule": "single", + "source": "metalad_core" + }, + "type": { + "rule": "single", + "source": "metalad_core" + }, + "children": { + "rule": "merge", + "source": "any" + }, + "name": { + "rule": "single", + "source": "metalad_studyminimeta" + }, + "short_name": {}, + "description": { + "rule": "priority", + "source": [ + "catalog_readme", + "metalad_studyminimeta", + "datacite_gin", + "bids_dataset" + ] + }, + "doi": {}, + "url": { + "rule": "merge", + "source": "any" + }, + "authors": { + "rule": "merge", + "source": "any" + }, + "keywords": { + "rule": "merge", + "source": "any" + }, + "license": {}, + "funding": { + "rule": "merge", + "source": "any" + }, + "publications": { + "rule": "merge", + "source": "any" + }, + "subdatasets": { + "rule": "merge", + "source": "any" + }, + "additional_display": { + "rule": "merge", + "source": "any" + }, + "top_display": { + "rule": "merge", + "source": "any" + } } } } diff --git a/docs/beyond_basics/_examples/DL-101-182-112 b/docs/beyond_basics/_examples/DL-101-182-112 index 2d228c62c..f3ce4e2a0 100644 --- a/docs/beyond_basics/_examples/DL-101-182-112 +++ b/docs/beyond_basics/_examples/DL-101-182-112 @@ -8,7 +8,7 @@ link_color: "#32A287" # hex color code link_hover_color: "#A9FDAC" # hex color code # Handling multiple metadata sources -property_source: +property_sources: dataset: {} EOT diff --git a/docs/beyond_basics/_examples/DL-101-182-113 b/docs/beyond_basics/_examples/DL-101-182-113 index 30a23e4f0..8e4238274 100644 --- a/docs/beyond_basics/_examples/DL-101-182-113 +++ b/docs/beyond_basics/_examples/DL-101-182-113 @@ -1 +1 @@ -$ wget -q -O datalad_logo_funky.svg https://raw.githubusercontent.com/datalad/tutorials/5e5fc0a4761248e5cedbc491c357d423d14a2b21/notebooks/catalog_tutorials/test_data/datalad_logo_funky.svg +$ wget -q -O datalad_logo_funky.svg https://raw.githubusercontent.com/datalad/tutorials/5e5fc0a4/notebooks/catalog_tutorials/test_data/datalad_logo_funky.svg diff --git a/docs/beyond_basics/_examples/DL-101-182-114 b/docs/beyond_basics/_examples/DL-101-182-114 index b7c189a60..1bbf53809 100644 --- a/docs/beyond_basics/_examples/DL-101-182-114 +++ b/docs/beyond_basics/_examples/DL-101-182-114 @@ -1,7 +1,15 @@ -$ datalad catalog create -c custom-cat -m toy_metadata.jsonl -y cat_config.yml -$ datalad catalog set-super -c custom-cat -i 5df8eb3a-95c5-11ea-b4b9-a0369f287950 -v dae38cf901995aace0dde5346515a0134f919523 +$ datalad catalog-create -c custom-cat -m toy_metadata.jsonl -F cat_config.yml +$ datalad catalog-set -c custom-cat -i 5df8eb3a-95c5-11ea-b4b9-a0369f287950 -v dae38cf901995aace0dde5346515a0134f919523 home catalog_create(ok): custom-cat [Catalog successfully created at: custom-cat] -catalog_create(ok): custom-cat [Metadata items successfully added to catalog] +catalog_add(ok): custom-cat [Metadata record successfully added to catalog (dataset: dataset_id=5df8eb3a-95c5-11ea-b4b9-a0369f287950, dataset_version=dae38cf9✂SHA1)] +catalog_add(ok): custom-cat [Metadata record successfully updated in catalog (filetree of dataset: dataset_id=5df8eb3a-95c5-11ea-b4b9-a0369f287950, dataset_version=dae38cf9✂SHA1)] +catalog_add(ok): custom-cat [Metadata record successfully updated in catalog (filetree of dataset: dataset_id=5df8eb3a-95c5-11ea-b4b9-a0369f287950, dataset_version=dae38cf9✂SHA1)] action summary: - catalog_create (ok: 2) -catalog_set_super(ok): /home/me/catalog [Superdataset successfully set for catalog] + catalog_add (ok: 3) +catalog_add(ok): custom-cat [Metadata record successfully added to catalog (dataset: dataset_id=5df8eb3a-95c5-11ea-b4b9-a0369f287950, dataset_version=dae38cf9✂SHA1)] +catalog_add(ok): custom-cat [Metadata record successfully updated in catalog (filetree of dataset: dataset_id=5df8eb3a-95c5-11ea-b4b9-a0369f287950, dataset_version=dae38cf9✂SHA1)] +catalog_add(ok): custom-cat [Metadata record successfully updated in catalog (filetree of dataset: dataset_id=5df8eb3a-95c5-11ea-b4b9-a0369f287950, dataset_version=dae38cf9✂SHA1)] +action summary: + catalog_add (ok: 3) + catalog_create (ok: 1) +catalog_set(ok): custom-cat [Home page successfully set to: dataset_id=5df8eb3a-95c5-11ea-b4b9-a0369f287950, dataset_version=dae38cf9✂SHA1.] diff --git a/docs/conf.py b/docs/conf.py index 94a33b4b5..a85b801d4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -34,26 +34,35 @@ autorunrecord_line_replace = [ # trailing space removal (r'[ ]+$', ''), + # strip the keydir for MD5(E) or SHA1(E) annex keys + # the keydir is identical to the annex key name, but consumes + # a lot of space. we replace it with a UTF scissors icon + (r'(?P.*)/(?P[MD5SHA1]+[E-]+s[0-9]+--[0-9a-f]{32,40})(?P[^/]*)/(?P=key)(?P=ext)(?P.*)', + r'\g/✂/\g\g\g'), # Python debug output will contain random memory locations - (r'object at 0x[0-9a-f]{12}>', 'object at REDACTED-MEMORYADDRESS'), + (r'object at 0x[0-9a-f]{12}>', 'object at ✂MEMORYADDRESS✂'), # branch state indicators will always be different for git-annex # (branch contains timestamps) - (r'git-annex@[0-9a-f]{7}', 'git-annex@'), + (r'git-annex@[0-9a-f]{7}', 'git-annex@✂GITSHA✂'), (r'refs/heads/git-annex(?P[ ]+)[0-9a-f]{7}\.\.[0-9a-f]{7}', - 'refs/heads/git-annex\gFROM..TO (REDACTED)'), + 'refs/heads/git-annex\g✂FROM✂..✂TO✂'), # ls -l output will have times and user names # normalize to 'elena' and the "standard timestamp" # this only works when ls --time-style=long-iso was used (r'(?P[-ldrwx]{10})[ ]+(?P[^ ]+)[ ]+(?P[^ ]+)[ ]+(?P[^ ]+)[ ]+(?P[^ ]+)[ ]+(?P[^ ]+)[ ]+(?P