Molecule filter
filter_by_chains(file_content, chains, retain_categories=['chem_comp'], chain_id_source='auth')
Filter a PDBx/mmCIF file by chain IDs.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file_content
|
str
|
Raw PDBx/mmCIF file content. |
required |
chains
|
Iterable[str]
|
Chain IDs to select. |
required |
retain_categories
|
Iterable[str]
|
Additional categories to keep verbatim. |
['chem_comp']
|
chain_id_source
|
str
|
Chain ID field to match, either |
'auth'
|
Returns:
| Name | Type | Description |
|---|---|---|
str |
str
|
Filtered PDBx/mmCIF file content. |
Source code in src/rnapolis/molecule_filter.py
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 | |
filter_by_entity_ids(file_content, entity_ids, retain_categories=['chem_comp'])
Filter a PDBx/mmCIF file to a given set of entity IDs.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file_content
|
str
|
Raw PDBx/mmCIF file content. |
required |
entity_ids
|
Iterable[str]
|
Entity IDs to include. |
required |
retain_categories
|
Iterable[str]
|
Additional categories to keep verbatim. |
['chem_comp']
|
Returns:
| Name | Type | Description |
|---|---|---|
str |
str
|
Filtered PDBx/mmCIF file content. |
Source code in src/rnapolis/molecule_filter.py
231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 | |
filter_by_poly_types(file_content, entity_poly_types=['polyribonucleotide', 'polydeoxyribonucleotide', 'polydeoxyribonucleotide/polyribonucleotide hybrid'], retain_categories=['chem_comp'])
Filter a PDBx/mmCIF file to nucleic-acid entities with selected polymer types.
By default this keeps only RNA, DNA and RNA/DNA hybrid entities based on the
_entity_poly.type field.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file_content
|
str
|
Raw PDBx/mmCIF file content. |
required |
entity_poly_types
|
Iterable[str]
|
Allowed values of |
['polyribonucleotide', 'polydeoxyribonucleotide', 'polydeoxyribonucleotide/polyribonucleotide hybrid']
|
retain_categories
|
Iterable[str]
|
Additional categories to keep verbatim. |
['chem_comp']
|
Returns:
| Name | Type | Description |
|---|---|---|
str |
str
|
Filtered PDBx/mmCIF file content. |
Source code in src/rnapolis/molecule_filter.py
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 | |
filter_cif(data, entity_ids, asym_ids, auth_asym_ids, retain_categories)
Build a filtered PDBx/mmCIF text containing only selected entities and categories.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
list[DataContainer]
|
Parsed mmCIF data containers. |
required |
entity_ids
|
list[str]
|
Entity IDs to keep. |
required |
asym_ids
|
list[str]
|
Asymmetric unit IDs ( |
required |
auth_asym_ids
|
list[str]
|
Author chain IDs ( |
required |
retain_categories
|
list[str]
|
Additional categories to copy unchanged into the output. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
str |
str
|
Filtered PDBx/mmCIF file content. |
Source code in src/rnapolis/molecule_filter.py
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 | |
load_pdbx_item_linked_group_list()
Load linked item groups from the PDBx/mmCIF dictionary.
Returns:
| Type | Description |
|---|---|
dict[str, set[Link]]
|
Mapping from parent category ID to a set of link definitions. |
Source code in src/rnapolis/molecule_filter.py
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 | |
main()
Command-line entry point for the molecule_filter tool.
The CLI:
- reads a PDBx/mmCIF file,
- filters its content by polymer types (e.g. RNA/DNA), entity IDs or chain IDs,
- optionally retains extra metadata categories,
- can convert the filtered structure to PDB format.
This is useful for preparing structural data for downstream analyses by removing components that are not relevant for a given task.
Source code in src/rnapolis/molecule_filter.py
291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 | |
read_cif(file_content)
Parse PDBx/mmCIF text content into data containers using the mmCIF IO adapter.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file_content
|
str
|
Raw PDBx/mmCIF file content. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
DataContainer |
DataContainer
|
Parsed data container representing the input file. |
Source code in src/rnapolis/molecule_filter.py
120 121 122 123 124 125 126 127 128 129 130 131 132 133 | |
select_category_by_id(data, category, field_name, ids)
Filter rows of a category by ID field values.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
List[DataContainer]
|
Parsed mmCIF data containers. |
required |
category
|
str
|
Category name to query. |
required |
field_name
|
str
|
Field used to filter rows. |
required |
ids
|
Iterable[str]
|
Accepted ID values. |
required |
Returns:
| Type | Description |
|---|---|
Tuple[List[str], List[List[str]]]
|
Tuple of (attribute names, filtered rows). |
Source code in src/rnapolis/molecule_filter.py
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 | |
select_ids(data, category, field_name_to_extract, field_name_to_check, accepted_values)
Select IDs from a category based on a field matching accepted values.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
List[DataContainer]
|
Parsed mmCIF data containers. |
required |
category
|
str
|
Category name to query (e.g. |
required |
field_name_to_extract
|
str
|
Field whose values will be returned. |
required |
field_name_to_check
|
str
|
Field used to filter rows. |
required |
accepted_values
|
Iterable[str]
|
Allowed values for the check field. |
required |
Returns:
| Type | Description |
|---|---|
Set[str]
|
Set of extracted IDs matching the filter criteria. |
Source code in src/rnapolis/molecule_filter.py
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 | |