Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 944 Bytes

File metadata and controls

35 lines (26 loc) · 944 Bytes

GLAM

GLycan Analysis Module

See this YouTube video for an introduction to GLAM (click the image):

Documentation

Docstrings are used to automatically generate documentation for glam. This project will follow the docstring standard embraced and defined by SciPy/NumPy. These docstrings look something like:

"""Gets and prints the spreadsheet's header columns

Parameters
----------
file_loc : str
    The file location of the spreadsheet
print_cols : bool, optional
    A flag used to print the columns to the console (default is False)

Returns
-------
list
    a list of strings representing the header columns
"""

Related Work