return the number of rows generated in the init_genotype_itertor function.
[sgn.git] / mason / locus / locus_genomic_annotations.mas
blobc9ad2291ded81c5cdbfc6efa432b2680c03b16bd
1 <%args>
2     $locus
3 </%args>
6 % if( @gbrowse_match_xrefs ) {
8   <& /sitefeatures/gbrowse2/xref_set/rich.mas,
9       xrefs => \@gbrowse_match_xrefs
10    &>
12 % }
14 <%init>
15    # look up any gbrowse cross-refs for this locus id, if any
16    my @gbrowse = $c->enabled_feature('gbrowse2');
17    my @gbrowse_match_xrefs = map {
18        $_->xrefs({
19            -types      => ['match'],
20            -attributes => { sgn_locus_id => $locus->get_locus_id },
21        })
22    } @gbrowse;
23 </%init>