sfisch commited on
Commit
e892982
·
verified ·
1 Parent(s): 835ef26

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +36 -0
README.md CHANGED
@@ -38,6 +38,42 @@ human protein pairs interact directly or indirectly.
38
  Huttlin et al. The BioPlex Network: A Systematic Exploration of the Human Interactome. Cell. 2015 Jul 16;162(2):425-40. doi: 10.1016/j.cell.2015.06.043.
39
  Reimand et al. g:Profiler-a web server for functional interpretation of gene lists (2016 update). Nucleic Acids Res. 2016 Jul 8;44(W1):W83-9. doi: 10.1093/nar/gkw199.
40
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
  ## Associated code
42
  Additional code examples can be found on our [GitHub](https://github.com/KDrewLab/DirectContacts2_analysis.git), including:
43
  importing the [DirectContacts2 model](https://huggingface.co/DrewLab/DirectContacts2_AutoGluon) to make predictions, importing the
 
38
  Huttlin et al. The BioPlex Network: A Systematic Exploration of the Human Interactome. Cell. 2015 Jul 16;162(2):425-40. doi: 10.1016/j.cell.2015.06.043.
39
  Reimand et al. g:Profiler-a web server for functional interpretation of gene lists (2016 update). Nucleic Acids Res. 2016 Jul 8;44(W1):W83-9. doi: 10.1093/nar/gkw199.
40
 
41
+ ## Description of dataset files
42
+ |-- **full**
43
+ |-- **humap3_full_feature_matrix_20220625.csv.gz**
44
+ This is the full feature matrix that contains all 26 million proteins pairs that DirectContacts2 makes
45
+ predictions on and the 324 features from >25,000 proteomic mass spectrometry experiments. The feature
46
+ matrix was originally developed in hu.MAP3.0.
47
+ |-- **reference_interactions**
48
+ |-- **benchmark_test_INTRAandINTER_complex_NegativePairs_20250619.csv**
49
+ These are the test set negatives that contains both intra- and inter-complex negative pairs. The file
50
+ contains a pair of proteins (defined by UniProt acession) per line. The set of structures (PDBs) these
51
+ interactions come from all have at least 5 subunits.
52
+ |-- **benchmark_test_IntraComplex_NegativePairs_pdbsize5_20240326.txt**
53
+ These are the test set negatives that contain only intra-complex negative pairs and are the negatives used
54
+ in the test feature matrix provided when reading in the test feature matrix using the *datasets* package.
55
+ The other feature matrix is provided under this same directory (*reference_interactions). All PDBs that
56
+ these interactions come from have at least 5 protein subunits. The file is structured with one pair of
57
+ proteins (defined by UniProt acession) per line.
58
+ |-- **benchmark_test_IntraComplex_PositivePairs_pdbsize5_20240326.txt**
59
+ These are the test set positives, which are only intra-complex pairs. The PDB structures from which the
60
+ interactions are derived all have at least 5 subunits. The file is structured with one pair of
61
+ proteins (defined by UniProt acession) per line.
62
+ |-- **benchmark_train_INTERandINTRA_complex_NegativePairs_pdbsize3_20240326.txt**
63
+ These are the training set negatives, which contain both inter- and intra-complex pairs. The set of
64
+ structures (PDBs) these interactions come from all have at least 3 subunits. The file is structured with
65
+ one pair of proteins (defined by UniProt acession) per line.
66
+ |-- **benchmark_train_IntraComplex_PositivePairs_pdbsize3_20240326.txt**
67
+ These are the test set positives, which are only intra-complex pairs. The PDB structures from which the
68
+ interactions are derived all have at least 3 subunits. The file is structured with one pair of
69
+ proteins (defined by UniProt acession) per line.
70
+ |-- **test**
71
+ |-- **test_FeatureMatrix_pdbsize5_only_INTRA_complex_NegativePairs_20240326.csv.gz**
72
+ This is the feature matrix for the test set of interactions.
73
+ |-- **train**
74
+ |-- **train_FeatureMatrix_pdbsize3_20240326.csv.gz**
75
+ This is the feature matrix for the training set of interactions.
76
+
77
  ## Associated code
78
  Additional code examples can be found on our [GitHub](https://github.com/KDrewLab/DirectContacts2_analysis.git), including:
79
  importing the [DirectContacts2 model](https://huggingface.co/DrewLab/DirectContacts2_AutoGluon) to make predictions, importing the