File size: 2,590 Bytes
c6ef8d3
7a10b7a
95d9557
a6a78bf
95d9557
 
 
 
 
 
c6ef8d3
95d9557
7a10b7a
95d9557
 
 
 
 
 
 
 
 
 
 
7a10b7a
 
 
 
6ca66db
7a10b7a
 
 
95d9557
 
 
 
 
 
 
 
4080714
95d9557
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
---
pretty_name: OpenPhase
license: other
viewer: false
tags:
  - protein
  - peptide
  - liquid-liquid-phase-separation
  - disordered-protein-regions
  - tabular
---

# OpenPhase

![PhaseFlow: sequence data to phase-behaviour learning](figures/PhaseFlow.png)

This repository groups three PhaseFlow research-data packages:

| Package | Task | Primary data |
| --- | --- | --- |
| [`llps/`](llps/README.md) | Protein-level LLPS learning | Canonical proteins, training units, fixed training plans, and evaluation inputs. |
| [`dpr/`](dpr/README.md) | Driving phase-separation region supervision | Protein records, region supervision, training schedules, and evaluation inputs. |
| [`peptide/`](peptide/README.md) | Short-peptide 4×4 PSSI phase-diagram modelling | The verified PhaseFlow input table and its preprocessing script. |

## Related resources

| Resource | Link | Role |
| --- | --- | --- |
| PhaseFlow code | [github.com/GENTEL-lab/PhaseFlow](https://github.com/GENTEL-lab/PhaseFlow) | Installation, inference scripts, configurations, and documentation |
| Unified checkpoint | [GENTEL-Lab/PhaseFlow](https://huggingface.co/GENTEL-Lab/PhaseFlow) | Combined peptide, full-protein, and DPR runtime weights |
| Online demo | [phaseflow.bio](http://phaseflow.bio/) | Interactive PhaseFlow usage |

## Open access

All data and accompanying preprocessing materials in this repository are
fully open source and freely available to the community. We warmly welcome
their use in research, benchmarking, method development, and reproducible
studies. Please cite the relevant PhaseFlow work and retain appropriate source
attribution when using or redistributing the data.

Benchmark inputs remain physically separated and must not be used for
training, feature selection, threshold tuning, or checkpoint selection.

## Integrity

Each package contains `metadata/file_inventory.csv`. Verify all listed files
before use; the inventory intentionally excludes itself to avoid a
self-referential checksum.

```python
import csv
import hashlib
from pathlib import Path

package = Path("llps")
with (package / "metadata/file_inventory.csv").open(newline="") as handle:
    for item in csv.DictReader(handle):
        digest = hashlib.sha256((package / item["path"]).read_bytes()).hexdigest()
        assert digest == item["sha256"], item["path"]
```

## Responsible use

These data are research resources, not clinical or diagnostic tools. Sequence
labels and benchmark annotations require independent validation and must be
interpreted under the documented evidence and coordinate conventions.