當前位置: 首頁>>代碼示例>>Python>>正文


Python IOTools.readMatrix方法代碼示例

本文整理匯總了Python中IOTools.readMatrix方法的典型用法代碼示例。如果您正苦於以下問題:Python IOTools.readMatrix方法的具體用法?Python IOTools.readMatrix怎麽用?Python IOTools.readMatrix使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在IOTools的用法示例。


在下文中一共展示了IOTools.readMatrix方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: __call__

# 需要導入模塊: import IOTools [as 別名]
# 或者: from IOTools import readMatrix [as 別名]
    def __call__(self, track, slice=None):
        fn = "ortholog_pairs_with_feature.matrix2"
        if not os.path.exists(fn):
            return

        x = IOTools.openFile(fn)
        matrix, rownames, colnames = IOTools.readMatrix(x)
        return odict((("matrix", matrix), ("rows", rownames), ("columns", colnames)))
開發者ID:nishantthakur,項目名稱:cgat,代碼行數:10,代碼來源:orthology.py

示例2: __call__

# 需要導入模塊: import IOTools [as 別名]
# 或者: from IOTools import readMatrix [as 別名]
    def __call__(self, track, slice = None):
        fn = os.path.join( DATADIR, "%(track)s.peakshape.tsv.gz.matrix_%(slice)s.gz" % locals() )
        if not os.path.exists( fn ): 
            return
        
        matrix, rownames, colnames = IOTools.readMatrix( IOTools.openFile( fn ))
        nrows = len(rownames)
        if nrows == 0: return

        if nrows > 1000:
            take = numpy.array( numpy.floor( numpy.arange( 0, nrows, nrows / 1000 ) ), dtype = int )
            rownames = [ rownames[x] for x in take ]
            matrix = matrix[ take ]
            
        return odict( (('matrix', matrix),
                       ('rows', rownames),
                       ('columns', colnames)) )
開發者ID:siping,項目名稱:cgat,代碼行數:19,代碼來源:Intervals.py

示例3: __call__

# 需要導入模塊: import IOTools [as 別名]
# 或者: from IOTools import readMatrix [as 別名]
 def __call__(self, track, slice = None):
     pattern = self.pattern
     fn = os.path.join( DATADIR, "liver_vs_testes/%(track)s%(pattern)s.matrix_%(slice)s.gz" % locals() )
     if not os.path.exists( fn ): 
         return
     
     x = IOTools.openFile( fn )
     matrix, rownames, colnames = IOTools.readMatrix( x )
     
     nrows = len(rownames)
     if nrows == 0: return
     if nrows > self.scale:
         take = numpy.array( numpy.floor( numpy.arange( 0, nrows, float(nrows + 1) / self.scale ) ), dtype = int )
         rownames = [ rownames[x] for x in take ]
         matrix = matrix[ take ]
         
     return odict( (('matrix', matrix),
                    ('rows', rownames),
                    ('columns', colnames)) )
開發者ID:BioinformaticsArchive,項目名稱:cgat,代碼行數:21,代碼來源:peakshape.py


注:本文中的IOTools.readMatrix方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。