Skip to content

Commit

Permalink
support for bfvd source
Browse files Browse the repository at this point in the history
  • Loading branch information
mhekkel committed Jan 15, 2025
1 parent 3c32102 commit 8076dd5
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions docroot/model.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,22 @@ <h5 z:text="${title}"></h5>
<td><a z:href="@{/v1/aff/${af_id}/json}"
z:text="|${af_id}/json|"></a></td>
</tr>
<tr>
<td>Original AlphaFold model</td>
<td z:switch="${source}">
<a z:case="BFVD" z:href="|https://bfvd.foldseek.com/cluster/${id}|"
z:text="|https://bfvd.foldseek.com/cluster/${id}|" target="_BLANK"></a>
<a z:case="*" z:href="|https://alphafold.ebi.ac.uk/entry/${id}|"
z:text="|https://alphafold.ebi.ac.uk/entry/${id}|" target="_BLANK"></a>
</td>

<tr z:switch="${source}">
<z:block z:case="BFVD">
<td>Original BFVD model</td>
<td>
<a z:href="|https://bfvd.foldseek.com/cluster/${id}|"
z:text="|https://bfvd.foldseek.com/cluster/${id}|" target="_BLANK"></a>
</td>
</z:block>
<z:block z:case="*">
<td>Original AlphaFold model</td>
<td>
<a z:href="|https://alphafold.ebi.ac.uk/entry/${id}|"
z:text="|https://alphafold.ebi.ac.uk/entry/${id}|" target="_BLANK"></a>
</td>
</z:block>
</tr>
</table>

Expand Down

0 comments on commit 8076dd5

Please sign in to comment.