Skip to content

Commit

Permalink
Rename to Scavager
Browse files Browse the repository at this point in the history
  • Loading branch information
markmipt committed Jul 5, 2018
1 parent b0f6bb7 commit 2461250
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
mpscore2 is distributed under the conditions of the
Scavager is distributed under the conditions of the
Apache License, Version 2.0:
http://www.opensource.org/licenses/Apache-2.0

Expand Down Expand Up @@ -170,4 +170,4 @@ agree to indemnify, defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason of your
accepting any such warranty or additional liability.

END OF TERMS AND CONDITIONS
END OF TERMS AND CONDITIONS
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions mpscore2/search.py → scavager/search.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def run():
Example usage
-------------
$ mpscore2 input.pep.xml -prefix DECOY_ -fdr 1.0
$ scavager input.pep.xml -prefix DECOY_ -fdr 1.0
-------------
''',
formatter_class=argparse.ArgumentDefaultsHelpFormatter)
Expand All @@ -29,7 +29,7 @@ def run():
parser.add_argument('-allowed_peptides', help='Path to file with peptides considered in postsearch analysis.\
Sequences must be separated by new line. For example, it can be variant peptides and its decoys in case \
of proteogenomics searches for group-specific FDR calculation', default='')
parser.add_argument('-version', action='version', version='%s' % (pkg_resources.require("mpscore2")[0], ))
parser.add_argument('-version', action='version', version='%s' % (pkg_resources.require("scavager")[0], ))
args = vars(parser.parse_args())
main.process_file(args)
print('The search is finished.')
Expand Down
File renamed without changes.
File renamed without changes.
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
#!/usr/bin/env python

'''
setup.py file for mpscore2
setup.py file for Scavager
'''
from setuptools import setup, find_packages
version = open('VERSION').readline().strip()

setup(
name = 'mpscore2',
name = 'Scavager',
version = version,
description = '''Proteomics post-search algorithm''',
author = 'Mark Ivanov & Lev Levitsky & Julia Bubis',
author_email = '[email protected]',
url = 'https://bitbucket.org/markmipt/mpscore2',
packages = ['mpscore2', ],
url = 'https://bitbucket.org/markmipt/scavager',
packages = ['scavager', ],
install_requires = [line.strip() for line in open('requirements.txt')],
classifiers = ['Intended Audience :: Science/Research',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Bio-Informatics'],
license = 'License :: OSI Approved :: Apache Software License',
entry_points = {'console_scripts': ['mpscore2 = mpscore2.search:run', ]}
entry_points = {'console_scripts': ['scavager = scavager.search:run', ]}
)

0 comments on commit 2461250

Please sign in to comment.