Skip to content

Commit

Permalink
added license file headers
Browse files Browse the repository at this point in the history
  • Loading branch information
Jhsmit committed Nov 8, 2020
1 parent 233c076 commit 0fad87e
Show file tree
Hide file tree
Showing 4 changed files with 78 additions and 1 deletion.
20 changes: 20 additions & 0 deletions hdxrate/expfact/api.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
"""
This script provides and API to expfact intrinsic exchange rate calculation
Copyright (C) 2020 Jochem Smit
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""


from hdxrate.expfact.kint import calculate_kint_per_residue
import numpy as np

Expand Down
19 changes: 19 additions & 0 deletions hdxrate/expfact/constants.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
"""
This script calculates the intrinsic deuteration rates of each residue of a protein into D2O
Copyright (C) 2019 Simon Skinner
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""

from math import exp, log10

# Here are the parameters measured in Bai et al. (1993)
Expand Down
19 changes: 19 additions & 0 deletions hdxrate/expfact/kint.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
"""
This script calculates the intrinsic deuteration rates of each residue of a protein into D2O
Copyright (C) 2019 Simon Skinner
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""

#!/usr/bin/python

# This script calculates the intrinsic deuteration rates of each residue
Expand Down
21 changes: 20 additions & 1 deletion hdxrate/hdxrate.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,23 @@
"""Main module."""
"""
This script provides and API to expfact and psx intrinsic exchange rate calculation
Copyright (C) 2020 Jochem Smit
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""



from hdxrate.expfact.api import calc_k_int as expfact_k_int
from hdxrate.psx.api import calc_k_int as psx_k_int
Expand Down

0 comments on commit 0fad87e

Please sign in to comment.