diff --git a/docs/40_smartlab/10_eln.mdx b/docs/40_smartlab/10_eln.mdx index f4029d69..8ab4dd67 100644 --- a/docs/40_smartlab/10_eln.mdx +++ b/docs/40_smartlab/10_eln.mdx @@ -4,113 +4,96 @@ slug: "/eln" id: "eln" --- -import useBaseUrl from '@docusaurus/useBaseUrl'; +import useBaseUrl from "@docusaurus/useBaseUrl"; +import { BulletContainer, BulletBox } from "@site/src/components/BulletBox"; # Electronic Lab Notebooks (ELNs) ## Introduction -The world around us is constantly evolving. For example, the smartphones in our pockets are much faster than an 80s supercomputer that could barely fit in an average bedroom. Unfortunately, this development has not yet reached our laboratories. The paper lab notebook is as common as it was 100 years ago, and the way chemical research data is documented - literally with pen and paper - has made little progress in the last century. +The world around us is constantly evolving. For example, the smartphones in our pockets are much faster than an 80s supercomputer that could barely fit in an average bedroom. Unfortunately, this development has not yet reached our laboratories. The paper lab notebook is as common as it was 100 years ago, and the way chemical research data is documented - literally with pen and paper - has made little progress in the last century. Bringing advances in information technology to our labs (smartlab) does not necessarily mean tablets & touchscreens everywhere in your lab. The term smartlab is more about the interconnectivity of the entire workflow and the handling of research data according to the [FAIR principles](/docs/fair). ELNs help assign rich [metadata](/docs/metadata) to experiments and make the data collected traceable and reusable. With the ability to transfer data from instrumentation directly into the ELN, the ELN has all the data in one place. From the ELN, data can be easily published to repositories and transferred to long-term [archiving](/docs/data_storage). One of the most important things that distinguishes an ELN from a blank piece of paper is the ability to document [metadata](/docs/metadata) in a structured and ideally human- and machine-readable way. For more information on the differences between simple systems, ELNs and Laboratory Information Management Systems (LIMS), see the following overview. -
-
-
-
-

Simple system

-
    -
  • Enter text
  • -
  • Add notes
  • -
  • Add files as attachments
  • -
  • Sharing
  • -
  • Searching
  • -
- e.g., Evernote GoogleDrive, Dropbox, MS Sharepoint -
-
-
-
-

Electronic Lab Notebook (ELN)

-
    -
  • Structured metadata in human and machine-readable formats
  • -
  • Discipline-specific functions / editors
  • -
  • Rights management
  • -
  • Audit trail
  • -
  • API
  • -
- e.g., Labfolder, RSpace, eLabFTW, Labguru -
-
-
-
-

Laboratory Information Management System

-
    -
  • Sample management
  • -
  • Instrument integration
  • -
  • Electronic signatures
  • -
  • Reporting or statistics modules
  • -
- e.g., Benchling, Starlims, Limesophy -
-
-
-
- + + +

Simple system

+ + e.g., Evernote GoogleDrive, Dropbox, MS Sharepoint +
+ +

Electronic Lab Notebook (ELN)

+ + e.g., Labfolder, RSpace, eLabFTW, Labguru +
+ +

Laboratory Information Management System

+ + e.g., Benchling, Starlims, Limesophy +
+
## Advantages of an ELN ELNs help to link experimental descriptions directly to the collected data so that all information can be found in one place. Furthermore, data loss is avoided by secure data storage and backups. Storing all the data in one central place helps also with knowledge management because the data is easily findable and accessible, even for new members in a research project. The biggest advantage of an ELN is that [metadata](/docs/metadata) is stored in a structured and [standardised](/docs/format_standards) way. This also helps with publishing research results and transferring research data to a repository. - -
-
-
-
-

Avoid Data Loss

-
    -
  • Linking experimental descriptions to collected data (analogue and digital)
  • -
  • Secure data storage, backups
  • -
-
-
-
-
-

Knowledge Management

-
    -
  • Data is findable
  • -
  • Data is accessible
  • -
  • Data is available, even after change of personnel
  • -
-
-
-
-
- Data LifeCycle -
-
-
-
-

Standardised Documentation

-
    -
  • Structured and standardised collection of metadata
  • -
  • Generation of interoperable (meta)data
  • -
-
-
-
-
-

Publication

-
    -
  • Data provision for publication of research results
  • -
  • Simple transfer of data to repositories
  • -
-
-
+ + +

Avoid Data Loss

+
    +
  • Linking experimental descriptions to collected data (analogue and digital)
  • +
  • Secure data storage, backups
  • +
+
+ +

Knowledge Management

+
    +
  • Data is findable
  • +
  • Data is accessible
  • +
  • Data is available, even after change of personnel
  • +
+
+
+ Data LifeCycle
-
+ +

Standardised Documentation

+ +
+ +

Publication

+ +
+ FAIR Image Attribution: SangyaPundir, [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0). diff --git a/src/components/BulletBox.js b/src/components/BulletBox.js new file mode 100644 index 00000000..7ab17142 --- /dev/null +++ b/src/components/BulletBox.js @@ -0,0 +1,18 @@ +function BulletContainer({ children }) { + return
{children}
; +} + +function BulletBox({ children, secondary }) { + let boxStyle = secondary ? "button--secondary" : "button--primary"; + + return ( +
+ {children} +
+ ); +} + +export { BulletContainer, BulletBox };