Skip to content
Snippets Groups Projects
Commit c06c2c8f authored by Glenn Proctor's avatar Glenn Proctor
Browse files

*** empty log message ***

parent 137d91cc
No related branches found
No related tags found
No related merge requests found
......@@ -62,7 +62,8 @@ ok($rf->adaptor->isa('Bio::EnsEMBL::DBSQL::RegulatoryFeatureAdaptor'));
my $rf1 = $rfa->fetch_by_dbID(1);
ok(@{$rf1->regulated_transcripts()} == 3);
# 9 check get_transcripts_regulated_by_same_motif
# 10 check get_transcripts_regulated_by_same_motif
ok(@{$rf1->transcripts_regulated_by_same_motif()} == 3);
......@@ -41,6 +41,9 @@ ok(@{$rfa->fetch_all_by_motif($motif)} == 10);
my $ids = $rfa->list_dbIDs();
ok (@{$ids});
# test fetch_all_by_transcript
my $transcript = $db->get_TranscriptAdaptor()->fetch_by_dbID(21740);
ok(@{$rfa->fetch_all_by_transcript($transcript)} == 13);
# Test store
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment