npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

dssp-wasm

v0.0.1

Published

DSSP port to WASM

Downloads

1

Readme

The source code for building the 'mkdssp' program is bundled in the 'dssp' project. The DSSP executable is 'mkdssp'.

Development

The provided Dockerfile sets up a development environment. Build the docker image using the command docker build -t dssp . and run the image in a container, with a local source copy and data files mounted, with the command docker run -v /home/jon/projects/dssp:/app -v /mnt/extra:/srv/data -it dssp.

Download and installation instructions

Pre-compiled old versions of DSSP are available from the old repository. New source code archives are available here.

Compiling dssp programs

Pre-requisites

Compiler:

  • Must support at least the c++ 11 standard.

System libraries:

  • libboost version >= 1.48
  • libz
  • libbz2
  • autoconf
  • automake
  • autotools-dev

Instructions to build in Docker

This requires docker >= 1.12.3 and docker-compose >= 1.8.1.

From the repository, run:

docker-compose build

Then, to run mkdssp:

docker-compose run dssp ./mkdssp

Instructions for installing mkdssp locally

Download and uncompress the dssp source code archive (version >= 2.2.6):

wget https://github.com/cmbi/dssp/archive/dssp-?.?.?.tar.gz
tar -zxvf dssp-?.?.?.tar.gz
cd dssp-?.?.?

Configure and build the dssp executables:

./autogen.sh
./configure
make

To build only one executable of the dssp project, e.g. mkdssp, type:

make mkdssp

To test the mkdssp executable type:

./mkdssp

To add the executables to /usr/local/bin type:

sudo make install

Citing dssp

The reference for the new versions of dssp and other protein structure bioinformatics facilities is:

A series of PDB-related databanks for everyday needs
Wouter G. Touw, Coos Baakman, Jon Black, Tim A. H. te Beek,
 E. Krieger, Robbie P. Joosten and Gert Vriend.
Nucl. Acids Res. (2015) 43, D364-D368

The original reference for DSSP is:

Dictionary of protein secondary structure: pattern recognition of
 hydrogen-bonded and geometrical features.
Kabsch W and Sander C, Biopolymers (1983) 22, 2577-2637.

The original reference for HSSP is:

Database of homology-derived protein structures and the structural
 meaning of sequence alignment.
Sander C and Schneider R, Proteins (1991) 9, 56-68.

Contact

In 2013, maintenance of dssp has been taken over from Maarten Hekkelman by Coos Baakman, Jon Black, and Wouter Touw. If you want to provide feedback, either send an e-mail to [email protected] or have a look at existing issues (if necessary, create a new issue).