@@ -7,13 +7,13 @@ It is common to enter data during experiments using a graphical user interface.
771 . The [ DataJoint platform] ( https://works.datajoint.com ) platform is a web-based,
88 end-to-end platform to host and execute data pipelines.
99
10- 2 . [ DataJoint LabBook] ( https://github.com/datajoint/datajoint-labbook ) is an open
10+ 2 . [ DataJoint LabBook] ( https://github.com/datajoint/datajoint-labbook ) is an open
1111source project for data entry but is no longer actively maintained.
1212
1313## Does DataJoint support other programming languages?
1414
1515DataJoint [ Python] ( https://docs.datajoint.com/core/datajoint-python/ ) is the most
16- up-to-date version and all future development will focus on the Python API. The
16+ up-to-date version and all future development will focus on the Python API. The
1717[ Matlab] ( https://datajoint.com/docs/core/datajoint-matlab/ ) API was actively developed
1818through 2023. Previous projects implemented some DataJoint features in
1919[ Julia] ( https://github.com/BrainCOGS/neuronex_workshop_2018/tree/julia/julia ) and
@@ -93,16 +93,16 @@ The entry of metadata can be manual, or it can be an automated part of data acqu
9393into the database).
9494
9595Depending on their size and contents, raw data files can be stored in a number of ways.
96- In the simplest and most common scenario, raw data continues to be stored in either a
96+ In the simplest and most common scenario, raw data continues to be stored in either a
9797local filesystem or in the cloud as collections of files and folders.
9898The paths to these files are entered in the database (again, either manually or by
9999automated processes).
100100This is the point at which the notion of a ** data pipeline** begins.
101101Below these "manual tables" that contain metadata and file paths are a series of tables
102102that load raw data from these files, process it in some way, and insert derived or
103103summarized data directly into the database.
104- For example, in an imaging application, the very large raw ` .TIFF ` stacks would reside on
105- the filesystem, but the extracted fluorescent trace timeseries for each cell in the
104+ For example, in an imaging application, the very large raw ` .TIFF ` stacks would reside on
105+ the filesystem, but the extracted fluorescent trace timeseries for each cell in the
106106image would be stored as a numerical array directly in the database.
107107Or the raw video used for animal tracking might be stored in a standard video format on
108108the filesystem, but the computed X/Y positions of the animal would be stored in the
@@ -164,7 +164,7 @@ This brings us to the final important question:
164164
165165## How do I get my data out?
166166
167- This is the fun part. See [ queries] ( query/operators.md ) for details of the DataJoint
167+ This is the fun part. See [ queries] ( query/operators.md ) for details of the DataJoint
168168query language directly from Python.
169169
170170## Interfaces
0 commit comments