Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonOresten authored May 15, 2024
1 parent 82ad9aa commit 939b4c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# <img width="25%" src="./images/all_ca_points.png" align="right" /> ProtPlot
# <img width="25%" src="./images/sticker.png" align="right" /> ProtPlot

[![Latest Release](https://img.shields.io/github/release/MurrellGroup/ProtPlot.jl.svg)](https://github.com/MurrellGroup/ProtPlot.jl/releases/latest)
[![MIT license](https://img.shields.io/badge/license-MIT-green.svg)](https://opensource.org/license/MIT)
Expand Down Expand Up @@ -49,4 +49,4 @@ Use the `camcontrols` keyword to control the initial view:
```julia
ribbon_scene("test/data/1ASS.pdb", camcontrols=(; lookat=Vec3f(30, 0, 60), eyeposition=Vec3f(160, -75, 0), upvector=Vec3f(0, 0, 1)))
```
![camera](images/1ASS-camera.png)
![camera](images/1ASS-camera.png)

2 comments on commit 939b4c2

@AntonOresten
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register

Release notes:

  • Depend on Makie instead of GLMakie, and let the user import a backend. (See Depend on GLMakie or Makie? #23)
  • Use recipes to create the Ribbon plot type, with ribbon and ribbon! functions that can take a vector of chains, a chain, or a path to a PDB file.
  • ribbon now makes a standard uninteractive 2D plot. Use ribbon_scene for a convenient and interactive scene with a ribbon, or add a ribbon to your own using ribbon!.
  • Rework rendering of ribbons.
    • More robust beta strand rendering.
    • Only render helices and strands between the first and last alphacarbon.
    • Extend coils to alphacarbons of other secondary structure elements, making sure the direction matches.
    • Remove "Segments" type, and simply keep track of subchain ranges instead.
    • Cleaner code.
  • Use recipes to create the Ramachandran plot type.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/106887

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.4.0 -m "<description of version>" 939b4c2a2ffd5fecf9e2ed0facb56dfb535ef039
git push origin v0.4.0

Please sign in to comment.