Skip to content

Commit

Permalink
Ready for v0.2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewThe committed Aug 12, 2022
1 parent c7bb0f4 commit c2e7aff
Show file tree
Hide file tree
Showing 7 changed files with 327 additions and 202 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -130,3 +130,4 @@ dmypy.json

system*
data*
results*
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v0.2.7
- Added maxtasksperchild for better memory management in LFQ

v0.2.6
- Upgrade minimum Python version to 3.8 for new scipy version
- Reduced LFQ memory by 80% and speed up by 30%
Expand Down
11 changes: 10 additions & 1 deletion picked_group_fdr/methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def get_methods(args):
### WELL-CALIBRATED METHODS

# final method
configs.append({'pickedStrategy' : PickedGroupStrategy(), 'scoreType' : ProteinScoringStrategy("bestPEP"), 'grouping' : RescuedSubsetGrouping()})
configs.append({'pickedStrategy' : PickedGroupStrategy(), 'scoreType' : ProteinScoringStrategy("bestPEP"), 'grouping' : RescuedSubsetGrouping(), 'label' : 'Picked Protein Group FDR'})

# picked FDR
# N.B. Add "remap" to the scoreType if the fasta database used for protein grouping is different from the one used by Percolator
Expand Down Expand Up @@ -103,6 +103,15 @@ def get_methods(args):
#configs.append({'pickedStrategy' : PickedGroupStrategy(), 'scoreType' : ProteinScoringStrategy("Perc bestPEP"), 'grouping' : RescuedSubsetGrouping(), 'label' : 'Picked Protein Group FDR' })


#configs.append({'pickedStrategy' : ClassicStrategy(), 'scoreType' : ProteinScoringStrategy("multPEP razor"), 'grouping' : SubsetGrouping(), 'label' : 'MaxQuant' })
#configs.append({'pickedStrategy' : ClassicStrategy(), 'scoreType' : ProteinScoringStrategy("Perc remap multPEP razor"), 'grouping' : SubsetGrouping(), 'label' : 'MaxQuant Perc PEP' })
#configs.append({'pickedStrategy' : PickedGroupStrategy(), 'scoreType' : ProteinScoringStrategy("multPEP razor"), 'grouping' : SubsetGrouping(), 'label' : 'MaxQuant picked' })
#configs.append({'pickedStrategy' : PickedGroupStrategy(), 'scoreType' : ProteinScoringStrategy("Perc remap multPEP razor"), 'grouping' : SubsetGrouping(), 'label' : 'MaxQuant Perc PEP picked' })
#configs.append({'pickedStrategy' : PickedGroupStrategy(), 'scoreType' : ProteinScoringStrategy("Perc remap multPEP razor"), 'grouping' : RescuedSubsetGrouping(), 'label' : 'MaxQuant Perc PEP picked rescued' })
#configs.append({'pickedStrategy' : ClassicStrategy(), 'scoreType' : ProteinScoringStrategy("Perc remap bestPEP"), 'grouping' : RescuedSubsetGrouping(), 'label' : 'Classic Protein Group FDR'})
#configs.append({'pickedStrategy' : PickedGroupStrategy(), 'scoreType' : ProteinScoringStrategy("Perc remap bestPEP"), 'grouping' : RescuedSubsetGrouping(), 'label' : 'Picked Protein Group FDR'})


#################
### Figure 5D ###
#################
Expand Down
Loading

0 comments on commit c2e7aff

Please sign in to comment.