diff --git a/content/converting-data-to-nwb/_index.md b/content/converting-data-to-nwb/_index.md index 0ddfcef..9139289 100644 --- a/content/converting-data-to-nwb/_index.md +++ b/content/converting-data-to-nwb/_index.md @@ -1,16 +1,23 @@ --- title: "Converting Data To NWB" +### What is NWB? +about_nwb: + enable: true + content: "The goal of NWB is to package experiment data with the metadata necessary to analyze the data. All of the data from a particular session goes into a single file. This includes the neurophysiology data itself, but also includes other data such as information about the data acquisition, experiment design, experimental subject, and behavior of that subject. The NWB core schema defines data containers for common data objects in neurophysiology data, including: extracellular electrophysiology (e.g., Neuropixels probes), optical physiology (e.g., two-photon imaging), intracellular electrophysiology (e.g., patch clamping), and behavior." + image: "/images/nwb-data-and-metadata.png" + additional_info: "All of these data types and relationships are defined in the [NWB Schema](https://nwb-schema.readthedocs.io/) using the [HDMF specification language](https://hdmf-schema-language.readthedocs.io). NWB is faced with the challenge of supporting a large variety of different experiment types, so the data types and relationships can get quite complex. For this reason, the NWB development team provides tools and APIs, described below, to help users easily and efficiently read and write NWB files." + ### List list: enable: true - title: "Neurodata Without Borders (NWB) is a data standard for neurophysiology. Converting data to NWB involves:" + title: "Converting neurophysiology data to NWB involves:" items: - item: "Reading data and metadata from source files" - item: "Adding necessary metadata" - item: "Writing data and metadata to NWB following best practices" - item: "Packaging large datasets for optimal cloud deployment" - content: "The NWB ecosystem offers various solutions, ranging from automated no-code tools to fine-grained programmatic options. Below we provide an overview of the main tools. For a more detailed introduction to data conversion please see the [data conversion user guide](https://nwb-overview.readthedocs.io/en/latest/conversion_tutorial/user_guide.html)." + content: "The following sections start with the most automated and convenient approaches and proceed to more programming-heavy and customizable solutions. Each tool offers different levels of flexibility and control, allowing you to choose the right approach for your specific needs." ### Available Tools available_tools_section: diff --git a/layouts/converting-data-to-nwb/list.html b/layouts/converting-data-to-nwb/list.html index 1e83288..b044dc5 100644 --- a/layouts/converting-data-to-nwb/list.html +++ b/layouts/converting-data-to-nwb/list.html @@ -9,6 +9,28 @@

{{ .Title | markdownify {{/* End Hero Section */}} +{{/* About NWB Section */}} +{{ with .Params.about_nwb }} +{{ if .enable }} +
+
+ {{ with .content }} +

{{ . | markdownify }}

+ {{ end }} + {{ with .image }} +
+ NWB Data and Metadata +
+ {{ end }} + {{ with .additional_info }} +

{{ . | markdownify }}

+ {{ end }} +
+
+{{ end }} +{{ end }} +{{/* End About NWB Section */}} + {{/* List Section */}} {{ with .Params.list }} {{ if .enable }} diff --git a/static/images/nwb-data-and-metadata.png b/static/images/nwb-data-and-metadata.png new file mode 100644 index 0000000..fa8d204 Binary files /dev/null and b/static/images/nwb-data-and-metadata.png differ