-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f14702f
commit a6ba13c
Showing
17 changed files
with
217 additions
and
43 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
Binary file not shown.
Binary file not shown.
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,4 +1,4 @@ | ||
"""Version information.""" | ||
|
||
# The following line *must* be the last in the module, exactly as formatted: | ||
__version__ = "0.2.1.8_3" | ||
__version__ ="2.1.10" |
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
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
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
echo "Did you change git action and updated the package?" | ||
pause | ||
git pull | ||
move /-Y dist\*.* dist_old_versions\ | ||
C:\Users\tikho\Anaconda3\python.exe setup_version.py | ||
pause | ||
C:\Users\tikho\Anaconda3\python.exe setup.py sdist | ||
pause | ||
git add --all | ||
git status | ||
pause | ||
set /P commit_name="Please, make up the commit name:" | ||
set /p tag=<tag_name | ||
git commit -m %commit_name% | ||
git tag %tag% | ||
git push | ||
git push --tags | ||
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" https://github.com/bobeobibo/phigaro/actions | ||
pause |
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
description='Phigaro is a scalable command-line tool for predictions phages and prophages ' | ||
'from nucleid acid sequences (including metagenomes) and ' | ||
'is based on phage genes HMMs and a smoothing window algorithm.', | ||
version="2.1.9", | ||
version="2.1.10", | ||
license='MIT', | ||
author='E.Starikova, N.Pryanichnikov, P.Tikhonova', | ||
author_email='[email protected]', | ||
|
@@ -15,7 +15,7 @@ | |
'phigaro.batch', | ||
'phigaro.batch.task', | ||
'phigaro.misc', | ||
'phigaro.to_html', | ||
'phigaro.to_html', | ||
], | ||
package_data = { | ||
'': ['*.pickle', 'README.md'] | ||
|
@@ -26,4 +26,4 @@ | |
'phigaro-setup = phigaro.cli.helper:main', | ||
] | ||
}, install_requires=['numpy', 'six>=1.7.0', 'pandas>=0.23.4','sh', 'singleton', 'PyYAML>=5.1', 'future', 'argparse', 'numpy', 'plotly', 'bs4', 'beautifulsoup4>=4.4.0', 'lxml','biopython'] | ||
) | ||
) |
Oops, something went wrong.