Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonOresten committed Mar 6, 2024
1 parent 2a42325 commit cfec4bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/protein/pdb.jl
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ protein_backbone(residues::Vector{<:BioStructures.AbstractResidue}) = Backboner.
protein_backbone(chain::BioStructures.Chain, res_selector) = Backboner.Backbone(getresidues(chain, res_selector))

aminoacid_sequence(residues::Vector{<:BioStructures.AbstractResidue}) = map(oneletter_resname, residues)
aminoacid_sequence(chain::BioStructures.Chain, res_selector) = aminoacid_sequence(getresidues(chain, res_elector))
aminoacid_sequence(chain::BioStructures.Chain, res_selector) = aminoacid_sequence(getresidues(chain, res_selector))

function Protein.Chain(residues::Vector{<:BioStructures.AbstractResidue})
id = only(unique(BioStructures.chainid.(residues)))
Expand Down

2 comments on commit cfec4bf

@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:

  • Change default residue selector to only select complete residues

@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/102358

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.9.1 -m "<description of version>" cfec4bff95eb2ea2790f7c264227a5f90d8f6fcd
git push origin v0.9.1

Please sign in to comment.