コード例 #1
0
ファイル: utilities.py プロジェクト: minillinim/BamTyper
def getBamStem(fullPath):
    """AUX: Reduce a full path to the path + file name minus extension"""
    return osp_splitext(fullPath)[0]
コード例 #2
0
ファイル: utilities.py プロジェクト: truder/BamTyper
def getBamStem(fullPath):
    """AUX: Reduce a full path to the path + file name minus extension"""
    return osp_splitext(fullPath)[0]
コード例 #3
0
ファイル: utilities.py プロジェクト: minillinim/BamTyper
def getBamDescriptor(fullPath):
    """AUX: Reduce a full path to just the file name minus extension"""
    return osp_splitext(osp_basename(fullPath))[0]
コード例 #4
0
ファイル: utilities.py プロジェクト: truder/BamTyper
def getBamDescriptor(fullPath):
    """AUX: Reduce a full path to just the file name minus extension"""
    return osp_splitext(osp_basename(fullPath))[0]