This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Drawing Dssp File

Hi, I have a DSSP file CCCCHHEECCC............. I'd like to draw it. Do you know any program?

Thank in advance

secondary software visualization

2 answers

The first Google hit for "DSSP graphics" suggests ESPript for this purpose. It also has a web interface.

It's actually quite simple. You can generate an html like the following:

<html>
<link rel="stylesheet" href="https://www.ncbi.nlm.nih.gov/Structure/icn3d/icn3d_full_ui_2.22.0.css">
<body>
<div class="icn3d-dl_sequence" style="font-size: 0;">

  <span class="icn3d-coil">&nbsp;</span>
  <span class="icn3d-coil">&nbsp;</span>
  <span class="icn3d-helix">&nbsp;</span>
  <span class="icn3d-helix2">&nbsp;</span>
  <span class="icn3d-helix">&nbsp;</span>
  <span class="icn3d-helix2">&nbsp;</span>
  <span class="icn3d-helix">&nbsp;</span>
  <span class="icn3d-helix2">&nbsp;</span>
  <span class="icn3d-coil">&nbsp;</span>
  <span class="icn3d-coil">&nbsp;</span>
  <span class="icn3d-sheet">&nbsp;</span>
  <span class="icn3d-sheet">&nbsp;</span>
  <span class="icn3d-sheet">&nbsp;</span>
  <span class="icn3d-sheet">&nbsp;</span>
  <span class="icn3d-sheet">&nbsp;</span>
  <span class="icn3d-sheet2">&nbsp;</span>

</div>

</body>
</html>

Log in to answer this question.