The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.
A Key Resources Table (KRT) lists the resources a
study used and generated, each paired with a persistent identifier.
krt models resources around a neutral, typed core schema
and lets you validate, enrich, render, and export them.
k <- new_krt("Dopaminergic neuron study", study_type = "wet-lab")
k <- add_resource(k, "Antibody", "Rabbit Anti-TH",
vendor = "Millipore", catalog_number = "AB152",
rrid = "RRID:AB_390204", new_or_reuse = "reuse",
notes = "Dilution 1:500")
k <- add_resource(k, "Software/code", "Fiji", version = "2.14.0",
rrid = "RRID:SCR_002285", new_or_reuse = "reuse")
k <- add_resource(k, "Dataset", "Processed counts",
doi = "10.5281/zenodo.11111111", new_or_reuse = "new")
k
#> <krt_tbl> Dopaminergic neuron study
#> profile: generic | schema: 1.0.0 | resources: 3
#> Antibody 1 (new 0, reuse 1)
#> Dataset 1 (new 1, reuse 0)
#> Software/code 1 (new 0, reuse 1)Identifiers are stored in their own typed fields
(catalog_number, rrid, doi, …);
they are only combined into a compound string at export time. The
author-facing table is a view of the underlying records:
Validation runs structural and semantic rules, with conditional packs that fire only for the relevant resource types. Severity depends on the profile.
validate_krt(k, profile = "generic")
#> <krt_validation_report> profile: generic | VALID | 3 findings
#> errors: 0 warnings: 1 notes: 2 info: 0
#> WARNING inst-dataset-license [res-ff3840dd4e$license]: Dataset has no license.
#> NOTE sem-missing-source [res-51c17ebad6$source_name]: Resource lists no source (vendor, source_name, or repository).
#> NOTE sem-missing-source [res-ff3840dd4e$source_name]: Resource lists no source (vendor, source_name, or repository).Under the stricter ASAP profile, a missing identifier becomes an error:
k <- normalize_ids(k)
# Lossless canonical formats
cat(substr(write_krt_json(k), 1, 120))
#> {
#> "schema_version": "1.0.0",
#> "profile": "generic",
#> "table_id": "krt-687a8c8fb8",
#> "title": "Dopaminergic neuron sTabular and profile exports are lossy views and warn about it:
cat(suppressWarnings(export_krt(k, format = "asap")))
#> "RESOURCE TYPE","RESOURCE NAME","SOURCE","IDENTIFIER","NEW/REUSE","ADDITIONAL INFORMATION"
#> "Antibody","Rabbit Anti-TH","Millipore","Cat# AB152; RRID:AB_390204","reuse","Dilution 1:500"
#> "Software/code","Fiji","","RRID:SCR_002285","reuse","Version: 2.14.0"
#> "Dataset","Processed counts","","https://doi.org/10.5281/zenodo.11111111","new",""cat(render_krt(k, format = "md", profile = "star-methods"))
#> ## Dopaminergic neuron study
#>
#> | REAGENT or RESOURCE | SOURCE | IDENTIFIER |
#> | --- | --- | --- |
#> | **Antibodies** | | |
#> | Rabbit Anti-TH | Millipore | Cat# AB152; RRID:AB_390204 |
#> | **Deposited data** | | |
#> | Processed counts | | https://doi.org/10.5281/zenodo.11111111 |
#> | **Software and algorithms** | | |
#> | Fiji | | RRID:SCR_002285 |Every step is recorded:
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.