The platform design relies on open formats, APIs, and standards to allow for extensibility and promote interoperability. The key design ideas are based on the following constraints and considerations:
The platform should integrate data resources from different infrastructures,
Data and tools should be integrated without undue duplication,
Integration of data and tools in the platform by community members should be feasible,
Datasets and processing tools should implement the FAIR principles,
Data governance should remain with the original data stewards or providers,
The platform should rely on open formats and standards to foster reuse and integration with other projects, and
The portal should provide intuitive navigation and provide users with documentation and help resources.
The CONP consists of several key components (Fig.1, see also Table4):
A data infrastructure layer, incorporating disparate independent data repositories (e.g., Zenodo, http://www.zenodo.org, LORIS7, or the Open-Science Framework OSF5);
A (meta)data integration layer, leveraging DataLad13, GitHub14, Boutiques tool descriptors12, enabling uniform data search queries based on the Data Tags Suite (DATS) model15;
An analysis layer that allows for simple download of tools and easy use of High-Performance Computing (HPC) environments; and
An interface layer, which controls the interaction between these components and will be outlined further in the Results section.
Architecture of the Canadian Open Neuroscience Platform. The platform is comprised of multiple tiers including: (i) Independent data infrastructure; (ii) Metadata integration across tools and datasets via standard models (Biocaddie DATS, Boutiques descriptors); (iii) Data analysis on High-Performance Computing and; (iv) Web and command-line interfaces.
The CONP takes advantage of distributed data repositories, each with their own infrastructures, access control requirements, APIs, and licensing. This importantly gives flexibility to manage collections using specific context-appropriate tools, rather than prescribing an incomplete one-size-fits-all solution. The CONP presently supports accessing and integrating data from several flexible domain-agnostic datastores (OSF, Zenodo, FRDR-DFDR, https://www.frdr-dfdr.ca/), specific brain imaging repositories (LORIS, XNAT, Brain-CODE), and the commonly used HTTP and FTP web protocols. This set of supported infrastructures is intentionally extensible to any other repository which allows access via programmatic web-compatible interfaces (e.g. a RESTful API).
To integrate datasets across infrastructures, the CONP uses DataLad as a backend and GitHub to host the metadata. Crawlers automate both the discovery of tools (on Zenodo, http://www.zenodo.org) and datasets (on Zenodo and OSF) and the DataLad and GitHub integration workflows. CircleCI16 continuously tests if datasets are available and if data are accessible by testing the download of a few files from the datasets.
The CONP adopts a decentralized architecture, to accommodate the various governance, ethical, and performance models required by data owners. For instance, some datasets may not easily be stored outside of the jurisdiction where they were acquired, while some institutions require local control of data storage, with some projects preferring to remain in control of access rules. This is all possible in CONP, as data can remain hosted anywhere on the internet.
Integration between datasets is provided by DataLad, a software library for managing Git repositories that references data. In DataLad, datasets are described in a Git repository containing metadata, file URLs and hashes of data blobs managed by git-annex. Importantly, a DataLad dataset does not generally contain the data themselves, which remain stored remotely. DataLad datasets can also be nested to represent dataset aggregation.
The CONP dataset consists of a main DataLad dataset and its metadata stored on GitHub (github.com/CONP-PCNO/conp-dataset) and referenced in the main DataLad index (http://datasets.datalad.org). The use of GitHub enables a variety of features useful for open-source software development; including issue tracking, code reviews, pull requests, branch protection, and integration with various applications. Datasets are integrated as Git submodules of the main dataset, and may be hosted on GitHub or on any other platform including GitLab or even a simple web server. This has the added benefit of being able to point to a specific commit, allowing continued evolution of the remote subdataset while the CONP portal keeps a reference to the stable version of the root dataset. Any DataLad dataset can be integrated into CONP provided that it contains a README file and a Data Tags Suite (DATS17) model file describing it. In addition, a configuration script can be added to the root of the dataset, to perform any required initialization.
The data themselves can be stored in any server implementing a protocol supported by git-annex, including HTTP, FTP, and many more. We used this flexibility to integrate data coming from three main types of sources. First, brain data archives such as the LORIS7, XNAT18, and Brain-CODE19 platforms provide a complete neuroscience data management solution for data ingestion, quality control, visualization, access control, and querying. They are commonly used to support large-scale multi-site longitudinal studies with hundreds of participants. Second, multi-disciplinary research data archives such as Zenodo in Europe, the Open Science Framework in the USA5, and the Federated Research Data Repository (FRDR)20 in Canada, provide simple ways to share research data publicly through the web and to guarantee long-term archival, findability, and immutability of data objects through Digital Object Identifiers (DOIs). They are typically used for local studies or companion data to a publication. Third, simple internet hosts accessible through the HTTP or FTP protocol allow for flexible integration of any other data already available online. CONP also provides local data-hosting for users who do not have the resources to make use of these other options.
Through git-annex, DataLad also supports authentication protocols, a critical feature for the ethical sharing of neuroscience data with restricted access. We extended this capability to support authentication to the LORIS, Zenodo, and OSF platforms. LORIS uses a common username/password authentication, which could be added to DataLad without particular challenges. Zenodo, however, implements private data sharing through secret tokens added to the file URLs. Since the file URLs are part of the DataLad repository and are therefore publicly shared, we implemented a custom mechanism to add and remove tokens from URLs on demand.
To leverage the capabilities of existing research data archives (currently Zenodo and OSF, and in the future FRDR), we developed a crawling framework to manage the life cycle of DataLad datasets on GitHub. As a result, users can upload datasets to the CONP through these web platforms, without having to install and learn DataLad, or to become familiar with our GitHub workflow. The CONP data crawler performs the following actions, implemented as a base class containing most of the GitHub and DataLad logic, and as a set of derived classes containing the API calls specific to each crawled platform:
Search for CONP-tagged datasets in web platforms;
When a new dataset is found, create a new DataLad dataset;
When a dataset modification is detected, update the corresponding DataLad dataset;
Push modifications to CONP forked GitHub repository;
Create a pull request for each modified dataset, for the CONP maintainers to review and approve.
In addition, if no DATS model is found in the datasets, one is created automatically from the fields available in the web platforms, with minimal information such as title, license and creators.
The CONP includes a dataset testing suite to mitigate the reliability challenges of decentralized systems. We implemented the testing suite in the CircleCI platform, due to its support for multithreaded testing, FTP connections, and interactive SSH sessions in testing environments. Hosting CONP DataLad datasets on GitHub allows for transparent integration with CircleCI. Similar to a software repository, dataset tests are triggered with every GitHub pull request, and their successful execution is required for the pull request to be approved by the maintainers. To reduce execution time, the testing framework only runs the tests for the datasets influenced by the pull request.
Datasets may become unavailable for a variety of transient reasons, including network interruptions, operational downtimes of the hosting platforms, or configuration errors. To detect these issues, we configured CircleCI to periodically test all the datasets available through the CONP every four hours, providing continuous monitoring. Results of this periodical testing are stored in CircleCI artifacts and are automatically displayed as status badges in the CONP portal. To increase robustness against transient errors, we used Pytests flaky module to re-run tests three times upon failure, with a 5-second delay.
The test suite tests the following properties for every dataset:
Presence of a README file at the root of the dataset,
Presence of a DATS model complying with our extended schema,
Successful installation of the dataset with DataLad,
Integrity of the git-annex repository, and
Successful download of the four smallest files from a sample to reduce runtime.
For datasets that require authentication, we include credentials through CircleCI environment variables. To reduce the associated security risks, we configured the testing framework to skip the testing of authenticated datasets in pull requests. From these environment variables, the testing framework generates a DataLad authentication provider (LORIS, Brain-CODE), or configures the dataset to use access credentials (Zenodo). The testing suite is executed in a Docker container also available for download to replicate the testing environment.
As the CONP portal brings together two types of research objects, software tools and datasets, we have reused two metadata standards developed to document these objects. The Boutiques standard12 describes a tools execution, inputs and outputs. We chose the Data Tags Suite (DATS) model17 developed by the BioCaddie consortium (Big Data to Knowledge NIH funds) to build the Datamed (https://datamed.org/) platform, for dataset description. Datamed was designed to be an equivalent of PubMed for datasets21, and DATS follows the architecture of the Journal Article Tag Suite JATS. This choice was driven by the flexible nature of DATS and its associated material (e.g., validator, documentation). DATS also has the capacity to represent sub-datasets, a feature that can be used in association with the DataLad sub-datasets mechanism (implemented with git submodules).
These two standards are used to extract information about the research objects to be displayed in the portal, as well as provide the necessary JSON-LD information for making the datasets discoverable by Google Dataset Search. The DATS model also allows for an RDF representation of the information, which enables integration of the CONP metadata as a knowledge graph in BlueBrain Nexus22. The portal includes an advanced search interface mapped to a BlueBrain Nexus SPARQL endpoint where the DATS model files are regularly exported.
The DATS model contains a number of required fields: the name and description of the dataset, the name and affiliation(s) of the individual(s) who generated the data, the license under which a dataset is released, keywords, and data types and formats. It may also include details regarding related publications, funding bodies, and cross-referencing derived datasets. We have also applied the extensibility of the DATS model to add specific fields such as a structured record of the datasets source, allowing searches by institution, city, or country of origin17.
The CONP portal goes beyond the findability of tools, directly integrating tools into workflows and enabling their execution on HPC systems.
Analysis tools are uniformly described in Boutiques, an open specification and software library for sharing tools according to the FAIR principles1. Boutiques descriptors are JSON objects containing a specification of the tool input data, parameters, and output data. They link to a Docker or Singularity container image where the tool and all its dependencies are installed and configured for execution. Boutiques tools can be reused in various platforms, such as workflow engines, as exemplified in TIGR-PURR (https://github.com/TIGRLab/TIGR_PURR), or in web platforms such as CBRAIN23 or VIP (https://www.creatis.insa-lyon.fr/vip/).
Boutiques tools can be published, archived, and retrieved in the Zenodo research archive or in the OpenAIRE-Nexus project. Once published, Boutiques tools receive a DOI, which makes their archives permanently findable.
Similar to the data integration layer, tools can be executed through both command-line and web interfaces. The Boutiques command-line tool can be used to run the tools locally with a uniform interface, provided that a container engine is installed. This is useful for testing analyses or processing smaller datasets. CONP datasets can be downloaded locally for processing through the DataLad command-line or Python API. Boutiques Python API also enables tool integration in external pipeline engines such as Pydra24, Nextflow25, or Apache Spark26.
For use-cases that benefit from the use of HPC clusters, the Clowdr command-line tool and Python API27 can easily be used to apply Boutiques tools concurrently to multiple subjects on HPC clusters available through the SLURM workload manager, such as the ones provided by Compute Canada (https://www.computecanada.ca/), or on the Amazon Elastic Computing Cloud (EC2). This allows CONP users to leverage their own resource allocation and to process CONP datasets through the DataLad interface.
Many CONP tools are also installed in CBRAIN23, a web portal interfaced with storage and computing resources at HPC centers, to provide a higher-level interface for users who do not want to use the command-line, or for developers who prefer to interact with HPC resources through a web API. CBRAIN can import Boutiques descriptors, and create web forms and HPC jobs to launch and monitor the tools. Pipelines that were installed as Docker images are converted to Singularity for deployment on HPC clusters. To facilitate the processing of datasets accessible via the CONP, CBRAIN also interfaces with DataLad, downloading files on-demand for processing.
Running a data analysis pipeline on CBRAIN requires a CBRAIN account. There is no current billing model associated with the compute part of the platform, because CBRAIN relies on academic computing resources, primarily Compute Canada, obtained through resource allocation competitions. The CBRAIN infrastructure allows for external compute resources to be attached to the platform such that an international research laboratory could use its own resources. CBRAIN also has a certain amount of computing time allocated on Compute Canada and when possible the team can offer these for reasonable usage. This needs to be directly requested to the CBRAIN infrastructure governance team through an email to CBRAIN support. Data derived from processing will be stored on the CBRAIN infrastructure, and the agreement by the CBRAIN team to process data will depend on both the compute time (if on CBRAIN Compute Canada allocation) and on the capacity to store these derived data. We note that CBRAIN can also attach data providers with the Principal Investigators own disk space allocation on Compute Canada, on other accessible infrastructures, or even on their own laboratory servers. Given the variety of situations, requests for compute time and disk space are handled on a case by case basis.
Finally, Boutiques executions, including local, Clowdr and CBRAIN ones, also collect anonymized provenance records for activity monitoring, traceability, and other applications.
Read this article:
Data and Tools Integration in the Canadian Open Neuroscience ... - Nature.com
- Neuroscience Says This Simple Habit Improves Cognitive Health and Makes Your Brain Act Younger - Inc. - November 20th, 2024 [November 20th, 2024]
- Premature declarations on animal consciousness hinder progress - The Transmitter: Neuroscience News and Perspectives - November 20th, 2024 [November 20th, 2024]
- Medtronic Q2 Earnings: Diabetes And Neuroscience Revenue Boost Growth, Raises Annual Outlook - Yahoo Finance - November 20th, 2024 [November 20th, 2024]
- Trace Neuroscience Nets $101M in Series A Funding for ALS, Dementia Therapy Development - Senior Housing News - November 20th, 2024 [November 20th, 2024]
- How to be a multidisciplinary neuroscientist - The Transmitter: Neuroscience News and Perspectives - November 20th, 2024 [November 20th, 2024]
- Neuroscience Market Expected to Reach USD 71.0 Billion by - GlobeNewswire - November 20th, 2024 [November 20th, 2024]
- Finger-Prick Test Brings Alzheimers Detection Closer to Everyone - Neuroscience News - November 20th, 2024 [November 20th, 2024]
- Dual-Gene Therapy Shows Promise for Hearing and Vision Loss - Neuroscience News - November 20th, 2024 [November 20th, 2024]
- Robots Help Unlock the Mystery of Human Sense of Self - Neuroscience News - November 20th, 2024 [November 20th, 2024]
- The neuroscience of sleep - University of South Carolina - November 20th, 2024 [November 20th, 2024]
- Stress warps fear memories in multiple ways - The Transmitter: Neuroscience News and Perspectives - November 20th, 2024 [November 20th, 2024]
- Mental Exhaustion Drives Aggressive Behavior - Neuroscience News - November 12th, 2024 [November 12th, 2024]
- NeuroAI: A field born from the symbiosis between neuroscience, AI - The Transmitter: Neuroscience News and Perspectives - November 12th, 2024 [November 12th, 2024]
- The neuroscience of deeper learning in math - SmartBrief - November 12th, 2024 [November 12th, 2024]
- What the brain can teach artificial neural networks - The Transmitter: Neuroscience News and Perspectives - November 12th, 2024 [November 12th, 2024]
- How Anthony Zador thinks neuroscience can help improve AI - The Transmitter: Neuroscience News and Perspectives - November 12th, 2024 [November 12th, 2024]
- Discovering Cancer Therapies through Neuroscience - The New York Academy of Sciences - November 12th, 2024 [November 12th, 2024]
- Neuroscience Market Projected to Reach USD 50.2 Billion by 2032, Growing at a 4.0% CAGR S&S Insider - GlobeNewswire - November 12th, 2024 [November 12th, 2024]
- Insights on Brain Aging and Lifelong Cognitive Health - Neuroscience News - November 12th, 2024 [November 12th, 2024]
- A neuroscience PhD student at the University of Oxford has died - The Tab - November 12th, 2024 [November 12th, 2024]
- Exploring the connection between autism and sleep - The Transmitter: Neuroscience News and Perspectives - November 12th, 2024 [November 12th, 2024]
- Astrocytes star in memory storage, recall - The Transmitter: Neuroscience News and Perspectives - November 12th, 2024 [November 12th, 2024]
- Gut Bacteria Modulate Stress Responses Over Time - Neuroscience News - November 12th, 2024 [November 12th, 2024]
- Gut Bacteria Could Hold the Key to Promoting Healthy Aging - Neuroscience News - November 12th, 2024 [November 12th, 2024]
- Microglias pruning function called into question - The Transmitter: Neuroscience News and Perspectives - October 26th, 2024 [October 26th, 2024]
- Depression Alters Brain Circuits, Heightening Negative Perception - Neuroscience News - October 26th, 2024 [October 26th, 2024]
- UNE Researchers Showcase Groundbreaking Work at Global Neuroscience Conference - University of New England - October 26th, 2024 [October 26th, 2024]
- Scientists discover "glue" that holds memory together in fascinating neuroscience breakthrough - PsyPost - October 26th, 2024 [October 26th, 2024]
- Systems neuroscience: combining theory and neurotechnology for a multiscale account of the brain - Nature.com - October 26th, 2024 [October 26th, 2024]
- Seaport Therapeutics adds another $225 million to coffers to embrace the golden age of neuroscience - STAT - October 26th, 2024 [October 26th, 2024]
- ANRO Investors Have Opportunity to Join Alto Neuroscience, Inc. Fraud Investigation with the Schall Law Firm - Business Wire - October 26th, 2024 [October 26th, 2024]
- Youth Face Rising Risks of Harassment and Exploitation in the Metaverse - Neuroscience News - October 26th, 2024 [October 26th, 2024]
- Exercise During Chemotherapy Boosts Cognitive Function - Neuroscience News - October 26th, 2024 [October 26th, 2024]
- Removing Pre-Bed Screen Time Improves Toddler Sleep - Neuroscience News - October 26th, 2024 [October 26th, 2024]
- Bright Minds Biosciences and Firefly Neuroscience to Collaborate After the BREAKTHROUGH Study: A Phase 2 Trial of BMB-101 in Absence Epilepsy and... - October 26th, 2024 [October 26th, 2024]
- How Visual Clutter Disrupts Information Flow in the Brain - Neuroscience News - October 26th, 2024 [October 26th, 2024]
- Menopausal Hormone Therapys Effects on Brain Health - Neuroscience News - October 26th, 2024 [October 26th, 2024]
- After-hours movers: McDonald's, Starbucks, Seagate, Alto Neuroscience and more - StreetInsider.com - October 26th, 2024 [October 26th, 2024]
- Alto Neuroscience Reports Topline Results from a Phase 2b Trial Evaluating ALTO-100 as a Treatment for Major Depressive Disorder - StockTitan - October 26th, 2024 [October 26th, 2024]
- Cristina Savin and Tim Vogels discuss how AI has shaped their neuroscience research - The Transmitter: Neuroscience News and Perspectives - October 13th, 2024 [October 13th, 2024]
- Should I stay (and eat) or should I go? How the brain balances hunger with competing drives - The Transmitter: Neuroscience News and Perspectives - October 13th, 2024 [October 13th, 2024]
- How neuroscience comics add KA-POW! to the field: Q&A with Kanaka Rajan - The Transmitter: Neuroscience News and Perspectives - October 13th, 2024 [October 13th, 2024]
- Neuroscience research sheds light on how psilocybin alters spatial awareness - PsyPost - October 13th, 2024 [October 13th, 2024]
- Newly Discovered Protein Complex Shapes Synapses and Mental Health - Neuroscience News - October 13th, 2024 [October 13th, 2024]
- The Neuroscience Behind Immersive Filmmaking - Raindance - October 13th, 2024 [October 13th, 2024]
- What are mechanisms? Unpacking the term is key to progress in neuroscience - The Transmitter: Neuroscience News and Perspectives - October 13th, 2024 [October 13th, 2024]
- Kentucky neuroscience doctor honored with national distinction - wnky.com - October 13th, 2024 [October 13th, 2024]
- Cell X Technologies and Aspen Neuroscience collaborate to address throughput and scalability in manufacturing automation to facilitate iPSC cell... - October 13th, 2024 [October 13th, 2024]
- Tracking Daily Habits Lasting Effects on the Brain - Neuroscience News - October 13th, 2024 [October 13th, 2024]
- Dak Prescott Was Silent After Hearing It From a Teammate. Its a Lesson in Emotional Intelligence (Backed By Neuroscience) - Inc. - October 13th, 2024 [October 13th, 2024]
- Helping Kids Fact-Check in the Age of Misinformation - Neuroscience News - October 13th, 2024 [October 13th, 2024]
- Study Links Calorie Restriction to Longevity - Neuroscience News - October 13th, 2024 [October 13th, 2024]
- A Princeton Professor Walks into a Neuroscience Meeting -- Many Years Later It Leads to a Nobel Prize in Physics - TAPinto.net - October 13th, 2024 [October 13th, 2024]
- Try these neuroscience-backed tactics to train your brain to make better decisions - Fast Company - October 2nd, 2024 [October 2nd, 2024]
- Tips to navigate SfN as a trainee - The Transmitter: Neuroscience News and Perspectives - October 2nd, 2024 [October 2nd, 2024]
- Neuroscience Says This 10-Minute Brain Exercise Will Make You Mentally Sharper and Keep You Focused All Day - Inc. - October 2nd, 2024 [October 2nd, 2024]
- Successful people do this 1 thing to be 'happier, more productive, less stressed' at work, says CEO and neuroscience researcher - CNBC - October 2nd, 2024 [October 2nd, 2024]
- Utilizing the Power of Neuroscience, Isabella Kensington May Have Cracked the Code Between Music and Healing - AOL - October 2nd, 2024 [October 2nd, 2024]
- Steve Jobs swore the 10-minute rule made him smarter. Modern neuroscience is discovering he was right - The Star Online - October 2nd, 2024 [October 2nd, 2024]
- Steve Jobs Swore the 10-Minute Rule Made Him Smarter. Modern Neuroscience Is Discovering He Was Right - Inc. - October 2nd, 2024 [October 2nd, 2024]
- Neural manifolds: Latest buzzword or pathway to understand the brain? - The Transmitter: Neuroscience News and Perspectives - October 2nd, 2024 [October 2nd, 2024]
- Neuroscience Says 3 Brainy Habits Will Make You More Efficient, Productive, and Focused - Inc. - October 2nd, 2024 [October 2nd, 2024]
- Ethics, AI, and Neuroscience Converge at Mental Health, Brain, and Behavioral Science Research Day - The University of Utah - October 2nd, 2024 [October 2nd, 2024]
- The neuroscience of campus memories - The Stanford Daily - October 2nd, 2024 [October 2nd, 2024]
- How the Brain Enhances Sleep Through Synaptic Strength - Neuroscience News - October 2nd, 2024 [October 2nd, 2024]
- Neanderthoids and space brains: Stem cell researcher pushes the boundaries of neuroscience - Medical Xpress - October 2nd, 2024 [October 2nd, 2024]
- Nancy Padilla-Coreano - The Transmitter: Neuroscience News and Perspectives - October 2nd, 2024 [October 2nd, 2024]
- Utilizing the Power of Neuroscience, Isabella Kensington May Have Cracked the Code Between Music and Healing - Spin - October 2nd, 2024 [October 2nd, 2024]
- Genetic Variants Linked to Alzheimers Trigger Inflammation in Females - Neuroscience News - October 2nd, 2024 [October 2nd, 2024]
- New Astrocyte Target for Alzheimers Therapy - Neuroscience News - October 2nd, 2024 [October 2nd, 2024]
- Is an ankle sprain also a brain injury? How neuroscience is helping athletes, astronauts and average Joes - The Conversation Indonesia - October 2nd, 2024 [October 2nd, 2024]
- 5 Brain Strategies to Dramatically Reduce Conflict and Boost Your Leadership, Backed by Neuroscience - Inc. - September 23rd, 2024 [September 23rd, 2024]
- Fascinating neuroscience research reveals a key mechanism underlying human cognition - PsyPost - September 23rd, 2024 [September 23rd, 2024]
- Averaging is a convenient fiction of neuroscience - The Transmitter: Neuroscience News and Perspectives - September 23rd, 2024 [September 23rd, 2024]
- Repeat scans reveal brain changes that precede childbirth - The Transmitter: Neuroscience News and Perspectives - September 23rd, 2024 [September 23rd, 2024]
- Neuroscience helps explain the teenage brain and mental health - ABC News - September 15th, 2024 [September 15th, 2024]
- XX Marks the Spot: Addressing Sex Bias in Neuroscience - The Scientist - September 15th, 2024 [September 15th, 2024]
- Neuroscience-based tools for transformative leadership - Fast Company - September 15th, 2024 [September 15th, 2024]
- How 100 Years of EEG Have Transformed Neuroscience - Being Patient - September 15th, 2024 [September 15th, 2024]
- Reconstructing dopamines link to reward - The Transmitter: Neuroscience News and Perspectives - September 15th, 2024 [September 15th, 2024]