nanopyx.data.examples
Placeholder for containing the example test data. Within this package folder is the metadata information for each test dataset
See nanopyx.data.download
for tools to download the example data
>>> import os, glob
>>> path = get_path()
>>> "/".join(path.split(os.path.sep)[-3:])
'nanopyx/data/examples'
1""" 2Placeholder for containing the example test data. Within this package folder is the metadata information for each test dataset 3See `nanopyx.data.download` for tools to download the example data 4 5>>> import os, glob 6>>> path = get_path() 7>>> "/".join(path.split(os.path.sep)[-3:]) 8'nanopyx/data/examples' 9""" 10 11import os 12 13 14def get_path() -> str: 15 """ 16 :return: path to the examples info directory 17 """ 18 return os.path.join(os.path.split(__file__)[0])
def
get_path() -> str:
15def get_path() -> str: 16 """ 17 :return: path to the examples info directory 18 """ 19 return os.path.join(os.path.split(__file__)[0])
Returns
path to the examples info directory