def getBamStem(fullPath): """AUX: Reduce a full path to the path + file name minus extension""" return osp_splitext(fullPath)[0]
def getBamDescriptor(fullPath): """AUX: Reduce a full path to just the file name minus extension""" return osp_splitext(osp_basename(fullPath))[0]