Skip to content

Commit 7605639

Browse files
committed
bump package number
1 parent cc72013 commit 7605639

18 files changed

+177
-169
lines changed

package/build/lib/pout2prot/Analyzer.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
from ProteinGrouping import create_protein_groups
2-
from ProteinSubGrouping import create_protein_subgroups
3-
from OccamsRazorPreprocessor import occam_filter
1+
from .ProteinGrouping import create_protein_groups
2+
from .ProteinSubGrouping import create_protein_subgroups
3+
from .OccamsRazorPreprocessor import occam_filter
44

55

66
def protein_grouping_analysis(occam_flag, protein_peptide_dict, peptide_protein_dict):

package/build/lib/pout2prot/main.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
from Parser import parser
2-
from Analyzer import protein_grouping_analysis
3-
from OutputWriter import write_to_file
1+
from .Parser import parser
2+
from .Analyzer import protein_grouping_analysis
3+
from .OutputWriter import write_to_file
44

55
import argparse
66

77
# handling of command line (or config file) arguments
88
def parse_args():
99
parser = argparse.ArgumentParser(description=__doc__)
10-
parser.add_argument("input", help="A single pout file, or folder containing all input pout files that should be processed.")
10+
parser.add_argument("input", help="A single pout file, folder containing all input pout files, or folder with sub folders (sample categories) containing pout files.")
1111
parser.add_argument("groups_output_file", help="File to which the found protein groups should be written to.")
1212
parser.add_argument("subgroups_output_file", help="File to which the found protein subgroups should be written to.")
1313
parser.add_argument("--occam", action="store_true", help="Use Occam's razor during the computation of the grouping process.", default=False)

package/dist/pout2prot-1.2.0.tar.gz

-8.69 KB
Binary file not shown.

package/dist/pout2prot-1.2.1.tar.gz

8.63 KB
Binary file not shown.

package/pout2prot.egg-info/PKG-INFO

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 1.0
22
Name: pout2prot
3-
Version: 1.2.0
3+
Version: 1.2.1
44
Summary: A script to perform protein grouping on pout-files (generated by Percolator).
55
Home-page: UNKNOWN
66
Author: Pieter Verschaffelt

package/pout2prot/Analyzer.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
from ProteinGrouping import create_protein_groups
2-
from ProteinSubGrouping import create_protein_subgroups
3-
from OccamsRazorPreprocessor import occam_filter
1+
from .ProteinGrouping import create_protein_groups
2+
from .ProteinSubGrouping import create_protein_subgroups
3+
from .OccamsRazorPreprocessor import occam_filter
44

55

66
def protein_grouping_analysis(occam_flag, protein_peptide_dict, peptide_protein_dict):

package/pout2prot/__target__/Analyzer.js

Lines changed: 0 additions & 6 deletions
This file was deleted.

package/pout2prot/__target__/Analyzer.project

Lines changed: 0 additions & 1 deletion
This file was deleted.

package/pout2prot/__target__/OccamsRazorPreprocessor.js

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)