Importing
Mixins for importing data into pAnndata objects.
IOMixin
Data import utilities for building pAnnData objects from supported proteomics tools.
This module provides functions to parse outputs from common tools such as Proteome Discoverer and DIA-NN, automatically extracting protein and peptide quantification matrices, sample metadata, and relational mappings between peptides and proteins.
Supported tools
- Proteome Discoverer (PD 3.1, PD 2.4, etc.)
- DIA-NN (<1.8.1 and >2.0)
Methods:
| Name | Description |
|---|---|
import_data |
Main entry point that dispatches to the appropriate import function based on source_type. |
import_proteomeDiscoverer |
Parses PD output files and initializes a pAnnData object. |
import_diann |
Parses DIA-NN report file and initializes a pAnnData object. |
resolve_obs_columns |
Extracts |
suggest_obs_from_file |
Suggests sample-level metadata based on consistent filename tokens. |
analyze_filename_formats |
Analyzes filename structures to identify possible grouping patterns. |
Source code in src/scpviz/pAnnData/io.py
1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 | |
get_filenames
classmethod
Extract sample filenames from a DIA-NN or Proteome Discoverer report.
For DIA-NN reports, this extracts the 'Run' column from the table. For Proteome Discoverer (PD) output, it collects unique sample identifiers based on column headers (e.g. abundance columns like "Abundances (SampleX)").
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
source |
str or Path
|
Path to the input report file. |
required |
source_type |
str
|
Tool used to generate the report. Must be one of {'diann', 'pd'}. |
required |
Returns:
| Type | Description |
|---|---|
|
list of str: Extracted list of sample names or run filenames. |
Example
Extract DIA-NN run names:
Extract PD sample names from abundance columns:
Source code in src/scpviz/pAnnData/io.py
import_data
classmethod
Unified wrapper for importing data into a pAnnData object.
This function routes to a specific import handler based on the source_type,
such as Proteome Discoverer or DIA-NN. It parses protein/peptide expression data
and associated sample metadata, returning a fully initialized pAnnData object.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
source_type |
str
|
The input tool or data source. Supported values:
|
required |
**kwargs |
Additional keyword arguments forwarded to the relevant import function. |
{}
|
Returns:
| Name | Type | Description |
|---|---|---|
pAnnData |
A populated pAnnData object with |
Example
Importing Proteome Discoverer output for single-cell data:
obs_columns = ['Sample', 'method', 'duration', 'cell_line']
pdata_untreated_sc = import_data(
source_type='pd',
prot_file='data/202312_untreated/Marion_20231218_OTE_Aur60min_CBR_prot_Proteins.txt',
pep_file='data/202312_untreated/Marion_20231218_OTE_Aur60min_CBR_pep_PeptideGroups.txt',
obs_columns=obs_columns
)
Importing PD output for bulk data from an Excel file:
Note
If obs_columns is not provided and filename formats are inconsistent,
fallback parsing is applied with generic columns ("File", "parsingType").
Source code in src/scpviz/pAnnData/io.py
1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 | |
import_diann
classmethod
Import DIA-NN output into a pAnnData object.
This function parses a DIA-NN report file and separates protein- and peptide-level expression matrices using the specified abundance and metadata columns.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
report_file |
str
|
Path to the DIA-NN report file (required). |
required |
obs_columns |
list of str
|
List of metadata columns to extract from the filename for |
required |
prot_value |
str
|
Column name in DIA-NN output to use for protein quantification.
Default: |
required |
pep_value |
str
|
Column name in DIA-NN output to use for peptide quantification.
Default: |
required |
prot_var_columns |
list of str
|
Columns from the protein group table to store in |
required |
pep_var_columns |
list of str
|
Columns from the precursor table to store in |
required |
**kwargs |
Additional keyword arguments passed to |
{}
|
Returns:
| Name | Type | Description |
|---|---|---|
pAnnData |
A populated object with |
Example
To import data from a DIA-NN report file:
Note
- DIA-NN report should contain both protein group and precursor-level information.
- Metadata columns in filenames must be consistently formatted to extract
.obs.
Source code in src/scpviz/pAnnData/io.py
import_proteomeDiscoverer
classmethod
Import Proteome Discoverer (PD) output into a pAnnData object.
This is a convenience wrapper for import_data(source_type='pd'). It loads protein- and optionally peptide-level
expression data from PD report files and parses sample metadata columns.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
prot_file |
str
|
Path to the protein-level report file (required). |
required |
pep_file |
str
|
Path to the peptide-level report file (optional but recommended). |
required |
obs_columns |
list of str
|
List of columns to extract for |
required |
**kwargs |
Additional keyword arguments passed to |
{}
|
Returns:
| Name | Type | Description |
|---|---|---|
pAnnData |
A populated object with |
Example
To import data from Proteome Discoverer:
Note
- If
pep_fileis omitted, the resultingpAnnDatawill not include.pepor an RS matrix. - If filename structure is inconsistent and
obs_columnscannot be inferred, fallback columns are used.
Source code in src/scpviz/pAnnData/io.py
suggest_obs_columns
classmethod
Suggest .obs column names based on parsed sample names.
This function analyzes filenames or run names extracted from Proteome Discoverer
or DIA-NN reports and attempts to identify consistent metadata fields. These fields
may include gradient, amount, cell_line, or well_position, depending on
naming conventions and regular expression matches.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
source |
str or Path
|
Path to a DIA-NN or PD output file. |
required |
source_type |
str
|
Type of the input file. Supports |
required |
filenames |
list of str
|
List of sample file names or run labels to parse. If provided, bypasses file loading. |
required |
delimiter |
str
|
Delimiter to use for tokenizing filenames (e.g., |
required |
Returns:
| Type | Description |
|---|---|
|
list of str: Suggested list of metadata column names to assign to |
Example
To suggest observation columns from a file:
```
# Suggested columns: ['Sample', 'gradient', 'cell_line', 'duration']
['Sample', 'gradient', 'cell_line', 'duration']
```
Note
This function is typically used as part of the .import_data() flow
when filenames embed experimental metadata.
Source code in src/scpviz/pAnnData/io.py
analyze_filename_formats
Analyze filename structures to detect format consistency.
This function checks if all filenames can be split into the same number of tokens using the provided delimiter. It can optionally group files by token count and assign custom group labels.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
filenames |
list of str
|
List of sample or file names. |
required |
delimiter |
str
|
Delimiter used to split each filename (default: "_"). |
'_'
|
group_labels |
list of str
|
Optional group labels to assign to each unique token length group. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
dict |
Format information containing: - 'uniform': True if all filenames split into the same number of tokens. - 'n_tokens': List of token counts for each filename. - 'group_map': Mapping of filename to group label (if labels are provided). |
Example
Check if filenames have a uniform structure:
With group labels:
Source code in src/scpviz/pAnnData/io.py
1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 | |
classify_subtokens
Classify a token into one or more metadata categories based on keyword or pattern matching.
This function splits a token (e.g. from a filename) into subtokens using character-type transitions (e.g., "Aur60minDIA" → "Aur", "60", "min", "DIA"), then attempts to classify each subtoken using:
- Regex patterns (e.g., dates, well positions like A01)
- Fuzzy substring matching via a user-defined or default keyword map
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
token |
str
|
The input string to classify (e.g., "Aur60minDIA"). |
required |
used_labels |
set
|
Reserved for future logic to avoid assigning the same label twice. |
None
|
keyword_map |
dict
|
A dictionary of metadata categories (e.g., 'gradient') to example substrings. |
None
|
Returns:
| Type | Description |
|---|---|
|
list of str: A list of predicted metadata labels for the token (e.g., ['gradient', 'acquisition']). If no match is found, returns ['unknown??']. |
Example
Classify a gradient+time token:
Classify a well position:
Source code in src/scpviz/pAnnData/io.py
get_filenames
Extract sample filenames from a DIA-NN or Proteome Discoverer report.
For DIA-NN reports, this extracts the 'Run' column from the table. For Proteome Discoverer (PD) output, it collects unique sample identifiers based on column headers (e.g. abundance columns like "Abundances (SampleX)").
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
source |
str or Path
|
Path to the input report file. |
required |
source_type |
str
|
Tool used to generate the report. Must be one of {'diann', 'pd'}. |
required |
Returns:
| Type | Description |
|---|---|
List[str]
|
list of str: Extracted list of sample names or run filenames. |
Example
Extract DIA-NN run names:
Extract PD sample names from abundance columns:
Source code in src/scpviz/pAnnData/io.py
966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 | |
import_data
Unified wrapper for importing data into a pAnnData object.
This function routes to a specific import handler based on the source_type,
such as Proteome Discoverer or DIA-NN. It parses protein/peptide expression data
and associated sample metadata, returning a fully initialized pAnnData object.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
source_type |
str
|
The input tool or data source. Supported values:
|
required |
**kwargs |
Additional keyword arguments forwarded to the relevant import function. |
{}
|
Returns:
| Name | Type | Description |
|---|---|---|
pAnnData |
A populated pAnnData object with |
Example
Importing Proteome Discoverer output for single-cell data:
obs_columns = ['Sample', 'method', 'duration', 'cell_line']
pdata_untreated_sc = import_data(
source_type='pd',
prot_file='data/202312_untreated/Marion_20231218_OTE_Aur60min_CBR_prot_Proteins.txt',
pep_file='data/202312_untreated/Marion_20231218_OTE_Aur60min_CBR_pep_PeptideGroups.txt',
obs_columns=obs_columns
)
Importing PD output for bulk data from an Excel file:
Note
If obs_columns is not provided and filename formats are inconsistent,
fallback parsing is applied with generic columns ("File", "parsingType").
Source code in src/scpviz/pAnnData/io.py
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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 | |
import_diann
import_diann(report_file: Optional[str] = None, obs_columns: Optional[List[str]] = None, delimiter: Optional[str] = '_', prot_value: str = 'PG.MaxLFQ', pep_value: str = 'Precursor.Normalised', prot_var_columns: List[str] = ['Genes', 'Master.Protein'], pep_var_columns: List[str] = ['Genes', 'Protein.Group', 'Precursor.Charge', 'Modified.Sequence', 'Stripped.Sequence', 'Precursor.Id', 'All Mapped Proteins', 'All Mapped Genes'], **kwargs)
Import DIA-NN output into a pAnnData object.
This function parses a DIA-NN report file and separates protein- and peptide-level expression matrices using the specified abundance and metadata columns.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
report_file |
str
|
Path to the DIA-NN report file (required). |
None
|
obs_columns |
list of str
|
List of metadata columns to extract from the filename for |
None
|
delimiter |
str
|
Character to split file names by to set up metadata in obs. |
'_'
|
prot_value |
str
|
Column name in DIA-NN output to use for protein quantification.
Default: |
'PG.MaxLFQ'
|
pep_value |
str
|
Column name in DIA-NN output to use for peptide quantification.
Default: |
'Precursor.Normalised'
|
prot_var_columns |
list of str
|
Columns from the protein group table to store in |
['Genes', 'Master.Protein']
|
pep_var_columns |
list of str
|
Columns from the precursor table to store in |
['Genes', 'Protein.Group', 'Precursor.Charge', 'Modified.Sequence', 'Stripped.Sequence', 'Precursor.Id', 'All Mapped Proteins', 'All Mapped Genes']
|
**kwargs |
Additional keyword arguments passed to |
{}
|
Returns:
| Name | Type | Description |
|---|---|---|
pAnnData |
A populated object with |
Example
To import data from a DIA-NN report file:
Note
- DIA-NN report should contain both protein group and precursor-level information.
- Metadata columns in filenames must be consistently formatted to extract
.obs.
Source code in src/scpviz/pAnnData/io.py
import_proteomeDiscoverer
import_proteomeDiscoverer(prot_file: Optional[str] = None, pep_file: Optional[str] = None, obs_columns: Optional[List[str]] = ['sample'], **kwargs)
Import Proteome Discoverer (PD) output into a pAnnData object.
This is a convenience wrapper for import_data(source_type='pd'). It loads protein- and optionally peptide-level
expression data from PD report files and parses sample metadata columns.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
prot_file |
str
|
Path to the protein-level report file (required). |
None
|
pep_file |
str
|
Path to the peptide-level report file (optional but recommended). |
None
|
obs_columns |
list of str
|
List of columns to extract for |
['sample']
|
**kwargs |
Additional keyword arguments passed to |
{}
|
Returns:
| Name | Type | Description |
|---|---|---|
pAnnData |
A populated object with |
Example
To import data from Proteome Discoverer:
Note
- If
pep_fileis omitted, the resultingpAnnDatawill not include.pepor an RS matrix. - If filename structure is inconsistent and
obs_columnscannot be inferred, fallback columns are used.
Source code in src/scpviz/pAnnData/io.py
resolve_obs_columns
resolve_obs_columns(source: str, source_type: str, delimiter: Optional[str] = None) -> Tuple[Dict[str, Any], Optional[List[str]], Optional[pd.DataFrame]]
Resolve observation columns from sample filenames or metadata fields.
This function attempts to infer sample-level metadata (.obs) from filenames
or a report file (DIA-NN or Proteome Discoverer). It classifies tokens using
regex patterns and known metadata heuristics.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
source |
str
|
Path to the report file (DIA-NN or PD). |
required |
source_type |
str
|
Source type — one of {'diann', 'pd'}. |
required |
delimiter |
str
|
Delimiter used to split filename tokens. If None, auto-inferred. |
None
|
Returns:
| Type | Description |
|---|---|
Dict[str, Any]
|
Tuple[dict, list[str] or None, pd.DataFrame or None]: A tuple of: |
Optional[List[str]]
|
|
Optional[DataFrame]
|
|
Tuple[Dict[str, Any], Optional[List[str]], Optional[DataFrame]]
|
|
Note
If filename formats are inconsistent across samples, the fallback .obs will include:
- A generic 'File' column with raw filenames
- A 'parsingType' column indicating parsing structure
Example
Inferring observation columns from a PD file:
Inferring from a DIA-NN report with custom delimiter:
Source code in src/scpviz/pAnnData/io.py
suggest_obs_columns
Suggest .obs column names based on parsed sample names.
This function analyzes filenames or run names extracted from Proteome Discoverer
or DIA-NN reports and attempts to identify consistent metadata fields. These fields
may include gradient, amount, cell_line, or well_position, depending on
naming conventions and regular expression matches.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
source |
str or Path
|
Path to a DIA-NN or PD output file. |
None
|
source_type |
str
|
Type of the input file. Supports |
None
|
filenames |
list of str
|
List of sample file names or run labels to parse. If provided, bypasses file loading. |
None
|
delimiter |
str
|
Delimiter to use for tokenizing filenames (e.g., |
None
|
Returns:
| Type | Description |
|---|---|
|
list of str: Suggested list of metadata column names to assign to |
Example
To suggest observation columns from a file:
Suggested columns: ['Sample', 'gradient', 'cell_line', 'duration']
Note
This function is typically used as part of the .import_data() flow
when filenames embed experimental metadata.
Source code in src/scpviz/pAnnData/io.py
699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 | |