Ejemplo n.º 1
0
def getBamStem(fullPath):
    """AUX: Reduce a full path to the path + file name minus extension"""
    return osp_splitext(fullPath)[0]
Ejemplo n.º 2
0
def getBamStem(fullPath):
    """AUX: Reduce a full path to the path + file name minus extension"""
    return osp_splitext(fullPath)[0]
Ejemplo n.º 3
0
def getBamDescriptor(fullPath):
    """AUX: Reduce a full path to just the file name minus extension"""
    return osp_splitext(osp_basename(fullPath))[0]
Ejemplo n.º 4
0
def getBamDescriptor(fullPath):
    """AUX: Reduce a full path to just the file name minus extension"""
    return osp_splitext(osp_basename(fullPath))[0]