コード例 #1
0
ファイル: test_biopax.py プロジェクト: fdurupinar/indra
def test_is_complex2():
    bpe = bp.model.getByID('http://identifiers.org/reactome/REACT_117345.2')
    bpe = cast(bpc._bp('Protein'), bpe)
    assert (not bpc._is_complex(bpe))
コード例 #2
0
ファイル: test_biopax.py プロジェクト: jmuhlich/indra
def test_is_complex():
    bpe = bp.model.getByID('http://identifiers.org/reactome/REACT_24213.2')
    bpe = cast(bpc._bp('Complex'), bpe)
    assert(bpc._is_complex(bpe))
コード例 #3
0
ファイル: test_biopax.py プロジェクト: fdurupinar/indra
def test_is_complex():
    bpe = bp.model.getByID('http://identifiers.org/reactome/REACT_24213.2')
    bpe = cast(bpc._bp('Complex'), bpe)
    assert (bpc._is_complex(bpe))
コード例 #4
0
ファイル: test_biopax.py プロジェクト: jmuhlich/indra
def test_is_complex2():
    bpe = bp.model.getByID('http://identifiers.org/reactome/REACT_117345.2')
    bpe = cast(bpc._bp('Protein'), bpe)
    assert(not bpc._is_complex(bpe))