Ejemplo n.º 1
0
Archivo: run.py Proyecto: nscherf/linus
                              resampleTo=resampleTo,
                              minTrackLength=skipSmallerThan,
                              firstLineIsHeader=(csvNoHeader is None),
                              csvSeparator=csvSep)
        if addState2 is not None:
            loaderState2 = dc.CsvLoader(
                addState2,
                resampleTo=resampleTo,
                minTrackLength=skipSmallerThan,
                firstLineIsHeader=(csvNoHeader is None),
                csvSeparator=csvSep)
    if tgmmPath is not None:
        print("Load from TGMM...")
        loader = dc.TgmmLoader(
            tgmmPath,
            resampleTo=resampleTo,
            minTrackLength=skipSmallerThan,
        )
        if addState2 is not None:
            loaderState2 = dc.TgmmLoader(
                addState2,
                resampleTo=resampleTo,
                minTrackLength=skipSmallerThan,
            )

    if biotracksPath is not None:
        print("Load from Biotracks...")
        loader = dc.BiotracksLoader(
            biotracksPath,
            resampleTo=resampleTo,
            minTrackLength=skipSmallerThan,