File
#
- class biotite.File[source]#
Bases:
Copyable
Base class for all file classes. The constructor creates an empty file, that can be filled with data using the class specific setter methods. Conversely, the class method
read()
reads a file from disk (or a file-like object from other sources). In order to write the instance content into a file thewrite()
method is used.- copy()#
Create a deep copy of this object.
- Returns:
- copy
A copy of this object.