repo.or.cz
/
sgn.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #5056 from solgenomics/topic/generic_seedlot_upload
[sgn.git]
/
mason
/
tools
/
genefamily
/
sequence.mas
blob
5b84b7363aace5beb04136a74ff3a23147efaab9
1
2
<%args>
3
$seq_id
4
$build
5
$family
6
$desc => undef
7
$seq => undef
8
9
</%args>
10
11
12
<h1>Sequence Details</h1>
13
14
<h2>Identifier</h2>
15
16
<% $seq_id %></h1>
17
18
<h2>Viewing Build</h2>
19
20
<% $build %>
21
22
<h2>Family</h2>
23
24
<a href="/tools/genefamily/details/<% $build %>/<% $family %>"><% $family %></a>
25
26
<h2>Description</h2>
27
28
<% $desc %>
29
30
<h2>Sequence</h2>
31
32
Length: <% length($seq) %>
33
34
<pre>
35
% $seq =~ s/(.{60})/$1\n/g;
36
<% $seq %>
37
</pre>