Skip to content

Commit

Permalink
Updated the peptide package to use new biopython.
Browse files Browse the repository at this point in the history
  • Loading branch information
lewispurigenbio committed Oct 2, 2020
1 parent 374005f commit 78d84a0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
4 changes: 1 addition & 3 deletions ionize/PolyIon/Peptide.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,7 @@ def charge(self, pH=None, ionic_strength=None, temperature=None,
neg_pKs['Cterm'] = pKcterminal[cterm]

charge = IsoelectricPoint(self.sequence,
amino_acid_count)._chargeR(pH,
pos_pKs,
neg_pKs)
amino_acid_count).charge_at_pH(pH)
return charge**moment

def isoelectric_point(self, ionic_strength=None, temperature=None):
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pandas>=1.0.1
pandas>=1.0.0
pypandoc>=1.4
numpy>=1.18.1
scipy>=1.4.1
numpy>=1.16.0
scipy>=1.4.0
Click>=7.0
biopython>=0.0.6
simplejson>=3.17.2

0 comments on commit 78d84a0

Please sign in to comment.