-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* del : TODO.md removed * doc : AUTHORS.md updated * fix : OPR --> Primer * doc : CHANGELOG.md updated * fix : minor edit in test_molecular_weight.py
- Loading branch information
1 parent
dd726b2
commit 5da704b
Showing
6 changed files
with
17 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
# Authors # | ||
# Core Developers | ||
|
||
---------- | ||
- Sepand Haghighi - Open Science Laboratory ([Github](https://github.com/sepandhaghighi)) | ||
- Sepand Haghighi - Open Science Laboratory ([Github](https://github.com/sepandhaghighi)) ** | ||
- AmirHosein Rostami - Open Science Laboratory ([Github](https://github.com/AHReccese)) ** | ||
- Sadra Sabouri - Open Science Laboratory ([Github](https://github.com/sadrasabouri)) | ||
- AmirHosein Rostami - Open Science Laboratory ([Github](https://github.com/AHReccese)) | ||
|
||
** **Maintainer** | ||
|
||
# Other Contributors # | ||
# Other Contributors | ||
---------- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# -*- coding: utf-8 -*- | ||
"""OPR modules.""" | ||
from .opr_param import OPR_VERSION | ||
from .opr_obj import OPR | ||
from .opr_obj import Primer | ||
|
||
__version__ = OPR_VERSION |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
from opr.opr_obj import OPR | ||
from opr import Primer | ||
|
||
TEST_CASE_NAME = "molecular weight calculation testcase" | ||
|
||
def test_mwc(): | ||
oprimer = OPR("ATCGATCGATCGATCGAT") | ||
oprimer = Primer("ATCGATCGATCGATCGAT") | ||
assert round(oprimer.molecular_weight, 1) == 5498.7 |