opentdf 1.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. opentdf-1.0.0/.github/workflows/ci.yml +42 -0
  2. opentdf-1.0.0/.github/workflows/publish.yml +85 -0
  3. opentdf-1.0.0/.gitignore +31 -0
  4. opentdf-1.0.0/ATTRIBUTION.md +320 -0
  5. opentdf-1.0.0/CHANGELOG.md +59 -0
  6. opentdf-1.0.0/Cargo.toml +25 -0
  7. opentdf-1.0.0/LICENSE +192 -0
  8. opentdf-1.0.0/PKG-INFO +52 -0
  9. opentdf-1.0.0/README.md +62 -0
  10. opentdf-1.0.0/docs/.gitignore +6 -0
  11. opentdf-1.0.0/docs/bun.lock +2805 -0
  12. opentdf-1.0.0/docs/docs/changelog.md +27 -0
  13. opentdf-1.0.0/docs/docs/format/00-overview.md +62 -0
  14. opentdf-1.0.0/docs/docs/format/01-tdf-sqlite-schema.md +142 -0
  15. opentdf-1.0.0/docs/docs/format/02-tdf-bin-block-stream.md +43 -0
  16. opentdf-1.0.0/docs/docs/format/03-frame-payload-encoding.md +163 -0
  17. opentdf-1.0.0/docs/docs/format/04-calibration.md +108 -0
  18. opentdf-1.0.0/docs/docs/format/05-instrument-tables.md +333 -0
  19. opentdf-1.0.0/docs/docs/format/06-references-and-gaps.md +83 -0
  20. opentdf-1.0.0/docs/docs/guide/acquisition-modes.md +59 -0
  21. opentdf-1.0.0/docs/docs/guide/calibration.md +30 -0
  22. opentdf-1.0.0/docs/docs/guide/peaks-and-codecs.md +38 -0
  23. opentdf-1.0.0/docs/docs/guide/reader.md +40 -0
  24. opentdf-1.0.0/docs/docs/install.md +70 -0
  25. opentdf-1.0.0/docs/docs/intro.md +42 -0
  26. opentdf-1.0.0/docs/docs/license.md +24 -0
  27. opentdf-1.0.0/docs/docs/quickstart.md +99 -0
  28. opentdf-1.0.0/docs/docs/reference/api.md +13 -0
  29. opentdf-1.0.0/docs/docs/reference/examples.md +25 -0
  30. opentdf-1.0.0/docs/docusaurus.config.ts +132 -0
  31. opentdf-1.0.0/docs/package.json +39 -0
  32. opentdf-1.0.0/docs/sidebars.ts +46 -0
  33. opentdf-1.0.0/docs/src/css/custom.css +206 -0
  34. opentdf-1.0.0/docs/static/.nojekyll +0 -0
  35. opentdf-1.0.0/docs/static/img/favicon.ico +0 -0
  36. opentdf-1.0.0/docs/static/img/logo.svg +38 -0
  37. opentdf-1.0.0/docs/tsconfig.json +8 -0
  38. opentdf-1.0.0/docs/wrangler.jsonc +17 -0
  39. opentdf-1.0.0/examples/dump.rs +135 -0
  40. opentdf-1.0.0/pyproject.toml +29 -0
  41. opentdf-1.0.0/python/.gitignore +8 -0
  42. opentdf-1.0.0/python/Cargo.lock +422 -0
  43. opentdf-1.0.0/python/Cargo.toml +22 -0
  44. opentdf-1.0.0/python/README.md +34 -0
  45. opentdf-1.0.0/python/src/lib.rs +586 -0
  46. opentdf-1.0.0/python/tests/test_basic.py +58 -0
  47. opentdf-1.0.0/src/calibration.rs +45 -0
  48. opentdf-1.0.0/src/codec.rs +198 -0
  49. opentdf-1.0.0/src/error.rs +21 -0
  50. opentdf-1.0.0/src/lib.rs +24 -0
  51. opentdf-1.0.0/src/reader.rs +524 -0
  52. opentdf-1.0.0/src/types.rs +112 -0
  53. opentdf-1.0.0/tests/roundtrip.rs +416 -0
