Skip to content

Commit

Permalink
replace all fdr_group in to group
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Apr 19, 2023
1 parent ed7f74a commit 9f54844
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Changelog
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
- Added the protein start and end positions to ions and peptides report.
- ProtXML reading parallelization.
- Added a new Extended Peptide column to the PSM report containing the flanking regions of peptides.
- Group-based FDR scoring capabilities that will rely on the fdr_group passed by MSFragger.
- Group-based FDR scoring capabilities that will rely on the group passed by MSFragger.
- Support for sCLIP isobaric tags.

### Changed
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ VERSION = $(shell date +%Y%m%d)
BUILD = $(shell date +%Y%m%d%H%M)

TAG = v5.0.0
RC = RC23
RC = RC24

LDFLAGS = -ldflags "-w -s -extldflags -static -X main.version=${TAG} -X main.build=${BUILD}"

Expand Down
2 changes: 1 addition & 1 deletion cmd/filter.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func init() {
filterCmd.Flags().BoolVarP(&m.Filter.Picked, "picked", "", false, "apply the picked FDR algorithm before the protein scoring")
filterCmd.Flags().BoolVarP(&m.Filter.Mapmods, "mapmods", "", false, "map modifications")
filterCmd.Flags().BoolVarP(&m.Filter.Inference, "inference", "", false, "extremely fast and efficient protein inference compatible with 2D and Sequential filters")
filterCmd.Flags().BoolVarP(&m.Filter.Group, "group", "", false, "use the fdr_group label to filter the data")
filterCmd.Flags().BoolVarP(&m.Filter.Group, "group", "", false, "use the group label to filter the data")
filterCmd.Flags().MarkHidden("mods")
filterCmd.Flags().MarkHidden("delta")
filterCmd.Flags().MarkHidden("probin")
Expand Down
2 changes: 1 addition & 1 deletion lib/spc/pepxml.go
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ type SearchHit struct {
PrevAA []byte `xml:"peptide_prev_aa,attr"`
NextAA []byte `xml:"peptide_next_aa,attr"`
Protein []byte `xml:"protein,attr"`
Class []byte `xml:"fdr_group,attr"`
Class []byte `xml:"group,attr"`
TotalTerm uint8 `xml:"num_tol_term,attr"`
MissedCleavages uint8 `xml:"num_missed_cleavages,attr"`
IsRejected uint8 `xml:"is_rejected,attr"`
Expand Down

0 comments on commit 9f54844

Please sign in to comment.