pooledscreenid 0.1.1__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.
- pooledscreenid-0.1.1/.github/workflows/tests.yml +20 -0
- pooledscreenid-0.1.1/CHANGELOG.md +17 -0
- pooledscreenid-0.1.1/CITATION.cff +20 -0
- pooledscreenid-0.1.1/LICENSE +21 -0
- pooledscreenid-0.1.1/MANIFEST.in +4 -0
- pooledscreenid-0.1.1/PKG-INFO +109 -0
- pooledscreenid-0.1.1/README.md +88 -0
- pooledscreenid-0.1.1/THIRD_PARTY_NOTICES.md +16 -0
- pooledscreenid-0.1.1/examples/configs/egfr.json +29 -0
- pooledscreenid-0.1.1/examples/configs/met.json +27 -0
- pooledscreenid-0.1.1/examples/data/egfr_fold_gains.csv +11 -0
- pooledscreenid-0.1.1/examples/data/met_fold_gains.csv +11 -0
- pooledscreenid-0.1.1/examples/outputs/egfr/claim_ledger.json +92 -0
- pooledscreenid-0.1.1/examples/outputs/egfr/report.json +63 -0
- pooledscreenid-0.1.1/examples/outputs/egfr/report.md +23 -0
- pooledscreenid-0.1.1/examples/outputs/met/claim_ledger.json +86 -0
- pooledscreenid-0.1.1/examples/outputs/met/report.json +62 -0
- pooledscreenid-0.1.1/examples/outputs/met/report.md +22 -0
- pooledscreenid-0.1.1/examples/run_egfr.py +8 -0
- pooledscreenid-0.1.1/examples/run_met.py +8 -0
- pooledscreenid-0.1.1/pyproject.toml +45 -0
- pooledscreenid-0.1.1/schemas/claim_ledger.schema.json +54 -0
- pooledscreenid-0.1.1/setup.cfg +4 -0
- pooledscreenid-0.1.1/src/pooledscreenid/__init__.py +14 -0
- pooledscreenid-0.1.1/src/pooledscreenid/audit.py +186 -0
- pooledscreenid-0.1.1/src/pooledscreenid/cli.py +23 -0
- pooledscreenid-0.1.1/src/pooledscreenid/ledger.py +42 -0
- pooledscreenid-0.1.1/src/pooledscreenid/models.py +64 -0
- pooledscreenid-0.1.1/src/pooledscreenid.egg-info/PKG-INFO +109 -0
- pooledscreenid-0.1.1/src/pooledscreenid.egg-info/SOURCES.txt +32 -0
- pooledscreenid-0.1.1/src/pooledscreenid.egg-info/dependency_links.txt +1 -0
- pooledscreenid-0.1.1/src/pooledscreenid.egg-info/entry_points.txt +2 -0
- pooledscreenid-0.1.1/src/pooledscreenid.egg-info/top_level.txt +1 -0
- pooledscreenid-0.1.1/tests/test_audit.py +45 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
name: tests
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
pull_request:
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
pytest:
|
|
9
|
+
runs-on: ubuntu-latest
|
|
10
|
+
strategy:
|
|
11
|
+
matrix:
|
|
12
|
+
python-version: ["3.10", "3.11", "3.12", "3.13"]
|
|
13
|
+
steps:
|
|
14
|
+
- uses: actions/checkout@v4
|
|
15
|
+
- uses: actions/setup-python@v5
|
|
16
|
+
with:
|
|
17
|
+
python-version: ${{ matrix.python-version }}
|
|
18
|
+
- run: python -m pip install --upgrade pip
|
|
19
|
+
- run: python -m pip install -e . pytest
|
|
20
|
+
- run: python -m pytest -q
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 0.1.1 - 2026-08-29
|
|
4
|
+
|
|
5
|
+
- Added `external_calibration` as the fourth independent evidence-vector axis.
|
|
6
|
+
- Added `resolution_inputs` so the summary claim resolution is auditable from
|
|
7
|
+
the four source fields.
|
|
8
|
+
- Upgraded the claim-ledger schema to 1.1.0.
|
|
9
|
+
- Added schema-focused tests and a Python 3.10-3.13 continuous-integration
|
|
10
|
+
matrix.
|
|
11
|
+
- Clarified that this article-linked release follows semantic versioning and
|
|
12
|
+
has no third-party runtime dependencies.
|
|
13
|
+
|
|
14
|
+
## 0.1.0 - 2026-08-29
|
|
15
|
+
|
|
16
|
+
- First public release with Python API, command-line interface, frozen EGFR and
|
|
17
|
+
MET examples, integrity manifests and machine-readable claim output.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
cff-version: 1.2.0
|
|
2
|
+
message: "If you use PooledScreenID, cite the archived software release and the accompanying methods article."
|
|
3
|
+
title: "PooledScreenID: outcome-blind shortcut and separability diagnostics for pooled variant-effect screens"
|
|
4
|
+
type: software
|
|
5
|
+
version: 0.1.1
|
|
6
|
+
date-released: 2026-08-29
|
|
7
|
+
license: MIT
|
|
8
|
+
authors:
|
|
9
|
+
- family-names: Niu
|
|
10
|
+
given-names: Niu
|
|
11
|
+
- family-names: Wei
|
|
12
|
+
given-names: Fang
|
|
13
|
+
- family-names: Wang
|
|
14
|
+
given-names: Yan
|
|
15
|
+
- family-names: Liu
|
|
16
|
+
given-names: Hu
|
|
17
|
+
- family-names: Wu
|
|
18
|
+
given-names: Bin
|
|
19
|
+
repository-code: "https://doi.org/10.5281/zenodo.22156510"
|
|
20
|
+
doi: "10.5281/zenodo.22156510"
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 PooledScreenID contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pooledscreenid
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: Outcome-blind shortcut and separability diagnostics for pooled variant-effect screens
|
|
5
|
+
Author: Niu Niu, Fang Wei, Yan Wang, Hu Liu, Bin Wu
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Documentation, https://doi.org/10.5281/zenodo.22156510
|
|
8
|
+
Project-URL: Repository, https://doi.org/10.5281/zenodo.22156510
|
|
9
|
+
Keywords: deep mutational scanning,cold start,negative control,identifiability,variant effect
|
|
10
|
+
Classifier: Development Status :: 4 - Beta
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
16
|
+
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
|
|
17
|
+
Requires-Python: >=3.10
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
License-File: LICENSE
|
|
20
|
+
Dynamic: license-file
|
|
21
|
+
|
|
22
|
+
# PooledScreenID
|
|
23
|
+
|
|
24
|
+
PooledScreenID is a small, installable Python package for reporting four
|
|
25
|
+
quantities separately in cold-start pooled variant-effect analyses:
|
|
26
|
+
|
|
27
|
+
1. material predictive gain;
|
|
28
|
+
2. association with an outcome-blind control channel;
|
|
29
|
+
3. representation separability at a prespecified operating scale;
|
|
30
|
+
4. external calibration, kept distinct from the target estimand; and
|
|
31
|
+
5. the resulting allowed, restricted and prohibited claims.
|
|
32
|
+
|
|
33
|
+
The package does not infer a molecular mechanism and does not make treatment
|
|
34
|
+
recommendations. A cold split is treated as a transport test, not as proof of
|
|
35
|
+
the information source used by a model.
|
|
36
|
+
|
|
37
|
+
## Install
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
python -m pip install pooledscreenid-0.1.1-py3-none-any.whl
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
For a source checkout:
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
python -m pip install -e .
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
## Minimal Python API
|
|
50
|
+
|
|
51
|
+
```python
|
|
52
|
+
from pooledscreenid import run_audit
|
|
53
|
+
|
|
54
|
+
report, ledger = run_audit(
|
|
55
|
+
config_path="examples/configs/egfr.json",
|
|
56
|
+
output_dir="example_output/egfr",
|
|
57
|
+
)
|
|
58
|
+
print(report["claim_resolution"])
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
## Command line
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
pooledscreenid audit \
|
|
65
|
+
--config examples/configs/egfr.json \
|
|
66
|
+
--output-dir example_output/egfr
|
|
67
|
+
|
|
68
|
+
pooledscreenid audit \
|
|
69
|
+
--config examples/configs/met.json \
|
|
70
|
+
--output-dir example_output/met
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
Each run writes `report.json`, `report.md` and `claim_ledger.json`. Inputs,
|
|
74
|
+
configuration, source hashes and expected outputs are frozen in the release.
|
|
75
|
+
The ledger exposes `material_signal`, `control_association`, `separability` and
|
|
76
|
+
`external_calibration` as independent fields. `claim_resolution` is generated
|
|
77
|
+
from those fields under priority-ordered rules and never replaces them.
|
|
78
|
+
|
|
79
|
+
PooledScreenID 0.1.1 is the article-linked frozen release. The public API is
|
|
80
|
+
managed with semantic versioning. It supports Python 3.10-3.13 and has no
|
|
81
|
+
third-party runtime dependencies; the test suite uses pytest.
|
|
82
|
+
|
|
83
|
+
## Included end-to-end examples
|
|
84
|
+
|
|
85
|
+
- `EGFR`: ten frozen variant-cold folds from the L858R-background pooled EGFR
|
|
86
|
+
inhibitor screen, plus the outcome-free geometry and conditional operating
|
|
87
|
+
boundary used in the manuscript.
|
|
88
|
+
- `MET`: ten frozen variant-cold folds from an independently selected pooled
|
|
89
|
+
MET inhibitor screen. The example demonstrates a result below the materiality
|
|
90
|
+
gate and explicitly leaves separability unevaluated.
|
|
91
|
+
|
|
92
|
+
These examples begin with frozen, source-derived fold diagnostics rather than
|
|
93
|
+
raw sequencing reads. They reproduce the evidence-to-claim stage of the
|
|
94
|
+
framework; raw count processing and model fitting remain documented in the
|
|
95
|
+
accompanying analysis repository.
|
|
96
|
+
|
|
97
|
+
## Interpretation order
|
|
98
|
+
|
|
99
|
+
The software reports the four-axis evidence vector before returning a summary label. If
|
|
100
|
+
shared predictability exceeds its prespecified boundary, or lies inside a
|
|
101
|
+
prespecified boundary zone, fine-grained attribution is restricted before any
|
|
102
|
+
control-specific contrast is interpreted. Absence of a material increment is
|
|
103
|
+
not an equivalence or biological-null claim.
|
|
104
|
+
|
|
105
|
+
## Release integrity
|
|
106
|
+
|
|
107
|
+
`RELEASE_MANIFEST.json` and `SHA256SUMS.txt` bind the software, tests, continuous-integration configuration, examples,
|
|
108
|
+
configuration files and claim ledger to this release. The Zenodo record is the
|
|
109
|
+
permanent release series: <https://doi.org/10.5281/zenodo.22156510>.
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
# PooledScreenID
|
|
2
|
+
|
|
3
|
+
PooledScreenID is a small, installable Python package for reporting four
|
|
4
|
+
quantities separately in cold-start pooled variant-effect analyses:
|
|
5
|
+
|
|
6
|
+
1. material predictive gain;
|
|
7
|
+
2. association with an outcome-blind control channel;
|
|
8
|
+
3. representation separability at a prespecified operating scale;
|
|
9
|
+
4. external calibration, kept distinct from the target estimand; and
|
|
10
|
+
5. the resulting allowed, restricted and prohibited claims.
|
|
11
|
+
|
|
12
|
+
The package does not infer a molecular mechanism and does not make treatment
|
|
13
|
+
recommendations. A cold split is treated as a transport test, not as proof of
|
|
14
|
+
the information source used by a model.
|
|
15
|
+
|
|
16
|
+
## Install
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
python -m pip install pooledscreenid-0.1.1-py3-none-any.whl
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
For a source checkout:
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
python -m pip install -e .
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Minimal Python API
|
|
29
|
+
|
|
30
|
+
```python
|
|
31
|
+
from pooledscreenid import run_audit
|
|
32
|
+
|
|
33
|
+
report, ledger = run_audit(
|
|
34
|
+
config_path="examples/configs/egfr.json",
|
|
35
|
+
output_dir="example_output/egfr",
|
|
36
|
+
)
|
|
37
|
+
print(report["claim_resolution"])
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## Command line
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
pooledscreenid audit \
|
|
44
|
+
--config examples/configs/egfr.json \
|
|
45
|
+
--output-dir example_output/egfr
|
|
46
|
+
|
|
47
|
+
pooledscreenid audit \
|
|
48
|
+
--config examples/configs/met.json \
|
|
49
|
+
--output-dir example_output/met
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
Each run writes `report.json`, `report.md` and `claim_ledger.json`. Inputs,
|
|
53
|
+
configuration, source hashes and expected outputs are frozen in the release.
|
|
54
|
+
The ledger exposes `material_signal`, `control_association`, `separability` and
|
|
55
|
+
`external_calibration` as independent fields. `claim_resolution` is generated
|
|
56
|
+
from those fields under priority-ordered rules and never replaces them.
|
|
57
|
+
|
|
58
|
+
PooledScreenID 0.1.1 is the article-linked frozen release. The public API is
|
|
59
|
+
managed with semantic versioning. It supports Python 3.10-3.13 and has no
|
|
60
|
+
third-party runtime dependencies; the test suite uses pytest.
|
|
61
|
+
|
|
62
|
+
## Included end-to-end examples
|
|
63
|
+
|
|
64
|
+
- `EGFR`: ten frozen variant-cold folds from the L858R-background pooled EGFR
|
|
65
|
+
inhibitor screen, plus the outcome-free geometry and conditional operating
|
|
66
|
+
boundary used in the manuscript.
|
|
67
|
+
- `MET`: ten frozen variant-cold folds from an independently selected pooled
|
|
68
|
+
MET inhibitor screen. The example demonstrates a result below the materiality
|
|
69
|
+
gate and explicitly leaves separability unevaluated.
|
|
70
|
+
|
|
71
|
+
These examples begin with frozen, source-derived fold diagnostics rather than
|
|
72
|
+
raw sequencing reads. They reproduce the evidence-to-claim stage of the
|
|
73
|
+
framework; raw count processing and model fitting remain documented in the
|
|
74
|
+
accompanying analysis repository.
|
|
75
|
+
|
|
76
|
+
## Interpretation order
|
|
77
|
+
|
|
78
|
+
The software reports the four-axis evidence vector before returning a summary label. If
|
|
79
|
+
shared predictability exceeds its prespecified boundary, or lies inside a
|
|
80
|
+
prespecified boundary zone, fine-grained attribution is restricted before any
|
|
81
|
+
control-specific contrast is interpreted. Absence of a material increment is
|
|
82
|
+
not an equivalence or biological-null claim.
|
|
83
|
+
|
|
84
|
+
## Release integrity
|
|
85
|
+
|
|
86
|
+
`RELEASE_MANIFEST.json` and `SHA256SUMS.txt` bind the software, tests, continuous-integration configuration, examples,
|
|
87
|
+
configuration files and claim ledger to this release. The Zenodo record is the
|
|
88
|
+
permanent release series: <https://doi.org/10.5281/zenodo.22156510>.
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Third-party data notices
|
|
2
|
+
|
|
3
|
+
The release contains only small, derived fold-level diagnostic tables and
|
|
4
|
+
machine-readable summaries required to replay the published examples. It does
|
|
5
|
+
not redistribute raw GSE305057 sequencing files, the raw MET screen, article
|
|
6
|
+
PDFs, clinical records, patient-level data or licensed databases.
|
|
7
|
+
|
|
8
|
+
- EGFR example: derived from NCBI GEO accession GSE305057. Users should cite
|
|
9
|
+
the source study and retrieve raw data from GEO under the source terms.
|
|
10
|
+
- MET example: derived from the public Frase laboratory MET kinase inhibitor
|
|
11
|
+
DMS repository. Users should cite the source repository and study.
|
|
12
|
+
- Robichaux independent-construct results are described in the manuscript but
|
|
13
|
+
are not redistributed in this minimal software release.
|
|
14
|
+
|
|
15
|
+
Derived tables are provided for computational reproducibility and retain
|
|
16
|
+
source identifiers in their configuration and provenance records.
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"dataset_id": "EGFR_GSE305057",
|
|
3
|
+
"fold_gains_csv": "../data/egfr_fold_gains.csv",
|
|
4
|
+
"materiality_threshold": 0.02,
|
|
5
|
+
"target_representation": "smooth residue-position representation",
|
|
6
|
+
"outcome_blind_control": "DMSO count/QC atlas",
|
|
7
|
+
"prediction_unit": "variant-condition edge",
|
|
8
|
+
"independent_unit": "unique variant with position-aware resampling",
|
|
9
|
+
"block_unit": "20-residue library block",
|
|
10
|
+
"estimand": "variant-cold MAE gain of position and its residual gain after the outcome-blind control atlas",
|
|
11
|
+
"eta": 0.21321233482512197,
|
|
12
|
+
"eta_boundary": 0.219,
|
|
13
|
+
"boundary_zone": 0.01,
|
|
14
|
+
"source_id": "NCBI GEO GSE305057; L858R-background second-site pooled screen",
|
|
15
|
+
"external_calibration": {
|
|
16
|
+
"status": "supportive_distinct_estimand",
|
|
17
|
+
"source": "Robichaux et al. independent Ba/F3 construct panel",
|
|
18
|
+
"estimand": "cold-start prediction from the source study's coarse structure-group labels",
|
|
19
|
+
"note": "Positive calibration at a distinct coarse grouping estimand; it does not validate fine-grained continuous structure in GSE305057."
|
|
20
|
+
},
|
|
21
|
+
"expected_claim_resolution": "restricted_boundary_proximal",
|
|
22
|
+
"metadata": {
|
|
23
|
+
"position_unique_variance_fraction_best_direction": 0.05743890584691004,
|
|
24
|
+
"continuous_structure_gain_after_control_and_position": -0.002720124638247945,
|
|
25
|
+
"control_atlas_unconditional_gain": 0.10628083240037886,
|
|
26
|
+
"control_given_position_gain": 0.00844304967707693,
|
|
27
|
+
"interpretation": "control-associated positional result; fine-grained attribution restricted"
|
|
28
|
+
}
|
|
29
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"dataset_id": "MET_PUBLIC_DMS",
|
|
3
|
+
"fold_gains_csv": "../data/met_fold_gains.csv",
|
|
4
|
+
"materiality_threshold": 0.02,
|
|
5
|
+
"target_representation": "smooth residue-position representation",
|
|
6
|
+
"outcome_blind_control": "released DMSO fitness/SD covariates (Tier B control)",
|
|
7
|
+
"prediction_unit": "variant-inhibitor edge",
|
|
8
|
+
"independent_unit": "unique variant",
|
|
9
|
+
"block_unit": "20-residue block",
|
|
10
|
+
"estimand": "variant-cold MAE gain of position and residual gain after released control covariates",
|
|
11
|
+
"eta": null,
|
|
12
|
+
"eta_boundary": null,
|
|
13
|
+
"boundary_zone": 0.0,
|
|
14
|
+
"source_id": "Frase laboratory public MET kinase inhibitor DMS repository",
|
|
15
|
+
"external_calibration": {
|
|
16
|
+
"status": "external_contrast_only",
|
|
17
|
+
"source": "Independent MET pooled inhibitor screen",
|
|
18
|
+
"estimand": "cross-dataset contrast in shortcut magnitude",
|
|
19
|
+
"note": "The MET analysis is an external contrast, not calibration of the EGFR target estimand."
|
|
20
|
+
},
|
|
21
|
+
"expected_claim_resolution": "no_material_increment",
|
|
22
|
+
"metadata": {
|
|
23
|
+
"block_permutation_null_mean": 0.006022973402010649,
|
|
24
|
+
"block_permutation_p": 0.005988023952095809,
|
|
25
|
+
"interpretation": "no EGFR-sized material position gain; smaller shortcuts not excluded"
|
|
26
|
+
}
|
|
27
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
fold,unadjusted_gain,adjusted_gain
|
|
2
|
+
1,0.1059777304912998,0.0048186999161899
|
|
3
|
+
2,0.0905323124916878,0.0004236617897617
|
|
4
|
+
3,0.1124205997787652,0.0042290727688932
|
|
5
|
+
4,0.0862271643262527,0.0056428031648455
|
|
6
|
+
5,0.0870414775800483,0.0038583840936432
|
|
7
|
+
6,0.118258013241681,0.0016648731016825
|
|
8
|
+
7,0.1088183403032501,0.0017212395905227
|
|
9
|
+
8,0.0972533535610891,0.0019253213041058
|
|
10
|
+
9,0.0940889871896792,-0.0002014812743086
|
|
11
|
+
10,0.1003905456728689,-0.0014518770517326
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
fold,unadjusted_gain,adjusted_gain
|
|
2
|
+
1,0.00963338634441313,-0.0005106063266484551
|
|
3
|
+
2,0.004941608828022082,-0.0001186125773013913
|
|
4
|
+
3,0.002962998695935859,4.962424146637279e-05
|
|
5
|
+
4,0.004453951625545294,7.340498336572132e-05
|
|
6
|
+
5,0.007491007099538871,0.00048685587075725234
|
|
7
|
+
6,0.006174244928453199,0.0005966772424034206
|
|
8
|
+
7,0.00642193819895609,-0.0005431709212077029
|
|
9
|
+
8,0.001985832625287287,-0.00033610057399025006
|
|
10
|
+
9,0.00976383637397693,-0.0004701601295301616
|
|
11
|
+
10,0.008515505195033635,-1.8866541230400102e-05
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema_version": "1.1.0",
|
|
3
|
+
"software": {
|
|
4
|
+
"name": "pooledscreenid",
|
|
5
|
+
"version": "0.1.1"
|
|
6
|
+
},
|
|
7
|
+
"dataset_id": "EGFR_GSE305057",
|
|
8
|
+
"evidence": [
|
|
9
|
+
{
|
|
10
|
+
"evidence_id": "EGFR_GSE305057:screen-audit-v1",
|
|
11
|
+
"material_signal": "supported",
|
|
12
|
+
"control_association": "supported",
|
|
13
|
+
"separability": "boundary_proximal",
|
|
14
|
+
"external_calibration": {
|
|
15
|
+
"status": "supportive_distinct_estimand",
|
|
16
|
+
"source": "Robichaux et al. independent Ba/F3 construct panel",
|
|
17
|
+
"estimand": "cold-start prediction from the source study's coarse structure-group labels",
|
|
18
|
+
"note": "Positive calibration at a distinct coarse grouping estimand; it does not validate fine-grained continuous structure in GSE305057."
|
|
19
|
+
},
|
|
20
|
+
"claim_resolution": "restricted_boundary_proximal",
|
|
21
|
+
"resolution_inputs": {
|
|
22
|
+
"material_signal": "supported",
|
|
23
|
+
"control_association": "supported",
|
|
24
|
+
"separability": "boundary_proximal",
|
|
25
|
+
"external_calibration": "supportive_distinct_estimand"
|
|
26
|
+
},
|
|
27
|
+
"config_sha256": "bdad818be7f2a25a861011558d3dc88678007875b027eb9f0498f181efe7bded",
|
|
28
|
+
"input_sha256": "01f4921e8b7238ddb68717c87fc7ed7d7c12c85686ff25f70cdfd1b1d1a361ef"
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
"allowed_claims": [
|
|
32
|
+
{
|
|
33
|
+
"text": "The frozen variant-cold MAE gain of position and its residual gain after the outcome-blind control atlas and its uncertainty may be reported.",
|
|
34
|
+
"evidence_ids": [
|
|
35
|
+
"EGFR_GSE305057:screen-audit-v1"
|
|
36
|
+
]
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"text": "Cold-start transport and information-source attribution are reported separately.",
|
|
40
|
+
"evidence_ids": [
|
|
41
|
+
"EGFR_GSE305057:screen-audit-v1"
|
|
42
|
+
]
|
|
43
|
+
}
|
|
44
|
+
],
|
|
45
|
+
"restricted_claims": [
|
|
46
|
+
{
|
|
47
|
+
"text": "The apparent increment is associated with the outcome-blind control channel.",
|
|
48
|
+
"evidence_ids": [
|
|
49
|
+
"EGFR_GSE305057:screen-audit-v1"
|
|
50
|
+
]
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"text": "Fine-grained attribution is restricted by the prespecified separability assessment.",
|
|
54
|
+
"evidence_ids": [
|
|
55
|
+
"EGFR_GSE305057:screen-audit-v1"
|
|
56
|
+
]
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"text": "External positive calibration concerns a distinct estimand and does not validate the target representation.",
|
|
60
|
+
"evidence_ids": [
|
|
61
|
+
"EGFR_GSE305057:screen-audit-v1"
|
|
62
|
+
]
|
|
63
|
+
}
|
|
64
|
+
],
|
|
65
|
+
"prohibited_claims": [
|
|
66
|
+
{
|
|
67
|
+
"text": "Prediction alone does not establish a binding or causal mechanism.",
|
|
68
|
+
"evidence_ids": [
|
|
69
|
+
"EGFR_GSE305057:screen-audit-v1"
|
|
70
|
+
]
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"text": "This analysis does not support patient-level treatment recommendation.",
|
|
74
|
+
"evidence_ids": [
|
|
75
|
+
"EGFR_GSE305057:screen-audit-v1"
|
|
76
|
+
]
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"text": "Do not claim that adjustment proves the shared signal is purely technical.",
|
|
80
|
+
"evidence_ids": [
|
|
81
|
+
"EGFR_GSE305057:screen-audit-v1"
|
|
82
|
+
]
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"text": "Do not make a structure-specific attribution from this dataset.",
|
|
86
|
+
"evidence_ids": [
|
|
87
|
+
"EGFR_GSE305057:screen-audit-v1"
|
|
88
|
+
]
|
|
89
|
+
}
|
|
90
|
+
],
|
|
91
|
+
"human_review_required": true
|
|
92
|
+
}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"dataset_id": "EGFR_GSE305057",
|
|
3
|
+
"folds": 10,
|
|
4
|
+
"unadjusted_gain_mean": 0.10010085246366221,
|
|
5
|
+
"adjusted_gain_mean": 0.00226306974036033,
|
|
6
|
+
"materiality_threshold": 0.02,
|
|
7
|
+
"material_signal": "supported",
|
|
8
|
+
"control_association": "supported",
|
|
9
|
+
"separability": "boundary_proximal",
|
|
10
|
+
"external_calibration": {
|
|
11
|
+
"status": "supportive_distinct_estimand",
|
|
12
|
+
"source": "Robichaux et al. independent Ba/F3 construct panel",
|
|
13
|
+
"estimand": "cold-start prediction from the source study's coarse structure-group labels",
|
|
14
|
+
"note": "Positive calibration at a distinct coarse grouping estimand; it does not validate fine-grained continuous structure in GSE305057."
|
|
15
|
+
},
|
|
16
|
+
"eta": 0.21321233482512197,
|
|
17
|
+
"eta_boundary": 0.219,
|
|
18
|
+
"boundary_distance": 0.005787665174878026,
|
|
19
|
+
"claim_resolution": "restricted_boundary_proximal",
|
|
20
|
+
"allowed_claims": [
|
|
21
|
+
"The frozen variant-cold MAE gain of position and its residual gain after the outcome-blind control atlas and its uncertainty may be reported.",
|
|
22
|
+
"Cold-start transport and information-source attribution are reported separately."
|
|
23
|
+
],
|
|
24
|
+
"restricted_claims": [
|
|
25
|
+
"The apparent increment is associated with the outcome-blind control channel.",
|
|
26
|
+
"Fine-grained attribution is restricted by the prespecified separability assessment.",
|
|
27
|
+
"External positive calibration concerns a distinct estimand and does not validate the target representation."
|
|
28
|
+
],
|
|
29
|
+
"prohibited_claims": [
|
|
30
|
+
"Prediction alone does not establish a binding or causal mechanism.",
|
|
31
|
+
"This analysis does not support patient-level treatment recommendation.",
|
|
32
|
+
"Do not claim that adjustment proves the shared signal is purely technical.",
|
|
33
|
+
"Do not make a structure-specific attribution from this dataset."
|
|
34
|
+
],
|
|
35
|
+
"audit_context": {
|
|
36
|
+
"prediction_unit": "variant-condition edge",
|
|
37
|
+
"independent_unit": "unique variant with position-aware resampling",
|
|
38
|
+
"block_unit": "20-residue library block",
|
|
39
|
+
"target_representation": "smooth residue-position representation",
|
|
40
|
+
"outcome_blind_control": "DMSO count/QC atlas",
|
|
41
|
+
"source_id": "NCBI GEO GSE305057; L858R-background second-site pooled screen",
|
|
42
|
+
"fold_summary": {
|
|
43
|
+
"folds": 10,
|
|
44
|
+
"unadjusted_gain_mean": 0.10010085246366221,
|
|
45
|
+
"adjusted_gain_mean": 0.00226306974036033,
|
|
46
|
+
"unadjusted_gain_range": [
|
|
47
|
+
0.0862271643262527,
|
|
48
|
+
0.118258013241681
|
|
49
|
+
],
|
|
50
|
+
"adjusted_gain_range": [
|
|
51
|
+
-0.0014518770517326,
|
|
52
|
+
0.0056428031648455
|
|
53
|
+
],
|
|
54
|
+
"input_sha256": "01f4921e8b7238ddb68717c87fc7ed7d7c12c85686ff25f70cdfd1b1d1a361ef"
|
|
55
|
+
},
|
|
56
|
+
"folds_are_independent_biological_units": false
|
|
57
|
+
},
|
|
58
|
+
"software": {
|
|
59
|
+
"name": "pooledscreenid",
|
|
60
|
+
"version": "0.1.1"
|
|
61
|
+
},
|
|
62
|
+
"config_sha256": "bdad818be7f2a25a861011558d3dc88678007875b027eb9f0498f181efe7bded"
|
|
63
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# EGFR_GSE305057 PooledScreenID report
|
|
2
|
+
|
|
3
|
+
- Claim resolution: `restricted_boundary_proximal`
|
|
4
|
+
- Unadjusted gain: `0.100101`
|
|
5
|
+
- Adjusted gain: `0.002263`
|
|
6
|
+
- Materiality threshold: `0.020000`
|
|
7
|
+
- Separability: `boundary_proximal`
|
|
8
|
+
- External calibration: `supportive_distinct_estimand`
|
|
9
|
+
|
|
10
|
+
## Allowed claims
|
|
11
|
+
- The frozen variant-cold MAE gain of position and its residual gain after the outcome-blind control atlas and its uncertainty may be reported.
|
|
12
|
+
- Cold-start transport and information-source attribution are reported separately.
|
|
13
|
+
|
|
14
|
+
## Restricted claims
|
|
15
|
+
- The apparent increment is associated with the outcome-blind control channel.
|
|
16
|
+
- Fine-grained attribution is restricted by the prespecified separability assessment.
|
|
17
|
+
- External positive calibration concerns a distinct estimand and does not validate the target representation.
|
|
18
|
+
|
|
19
|
+
## Prohibited interpretations
|
|
20
|
+
- Prediction alone does not establish a binding or causal mechanism.
|
|
21
|
+
- This analysis does not support patient-level treatment recommendation.
|
|
22
|
+
- Do not claim that adjustment proves the shared signal is purely technical.
|
|
23
|
+
- Do not make a structure-specific attribution from this dataset.
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema_version": "1.1.0",
|
|
3
|
+
"software": {
|
|
4
|
+
"name": "pooledscreenid",
|
|
5
|
+
"version": "0.1.1"
|
|
6
|
+
},
|
|
7
|
+
"dataset_id": "MET_PUBLIC_DMS",
|
|
8
|
+
"evidence": [
|
|
9
|
+
{
|
|
10
|
+
"evidence_id": "MET_PUBLIC_DMS:screen-audit-v1",
|
|
11
|
+
"material_signal": "below_threshold",
|
|
12
|
+
"control_association": "not_supported",
|
|
13
|
+
"separability": "not_evaluated",
|
|
14
|
+
"external_calibration": {
|
|
15
|
+
"status": "external_contrast_only",
|
|
16
|
+
"source": "Independent MET pooled inhibitor screen",
|
|
17
|
+
"estimand": "cross-dataset contrast in shortcut magnitude",
|
|
18
|
+
"note": "The MET analysis is an external contrast, not calibration of the EGFR target estimand."
|
|
19
|
+
},
|
|
20
|
+
"claim_resolution": "no_material_increment",
|
|
21
|
+
"resolution_inputs": {
|
|
22
|
+
"material_signal": "below_threshold",
|
|
23
|
+
"control_association": "not_supported",
|
|
24
|
+
"separability": "not_evaluated",
|
|
25
|
+
"external_calibration": "external_contrast_only"
|
|
26
|
+
},
|
|
27
|
+
"config_sha256": "64e2b9b2348b853dadff10162ae21b73905972d55bc0a37238df4b8b17084e30",
|
|
28
|
+
"input_sha256": "731660fbc4f79ed5904ae9837bece5417caf7f8e472e19ceca24e39fb82fe1c8"
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
"allowed_claims": [
|
|
32
|
+
{
|
|
33
|
+
"text": "The frozen variant-cold MAE gain of position and residual gain after released control covariates and its uncertainty may be reported.",
|
|
34
|
+
"evidence_ids": [
|
|
35
|
+
"MET_PUBLIC_DMS:screen-audit-v1"
|
|
36
|
+
]
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"text": "Cold-start transport and information-source attribution are reported separately.",
|
|
40
|
+
"evidence_ids": [
|
|
41
|
+
"MET_PUBLIC_DMS:screen-audit-v1"
|
|
42
|
+
]
|
|
43
|
+
}
|
|
44
|
+
],
|
|
45
|
+
"restricted_claims": [
|
|
46
|
+
{
|
|
47
|
+
"text": "No material increment was observed at the frozen threshold.",
|
|
48
|
+
"evidence_ids": [
|
|
49
|
+
"MET_PUBLIC_DMS:screen-audit-v1"
|
|
50
|
+
]
|
|
51
|
+
}
|
|
52
|
+
],
|
|
53
|
+
"prohibited_claims": [
|
|
54
|
+
{
|
|
55
|
+
"text": "Prediction alone does not establish a binding or causal mechanism.",
|
|
56
|
+
"evidence_ids": [
|
|
57
|
+
"MET_PUBLIC_DMS:screen-audit-v1"
|
|
58
|
+
]
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"text": "This analysis does not support patient-level treatment recommendation.",
|
|
62
|
+
"evidence_ids": [
|
|
63
|
+
"MET_PUBLIC_DMS:screen-audit-v1"
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"text": "Do not interpret the result as equivalence or a biological null.",
|
|
68
|
+
"evidence_ids": [
|
|
69
|
+
"MET_PUBLIC_DMS:screen-audit-v1"
|
|
70
|
+
]
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"text": "Do not claim that representation separability was established.",
|
|
74
|
+
"evidence_ids": [
|
|
75
|
+
"MET_PUBLIC_DMS:screen-audit-v1"
|
|
76
|
+
]
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"text": "Do not claim external calibration of the target estimand.",
|
|
80
|
+
"evidence_ids": [
|
|
81
|
+
"MET_PUBLIC_DMS:screen-audit-v1"
|
|
82
|
+
]
|
|
83
|
+
}
|
|
84
|
+
],
|
|
85
|
+
"human_review_required": true
|
|
86
|
+
}
|