Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ biotite.egg-info
*.code-workspace
.vscode/*

# Ignore Zed project files
.zed/*

# Ignore hidden OS related files
*.fuse_hidden*
.DS_Store
Expand Down
5 changes: 5 additions & 0 deletions src/biotite/structure/io/pdb/convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,11 @@ def get_assembly(
Contains the `sym_id` annotation, which enumerates the copies of the asymmetric
unit in the assembly.

Notes
-----
The ``box`` attribute of the :class:`AtomArray`/:class:`AtomArrayStack` returned by
this function has limited meaning, as the assembly is not tied to the unit cell.

Examples
--------

Expand Down
5 changes: 5 additions & 0 deletions src/biotite/structure/io/pdb/file.py
Original file line number Diff line number Diff line change
Expand Up @@ -869,6 +869,11 @@ def get_assembly(
Contains the `sym_id` annotation, which enumerates the copies of the
asymmetric unit in the assembly.

Notes
-----
The ``box`` attribute of the :class:`AtomArray`/:class:`AtomArrayStack` returned by
this function has limited meaning, as the assembly is not tied to the unit cell.

Examples
--------

Expand Down
5 changes: 5 additions & 0 deletions src/biotite/structure/io/pdbx/convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -1706,6 +1706,11 @@ def get_assembly(
Contains the `sym_id` annotation, which enumerates the copies of the asymmetric
unit in the assembly.

Notes
-----
The ``box`` attribute of the :class:`AtomArray`/:class:`AtomArrayStack` returned by
this function has limited meaning, as the assembly is not tied to the unit cell.

Examples
--------

Expand Down
Loading