-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from bigbio/dev
pyquantms -> quantms-utils
- Loading branch information
Showing
20 changed files
with
48 additions
and
48 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
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,35 @@ | ||
import click | ||
|
||
from quantmsutils.diann.dianncfg import dianncfg | ||
from quantmsutils.diann.diann2mztab import diann2mztab | ||
from quantmsutils.features.sage_feature import add_sage_feature | ||
from quantmsutils.rescoring.ms2rescore import ms2rescore | ||
from quantmsutils.mzml.mzml_statistics import mzml_statistics | ||
from quantmsutils.psm.psm_conversion import convert_psm | ||
from quantmsutils.sdrf.check_samplesheet import check_samplesheet | ||
from quantmsutils.sdrf.extract_sample import extract_sample_from_expdesign | ||
|
||
CONTEXT_SETTINGS = dict(help_option_names=["-h", "--help"]) | ||
|
||
|
||
@click.group(context_settings=CONTEXT_SETTINGS) | ||
def cli(): | ||
pass | ||
|
||
|
||
cli.add_command(dianncfg) | ||
cli.add_command(diann2mztab) | ||
|
||
cli.add_command(add_sage_feature) | ||
|
||
cli.add_command(mzml_statistics) | ||
|
||
cli.add_command(extract_sample_from_expdesign) | ||
cli.add_command(check_samplesheet) | ||
|
||
cli.add_command(ms2rescore) | ||
|
||
cli.add_command(convert_psm) | ||
|
||
if __name__ == "__main__": | ||
cli() |
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
pyquantms/rescoring/ms2rescore.py → quantmsutils/rescoring/ms2rescore.py
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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