Watch
1
0
Fork
You've already forked tabular-dataset
0
tabular-dataset/README.md

32 lines
1.6 KiB
Markdown

# Tabular Snapshot Repository Template
This repository is a lightweight pattern for Research Data Management (RDM) of tabular information.
Its goal is to keep the **authoritative table in a TSV file** while also allowing users to deposit original snapshots in other formats for conversion, review, and update. This improves:
- **Interoperability** — TSV is easy to read and process across tools and platforms
- **Long-term accessibility** — plain text tabular data is durable
- **Version control** — the meaningful data stays in Git
- **Traceability** — original source files can be retained alongside the converted table
## Why this approach
Tabular data often arrives as spreadsheets, exports, or other proprietary formats. Converting and consolidating the information into a single TSV file gives a stable, tool-friendly representation while still preserving source snapshots for reference.
This setup works well when you want to:
- keep one canonical table
- accept updates from multiple file formats
- preserve original deposits without mixing them into the main history
- support future migration and reuse
This repository is also a DataLad dataset, which gives it a globally unique identifier. That identifier can be used to reliably reference the dataset itself and any metadata it contains, supporting unambiguous identification (for example in the TRR379 knowledge pool), sharing, and reuse across systems and over time.
## Repository structure
```text
.
├── README.md
├── table.tsv # may be renamed to match the nature of tabular information
└── orig/
```