rstoolbox.components.DesignFrame.get_available_structures

DesignFrame.get_available_structures()

List which structure identifiers are available in the data container

Returns:

list() of str

Raises:
TypeError:if the data container is not DataFrame or Series.

Example

In [1]: from rstoolbox.io import parse_rosetta_file
   ...: import pandas as pd
   ...: pd.set_option('display.width', 1000)
   ...: pd.set_option('display.max_columns', 500)
   ...: df = parse_rosetta_file("../rstoolbox/tests/data/input_ssebig.minisilent.gz",
   ...:                         {'structure': 'C'})
   ...: df.get_available_structures()
   ...: 
Out[1]: ['C']