@@ -0,0 +1,42 @@
1
+ name: CI
2
+
3
+ on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
+ branches: [main]
8
+
9
+ env:
10
+ CARGO_TERM_COLOR: always
11
+ RUSTFLAGS: -D warnings
12
+
13
+ jobs:
14
+ test:
15
+ name: test (${{ matrix.os }})
16
+ strategy:
17
+ fail-fast: false
18
+ matrix:
19
+ os:
20
+ - ubuntu-latest
21
+ - macos-latest
22
+ runs-on: ${{ matrix.os }}
23
+ steps:
24
+ - uses: actions/checkout@v4
25
+
26
+ - name: Install Rust toolchain
27
+ uses: dtolnay/rust-toolchain@stable
28
+ with:
29
+ toolchain: "1.75"
30
+ components: rustfmt, clippy
31
+
32
+ - name: Cache cargo
33
+ uses: Swatinem/rust-cache@v2
34
+
35
+ - name: cargo fmt
36
+ run: cargo fmt --all -- --check
37
+
38
+ - name: cargo clippy
39
+ run: cargo clippy --all-targets -- -D warnings
40
+
41
+ - name: cargo test
42
+ run: cargo test --all-targets
@@ -0,0 +1,85 @@
1
+ name: Publish
2
+
3
+ on:
4
+ push:
5
+ tags: ["v*"]
6
+
7
+ concurrency:
8
+ group: publish-${{ github.ref }}
9
+ cancel-in-progress: true
10
+
11
+ permissions:
12
+ contents: read
13
+
14
+ jobs:
15
+ cargo-publish:
16
+ name: Publish to crates.io
17
+ runs-on: ubuntu-latest
18
+ steps:
19
+ - uses: actions/checkout@v4
20
+ - uses: dtolnay/rust-toolchain@stable
21
+ - run: cargo publish -p opentdf
22
+ env:
23
+ CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
24
+
25
+ build-wheels:
26
+ name: Build wheels (${{ matrix.os }} / ${{ matrix.target }})
27
+ runs-on: ${{ matrix.os }}
28
+ strategy:
29
+ fail-fast: false
30
+ matrix:
31
+ include:
32
+ - os: ubuntu-latest
33
+ target: x86_64
34
+ - os: ubuntu-latest
35
+ target: aarch64
36
+ - os: macos-latest
37
+ target: x86_64
38
+ - os: macos-latest
39
+ target: aarch64
40
+ - os: windows-latest
41
+ target: x86_64
42
+ steps:
43
+ - uses: actions/checkout@v4
44
+ - uses: actions/setup-python@v5
45
+ with:
46
+ python-version: "3.11"
47
+ - uses: PyO3/maturin-action@v1
48
+ with:
49
+ target: ${{ matrix.target }}
50
+ args: --release --out dist --find-interpreter --manifest-path python/Cargo.toml
51
+ manylinux: auto
52
+ - uses: actions/upload-artifact@v4
53
+ with:
54
+ name: wheels-${{ matrix.os }}-${{ matrix.target }}
55
+ path: dist/*.whl
56
+
57
+ build-sdist:
58
+ name: Build sdist
59
+ runs-on: ubuntu-latest
60
+ steps:
61
+ - uses: actions/checkout@v4
62
+ - uses: PyO3/maturin-action@v1
63
+ with:
64
+ command: sdist
65
+ args: --out dist --manifest-path python/Cargo.toml
66
+ - uses: actions/upload-artifact@v4
67
+ with:
68
+ name: sdist
69
+ path: dist/*.tar.gz
70
+
71
+ pypi-publish:
72
+ name: Publish to PyPI
73
+ needs: [build-wheels, build-sdist]
74
+ runs-on: ubuntu-latest
75
+ environment: pypi
76
+ permissions:
77
+ id-token: write
78
+ steps:
79
+ - uses: actions/download-artifact@v4
80
+ with:
81
+ path: dist
82
+ merge-multiple: true
83
+ - uses: pypa/gh-action-pypi-publish@release/v1
84
+ with:
85
+ packages-dir: dist/
@@ -0,0 +1,31 @@
1
+ # Rust build output
2
+ /target
3
+ target/
4
+ Cargo.lock
5
+
6
+ # Reverse-engineering workspace -- never tracked
7
+ /re/
8
+
9
+ # Corpus data (large binary bundles, not redistributed)
10
+ /corpus/
11
+ nohup.out
12
+
13
+ # Python
14
+ **/__pycache__/
15
+ **/*.pyc
16
+ **/*.pyo
17
+ *.egg-info/
18
+ .venv/
19
+
20
+ # Editor / OS
21
+ .DS_Store
22
+ *.swp
23
+ *.swo
24
+ .idea/
25
+ .vscode/
26
+
27
+ # Docusaurus
28
+ docs/node_modules/
29
+ docs/build/
30
+ docs/.docusaurus/
31
+ docs/.cache-loader/
@@ -0,0 +1,320 @@
1
+ # Attribution
2
+
3
+ Bruker `.d` bundles re-distributed (for research / open-parser
4
+ development) from public ProteomeXchange repositories. Every dataset
5
+ listed below retains its original licence — PRIDE's default is
6
+ CC-BY 4.0, but per-dataset terms always win. If you use any of
7
+ these data, please cite the original submitter and the ProteomeXchange
8
+ accession; links below resolve to the project landing page.
9
+
10
+ Manifest generated: 2026-04-22T00:10:25.830284+00:00
11
+ Bundles: 19
12
+ Total size: 17.01 GB
13
+
14
+ | Accession | Repo | Instrument | Mode | Size (MB) | Title |
15
+ |---|---|---|---|---:|---|
16
+ | [PXD021593](https://www.ebi.ac.uk/pride/archive/projects/PXD021593) | PRIDE | maXis | ? | 32 | A proteomic-informed view of the changes induced by loss of cellular adherence: the example of mouse macrophages |
17
+ | [PXD009101](https://www.ebi.ac.uk/pride/archive/projects/PXD009101) | PRIDE | solariX | ? | 7 | GAGfinder: glycosaminoglycan MS/MS fragment peak finding and elemental composition assignment |
18
+ | [PXD005859](https://www.ebi.ac.uk/pride/archive/projects/PXD005859) | PRIDE | amaZon Speed ETD | ? | 364 | Glycoproteomics of Flagellin C9LY14 from Selenomonas sputigena |
19
+ | [PXD030992](https://www.ebi.ac.uk/pride/archive/projects/PXD030992) | PRIDE | timsTOF Pro | ? | 89 | TGFB1 induced S100 family protein expression is associated with epithelial to mesenchymal transition states and poor sur |
20
+ | [PXD025576](https://www.ebi.ac.uk/pride/archive/projects/PXD025576) | PRIDE | timsTOF Pro | DIA/diaPASEF | 1735 | Characterizing the role of OCIAD1 in the proteolytic processing of holocytochrome c1 and CIII2 assembly |
21
+ | [PXD031833](https://www.ebi.ac.uk/pride/archive/projects/PXD031833) | PRIDE | timsTOF Pro | DIA/diaPASEF | 162 | TTYH family members form tetrameric complexes at the cell membrane |
22
+ | [PXD027359](https://www.ebi.ac.uk/pride/archive/projects/PXD027359) | PRIDE | timsTOF Pro | DIA/diaPASEF | 743 | AlphaTims: Indexing unprocessed trapped ion mobility spectrometry - time of flight data for fast and easy accession and |
23
+ | [PXD034557](https://www.ebi.ac.uk/pride/archive/projects/PXD034557) | PRIDE | timsTOF pro 2 | DIA/diaPASEF | 1523 | Comparative Proteomic Profiling of Variants SARS-CoV-2 Virus-Like-Particles (VLPs) Incubated Cells |
24
+ | [PXD006287](https://www.ebi.ac.uk/pride/archive/projects/PXD006287) | PRIDE | Bruker Daltonics amaZon series | ? | 63 | In culture cross-linking of bacterial cells reveals large scale dynamic protein-protein interactions at the peptide leve |
25
+ | [PXD018980](https://www.ebi.ac.uk/pride/archive/projects/PXD018980) | PRIDE | maXis | ? | 615 | Characterisation of South American camelid fibres by proteomics |
26
+ | [PXD036417](https://www.ebi.ac.uk/pride/archive/projects/PXD036417) | PRIDE | solariX | ? | 92 | Counterintuitive structural and functional effects due to naturally-occurring mutations targeting the active site of the |
27
+ | [PXD022216](https://www.ebi.ac.uk/pride/archive/projects/PXD022216) | PRIDE | timsTOF Pro | DIA/diaPASEF | 3959 | The Proteome Landscape of Chronic Lymphocytic Leukemia |
28
+ | [PXD030327](https://www.ebi.ac.uk/pride/archive/projects/PXD030327) | PRIDE | timsTOF Pro | DIA/diaPASEF | 1696 | Enhanced competition at the nano-bio interface enables comprehensive characterization of protein corona dynamics and dee |
29
+ | [PXD018972](https://www.ebi.ac.uk/pride/archive/projects/PXD018972) | PRIDE | amaZon ETD | ? | 64 | Caspr2 interacts with type 1 inositol 1,4,5-trisphosphate receptor in the developing cerebellum and regulates Purkinje c |
30
+ | [PXD038283](https://www.ebi.ac.uk/pride/archive/projects/PXD038283) | PRIDE | Bruker Daltonics solarix series | ? | 30 | Robust high throughput proteomics identification and deami-dation quantitation of extinct species up to Pleistocene with |
31
+ | [PXD001592](https://www.ebi.ac.uk/pride/archive/projects/PXD001592) | PRIDE | Bruker Daltonics instrument model | ? | 3369 | The impact II, a very high resolution quadrupole time-of-flight instrument for deep shotgun proteomics |
32
+ | [PXD035147](https://www.ebi.ac.uk/pride/archive/projects/PXD035147) | PRIDE | autoflex | ? | 235 | Integrated proteome and malonylome analyses reveal the potential meaning of TLN1 and ACTB in end-stage renal disease |
33
+ | [PXD035173](https://www.ebi.ac.uk/pride/archive/projects/PXD035173) | PRIDE | timsTOF Pro | DIA/diaPASEF | 2225 | Proteomic profiling of carotid atherosclerotic plaques and adjacent intact arterial segments |
34
+
35
+ ## Per-bundle detail
36
+
37
+ ### PXD021593 — F031470HD.d.zip
38
+
39
+ - Title: A proteomic-informed view of the changes induced by loss of cellular adherence: the example of mouse macrophages
40
+ - Organisms: Mus musculus (mouse)
41
+ - Publication date: 2021-09-09
42
+ - Project instruments: maXis, TripleTOF 5600, Synapt MS
43
+ - Reported instrument: None
44
+ - Acquisition software: None
45
+ - Schema: None None
46
+ - Acquisition mode: None
47
+ - Size: 32.3 MB
48
+ - Source URL: https://ftp.pride.ebi.ac.uk/pride/data/archive/2021/09/PXD021593/F031470HD.d.zip
49
+ - Licence (presumed): CC-BY-4.0 (PRIDE default)
50
+ - Attribution string: PRIDE PXD021593: A proteomic-informed view of the changes induced by loss of cellular adherence: the example of mouse macrophages
51
+
52
+ ### PXD009101 — 2083-_EDD.d.zip
53
+
54
+ - Title: GAGfinder: glycosaminoglycan MS/MS fragment peak finding and elemental composition assignment
55
+ - Organisms: Homo sapiens (human)
56
+ - Publication date: 2018-04-09
57
+ - Project instruments: solariX
58
+ - Reported instrument: None
59
+ - Acquisition software: None
60
+ - Schema: None None
61
+ - Acquisition mode: None
62
+ - Size: 6.8 MB
63
+ - Source URL: https://ftp.pride.ebi.ac.uk/pride/data/archive/2018/04/PXD009101/2083-_EDD.d.zip
64
+ - Licence (presumed): CC-BY-4.0 (PRIDE default)
65
+ - Attribution string: PRIDE PXD009101: GAGfinder: glycosaminoglycan MS/MS fragment peak finding and elemental composition assignment
66
+
67
+ ### PXD005859 — SspFlag2_GC3_01_10982.d.zip
68
+
69
+ - Title: Glycoproteomics of Flagellin C9LY14 from Selenomonas sputigena
70
+ - Organisms: Selenomonas sputigena atcc 35185, Escherichia coli
71
+ - Publication date: 2018-01-24
72
+ - Project instruments: amaZon Speed ETD
73
+ - Reported instrument: None
74
+ - Acquisition software: None
75
+ - Schema: None None
76
+ - Acquisition mode: None
77
+ - Size: 364.3 MB
78
+ - Source URL: https://ftp.pride.ebi.ac.uk/pride/data/archive/2018/01/PXD005859/SspFlag2_GC3_01_10982.d.zip
79
+ - Licence (presumed): CC-BY-4.0 (PRIDE default)
80
+ - Attribution string: PRIDE PXD005859: Glycoproteomics of Flagellin C9LY14 from Selenomonas sputigena
81
+
82
+ ### PXD030992 — P3945_10_1_1_4638.d.zip
83
+
84
+ - Title: TGFB1 induced S100 family protein expression is associated with epithelial to mesenchymal transition states and poor survival in pancreatic cancer
85
+ - Organisms: Mus musculus (mouse)
86
+ - Publication date: 2023-02-24
87
+ - Project instruments: timsTOF Pro
88
+ - Reported instrument: None
89
+ - Acquisition software: None
90
+ - Schema: None None
91
+ - Acquisition mode: None
92
+ - Size: 88.9 MB
93
+ - Source URL: https://ftp.pride.ebi.ac.uk/pride/data/archive/2023/02/PXD030992/P3945_10_1_1_4638.d.zip
94
+ - Licence (presumed): CC-BY-4.0 (PRIDE default)
95
+ - Attribution string: PRIDE PXD030992: TGFB1 induced S100 family protein expression is associated with epithelial to mesenchymal transition states and poor survival in pancreatic cancer
96
+
97
+ ### PXD025576 — 191118_DIAMAX_G10_Slot1-62_1_459.d.zip
98
+
99
+ - Title: Characterizing the role of OCIAD1 in the proteolytic processing of holocytochrome c1 and CIII2 assembly
100
+ - Organisms: Homo sapiens (human)
101
+ - Publication date: 2021-05-18
102
+ - Project instruments: timsTOF Pro
103
+ - Reported instrument: timsTOF Pro
104
+ - Acquisition software: Bruker otofControl 6.0.115.261-15059-vc141
105
+ - Schema: TDF 3.1
106
+ - Acquisition mode: DIA/diaPASEF
107
+ - Size: 1735.3 MB
108
+ - Source URL: https://ftp.pride.ebi.ac.uk/pride/data/archive/2021/05/PXD025576/191118_DIAMAX_G10_Slot1-62_1_459.d.zip
109
+ - Licence (presumed): CC-BY-4.0 (PRIDE default)
110
+ - Attribution string: PRIDE PXD025576: Characterizing the role of OCIAD1 in the proteolytic processing of holocytochrome c1 and CIII2 assembly
111
+
112
+ ### PXD031833 — mTTYH1-D_coi-N2-P-200-20C_U-T_3366.d.zip
113
+
114
+ - Title: TTYH family members form tetrameric complexes at the cell membrane
115
+ - Organisms: Mus musculus (mouse)
116
+ - Publication date: 2022-08-31
117
+ - Project instruments: timsTOF Pro, Bruker Daltonics solarix series
118
+ - Reported instrument: timsTOF Pro
119
+ - Acquisition software: Bruker otofControl 6.2.201.416-16523-vc141
120
+ - Schema: TDF 3.3
121
+ - Acquisition mode: DIA/diaPASEF
122
+ - Size: 161.7 MB
123
+ - Source URL: https://ftp.pride.ebi.ac.uk/pride/data/archive/2022/08/PXD031833/mTTYH1-D_coi-N2-P-200-20C_U-T_3366.d.zip
124
+ - Licence (presumed): CC-BY-4.0 (PRIDE default)
125
+ - Attribution string: PRIDE PXD031833: TTYH family members form tetrameric complexes at the cell membrane
126
+
127
+ ### PXD027359 — 20201207_tims03_Evo03_PS_SA_HeLa_200ng_EvoSep_prot_DDA_21min_8cm_S1-C10_1_22476.d.zip
128
+
129
+ - Title: AlphaTims: Indexing unprocessed trapped ion mobility spectrometry - time of flight data for fast and easy accession and visualization
130
+ - Organisms: Homo sapiens (human)
131
+ - Publication date: 2021-07-30
132
+ - Project instruments: timsTOF Pro
133
+ - Reported instrument: timsTOF Pro
134
+ - Acquisition software: timsTOF 2.0.40
135
+ - Schema: TDF 3.5
136
+ - Acquisition mode: DIA/diaPASEF
137
+ - Size: 743.5 MB
138
+ - Source URL: https://ftp.pride.ebi.ac.uk/pride/data/archive/2021/07/PXD027359/20201207_tims03_Evo03_PS_SA_HeLa_200ng_EvoSep_prot_DDA_21min_8cm_S1-C10_1_22476.d.zip
139
+ - Licence (presumed): CC-BY-4.0 (PRIDE default)
140
+ - Attribution string: PRIDE PXD027359: AlphaTims: Indexing unprocessed trapped ion mobility spectrometry - time of flight data for fast and easy accession and visualization
141
+
142
+ ### PXD034557 — C1DIA_Slot1-1_1_3174.d.zip
143
+
144
+ - Title: Comparative Proteomic Profiling of Variants SARS-CoV-2 Virus-Like-Particles (VLPs) Incubated Cells
145
+ - Organisms: Homo sapiens (human)
146
+ - Publication date: 2023-04-15
147
+ - Project instruments: timsTOF Pro 2
148
+ - Reported instrument: timsTOF pro 2
149
+ - Acquisition software: timsTOF 3.0.22
150
+ - Schema: TDF 3.6
151
+ - Acquisition mode: DIA/diaPASEF
152
+ - Size: 1523.4 MB
153
+ - Source URL: https://ftp.pride.ebi.ac.uk/pride/data/archive/2023/04/PXD034557/C1DIA_Slot1-1_1_3174.d.zip
154
+ - Licence (presumed): CC-BY-4.0 (PRIDE default)
155
+ - Attribution string: PRIDE PXD034557: Comparative Proteomic Profiling of Variants SARS-CoV-2 Virus-Like-Particles (VLPs) Incubated Cells
156
+
157
+ ### PXD006287 — XL2349_fr9_B2_01_1701.d.zip
158
+
159
+ - Title: In culture cross-linking of bacterial cells reveals large scale dynamic protein-protein interactions at the peptide level.
160
+ - Organisms: Bacillus subtilis subsp. subtilis str. 168
161
+ - Publication date: 2017-05-23
162
+ - Project instruments: Bruker Daltonics amaZon series
163
+ - Reported instrument: None
164
+ - Acquisition software: None
165
+ - Schema: None None
166
+ - Acquisition mode: None
167
+ - Size: 62.5 MB
168
+ - Source URL: https://ftp.pride.ebi.ac.uk/pride/data/archive/2017/05/PXD006287/XL2349_fr9_B2_01_1701.d.zip
169
+ - Licence (presumed): CC-BY-4.0 (PRIDE default)
170
+ - Attribution string: PRIDE PXD006287: In culture cross-linking of bacterial cells reveals large scale dynamic protein-protein interactions at the peptide level.
171
+
172
+ ### PXD009101 — 2064-_NETD.d.zip
173
+
174
+ - Title: GAGfinder: glycosaminoglycan MS/MS fragment peak finding and elemental composition assignment
175
+ - Organisms: Homo sapiens (human)
176
+ - Publication date: 2018-04-09
177
+ - Project instruments: solariX
178
+ - Reported instrument: None
179
+ - Acquisition software: None
180
+ - Schema: None None
181
+ - Acquisition mode: None
182
+ - Size: 6.9 MB
183
+ - Source URL: https://ftp.pride.ebi.ac.uk/pride/data/archive/2018/04/PXD009101/2064-_NETD.d.zip
184
+ - Licence (presumed): CC-BY-4.0 (PRIDE default)
185
+ - Attribution string: PRIDE PXD009101: GAGfinder: glycosaminoglycan MS/MS fragment peak finding and elemental composition assignment
186
+
187
+ ### PXD018980 — 20170224_122_Gua_ZB4359_BB2_01_383.d.zip
188
+
189
+ - Title: Characterisation of South American camelid fibres by proteomics
190
+ - Organisms: Camelidae
191
+ - Publication date: 2020-11-09
192
+ - Project instruments: maXis
193
+ - Reported instrument: None
194
+ - Acquisition software: None
195
+ - Schema: None None
196
+ - Acquisition mode: None
197
+ - Size: 614.7 MB
198
+ - Source URL: https://ftp.pride.ebi.ac.uk/pride/data/archive/2020/11/PXD018980/20170224_122_Gua_ZB4359_BB2_01_383.d.zip
199
+ - Licence (presumed): CC-BY-4.0 (PRIDE default)
200
+ - Attribution string: PRIDE PXD018980: Characterisation of South American camelid fibres by proteomics
201
+
202
+ ### PXD036417 — NQO1-F107C_coi-N2-P_200-0C_3996.d.zip
203
+
204
+ - Title: Counterintuitive structural and functional effects due to naturally-occurring mutations targeting the active site of the disease-associated NQO1 enzyme
205
+ - Organisms: Homo sapiens (human)
206
+ - Publication date: 2022-11-23
207
+ - Project instruments: solariX
208
+ - Reported instrument: None
209
+ - Acquisition software: None
210
+ - Schema: None None
211
+ - Acquisition mode: None
212
+ - Size: 91.7 MB
213
+ - Source URL: https://ftp.pride.ebi.ac.uk/pride/data/archive/2022/11/PXD036417/NQO1-F107C_coi-N2-P_200-0C_3996.d.zip
214
+ - Licence (presumed): CC-BY-4.0 (PRIDE default)
215
+ - Attribution string: PRIDE PXD036417: Counterintuitive structural and functional effects due to naturally-occurring mutations targeting the active site of the disease-associated NQO1 enzyme
216
+
217
+ ### PXD022216 — fmeierab_T190525_CLL_diaPASEF_02_1977.d.zip
218
+
219
+ - Title: The Proteome Landscape of Chronic Lymphocytic Leukemia
220
+ - Organisms: Homo sapiens (human)
221
+ - Publication date: 2021-09-27
222
+ - Project instruments: timsTOF Pro
223
+ - Reported instrument: timsTOF Pro
224
+ - Acquisition software: Bruker otofControl 5.1.81.714-13047-vc110
225
+ - Schema: TDF 3.1
226
+ - Acquisition mode: DIA/diaPASEF
227
+ - Size: 3958.8 MB
228
+ - Source URL: https://ftp.pride.ebi.ac.uk/pride/data/archive/2021/09/PXD022216/fmeierab_T190525_CLL_diaPASEF_02_1977.d.zip
229
+ - Licence (presumed): CC-BY-4.0 (PRIDE default)
230
+ - Attribution string: PRIDE PXD022216: The Proteome Landscape of Chronic Lymphocytic Leukemia
231
+
232
+ ### PXD030327 — EXP21053_2021ms0297X10_A_BB2_1_1884.d.zip
233
+
234
+ - Title: Enhanced competition at the nano-bio interface enables comprehensive characterization of protein corona dynamics and deep coverage of proteomes
235
+ - Organisms: Homo sapiens (human)
236
+ - Publication date: 2022-09-02
237
+ - Project instruments: timsTOF Pro 2
238
+ - Reported instrument: timsTOF Pro
239
+ - Acquisition software: timsTOF 2.0.53.0
240
+ - Schema: TDF 3.5
241
+ - Acquisition mode: DIA/diaPASEF
242
+ - Size: 1696.2 MB
243
+ - Source URL: https://ftp.pride.ebi.ac.uk/pride/data/archive/2022/09/PXD030327/EXP21053_2021ms0297X10_A_BB2_1_1884.d.zip
244
+ - Licence (presumed): CC-BY-4.0 (PRIDE default)
245
+ - Attribution string: PRIDE PXD030327: Enhanced competition at the nano-bio interface enables comprehensive characterization of protein corona dynamics and deep coverage of proteomes
246
+
247
+ ### PXD018972 — LA_CS-F_24May16_BE4_01_30183.d.zip
248
+
249
+ - Title: Caspr2 interacts with type 1 inositol 1,4,5-trisphosphate receptor in the developing cerebellum and regulates Purkinje cell morphology
250
+ - Organisms: Mus musculus (mouse)
251
+ - Publication date: 2020-07-13
252
+ - Project instruments: amaZon ETD
253
+ - Reported instrument: None
254
+ - Acquisition software: None
255
+ - Schema: None None
256
+ - Acquisition mode: None
257
+ - Size: 64.2 MB
258
+ - Source URL: https://ftp.pride.ebi.ac.uk/pride/data/archive/2020/07/PXD018972/LA_CS-F_24May16_BE4_01_30183.d.zip
259
+ - Licence (presumed): CC-BY-4.0 (PRIDE default)
260
+ - Attribution string: PRIDE PXD018972: Caspr2 interacts with type 1 inositol 1,4,5-trisphosphate receptor in the developing cerebellum and regulates Purkinje cell morphology
261
+
262
+ ### PXD038283 — Ca1.d.zip
263
+
264
+ - Title: Robust high throughput proteomics identification and deami-dation quantitation of extinct species up to Pleistocene with Ultrahigh Resolution MALDI-FTICR Mass Spectrometry
265
+ - Organisms: Homo sapiens (human), Bos taurus (bovine), Rhinoceros, Castor fiber (eurasian beaver), Cervus, Equus caballus (horse)
266
+ - Publication date: 2023-04-28
267
+ - Project instruments: Bruker Daltonics solarix series, Q Exactive Plus
268
+ - Reported instrument: None
269
+ - Acquisition software: None
270
+ - Schema: None None
271
+ - Acquisition mode: None
272
+ - Size: 29.8 MB
273
+ - Source URL: https://ftp.pride.ebi.ac.uk/pride/data/archive/2023/04/PXD038283/Ca1.d.zip
274
+ - Licence (presumed): CC-BY-4.0 (PRIDE default)
275
+ - Attribution string: PRIDE PXD038283: Robust high throughput proteomics identification and deami-dation quantitation of extinct species up to Pleistocene with Ultrahigh Resolution MALDI-FTICR Mass Spectrometry
276
+
277
+ ### PXD001592 — 025pmolUPS2_500ngY_90min1Hz1pr_BC1_01_338.d.zip
278
+
279
+ - Title: The impact II, a very high resolution quadrupole time-of-flight instrument for deep shotgun proteomics
280
+ - Organisms: Homo sapiens (human), Mus musculus (mouse), Saccharomyces cerevisiae (baker's yeast)
281
+ - Publication date: 2015-05-26
282
+ - Project instruments: Bruker Daltonics instrument model
283
+ - Reported instrument: None
284
+ - Acquisition software: None
285
+ - Schema: None None
286
+ - Acquisition mode: None
287
+ - Size: 3368.9 MB
288
+ - Source URL: https://ftp.pride.ebi.ac.uk/pride/data/archive/2015/05/PXD001592/025pmolUPS2_500ngY_90min1Hz1pr_BC1_01_338.d.zip
289
+ - Licence (presumed): CC-BY-4.0 (PRIDE default)
290
+ - Attribution string: PRIDE PXD001592: The impact II, a very high resolution quadrupole time-of-flight instrument for deep shotgun proteomics
291
+
292
+ ### PXD035147 — JD019LPMa_HC_1_Slot1-45_1_10163.d.zip
293
+
294
+ - Title: Integrated proteome and malonylome analyses reveal the potential meaning of TLN1 and ACTB in end-stage renal disease
295
+ - Organisms: Homo sapiens (human)
296
+ - Publication date: 2023-10-24
297
+ - Project instruments: autoflex
298
+ - Reported instrument: None
299
+ - Acquisition software: None
300
+ - Schema: None None
301
+ - Acquisition mode: None
302
+ - Size: 235.3 MB
303
+ - Source URL: https://ftp.pride.ebi.ac.uk/pride/data/archive/2023/10/PXD035147/JD019LPMa_HC_1_Slot1-45_1_10163.d.zip
304
+ - Licence (presumed): CC-BY-4.0 (PRIDE default)
305
+ - Attribution string: PRIDE PXD035147: Integrated proteome and malonylome analyses reveal the potential meaning of TLN1 and ACTB in end-stage renal disease
306
+
307
+ ### PXD035173 — 62_Slot1-54_1_2674.d.zip
308
+
309
+ - Title: Proteomic profiling of carotid atherosclerotic plaques and adjacent intact arterial segments
310
+ - Organisms: Homo sapiens (human)
311
+ - Publication date: 2025-06-05
312
+ - Project instruments: timsTOF Pro
313
+ - Reported instrument: timsTOF Pro
314
+ - Acquisition software: timsTOF 2.0.18.0
315
+ - Schema: TDF 3.5
316
+ - Acquisition mode: DIA/diaPASEF
317
+ - Size: 2225.2 MB
318
+ - Source URL: https://ftp.pride.ebi.ac.uk/pride/data/archive/2025/06/PXD035173/62_Slot1-54_1_2674.d.zip
319
+ - Licence (presumed): CC-BY-4.0 (PRIDE default)
320
+ - Attribution string: PRIDE PXD035173: Proteomic profiling of carotid atherosclerotic plaques and adjacent intact arterial segments
@@ -0,0 +1,59 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
5
+ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
+
7
+ ## [1.0.0] - 2026-05-17
8
+
9
+ First stable release. The public API of `opentdf` is now considered stable
10
+ and will follow semantic versioning. The schema-version compatibility set
11
+ (TDF 3.1, 3.3, 3.5, 3.6, 3.7) is unchanged from 0.1.1.
12
+
13
+ ### Added
14
+
15
+ - `publish.yml` GitHub Actions workflow: publishes the `opentdf` crate to
16
+ crates.io and the Python wheel to PyPI via OIDC Trusted Publishing on
17
+ every `v*` tag push.
18
+
19
+ ### Fixed
20
+
21
+ - Removed needless borrows in `Reader::open()` calls in integration tests
22
+ (resolves `clippy::needless_borrows_for_generic_args`).
23
+
24
+ ### Changed
25
+
26
+ - CI migrated from WarpBuild runners to standard GitHub-hosted
27
+ (`ubuntu-latest`, `macos-latest`, `windows-latest`).
28
+
29
+ ## [0.1.1] - 2026-05-16
30
+
31
+ Initial public release.
32
+
33
+ ### Added
34
+
35
+ - Rust reader for timsTOF `.d/` (TDF) bundles.
36
+ - SQLite metadata access via bundled `rusqlite`: `GlobalMetadata`,
37
+ `Frames`, mode-specific index tables, and calibration tables.
38
+ - Binary frame decoder supporting both compression codecs:
39
+ - Codec 2 (`TimsCompressionType = 2`): zstd + byte-transpose + delta.
40
+ - Codec 1 (`TimsCompressionType = 1`): per-scan LZF blobs with
41
+ signed-delta TOF stream (Rust LZF decoder; no `liblzf` dependency).
42
+ - TOF -> m/z and scan -> 1/K0 calibration via the
43
+ linear-in-sqrt(m/z) model.
44
+ - Acquisition-mode metadata:
45
+ - diaPASEF windows (`DiaFrameMsMsInfo` + `DiaFrameMsMsWindows`)
46
+ - PASEF DDA precursors + per-frame MS/MS info
47
+ - prm-PASEF targets + per-frame MS/MS info
48
+ - Schema-version compatibility: 3.1, 3.3, 3.5, 3.6, 3.7 verified.
49
+ - `examples/dump.rs`: minimal frame-peak dumper for CLI inspection.
50
+ - 9 integration tests, of which 8 run against a small committed probe
51
+ corpus and 1 (PRM) is conditional on the optional PRIDE PXD028279
52
+ probe being present.
53
+
54
+ ### Out of scope
55
+
56
+ - `analysis.tsf` (MALDI / non-TIMS bundles).
57
+ - Tune-method XML blocks under `*.m/`.
58
+ - Proprietary polynomial calibration models (the linear model is
59
+ used; see `docs/format/04-tof-to-mz-calibration.md`).
@@ -0,0 +1,25 @@
1
+ [package]
2
+ name = "opentdf"
3
+ version = "1.0.0"
4
+ edition = "2021"
5
+ rust-version = "1.75"
6
+ description = "Rust reader for timsTOF .d/ (TDF) mass spectrometry bundles."
7
+ authors = ["Nathan Riley <git@nathanriley.com>"]
8
+ license = "Apache-2.0"
9
+ repository = "https://github.com/Sigilweaver/OpenTDF"
10
+ homepage = "https://github.com/Sigilweaver/OpenTDF"
11
+ readme = "README.md"
12
+ keywords = ["mass-spectrometry", "bruker", "timstof", "tdf", "proteomics"]
13
+ categories = ["parser-implementations", "science"]
14
+
15
+ [lints.rust]
16
+ unsafe_code = "forbid"
17
+
18
+ [dependencies]
19
+ thiserror = "2"
20
+ rusqlite = { version = "0.31", features = ["bundled"] }
21
+ zstd = "0.13"
22
+
23
+ [[example]]
24
+ name = "dump"
25
+ path = "examples/dump.rs"