From b4786fac00c0e159226781b08186a37d947b1460 Mon Sep 17 00:00:00 2001 From: Yamei Deng Date: Fri, 19 Jan 2024 10:39:32 -0500 Subject: [PATCH] fix a typo for score_all --- Makefile | 2 +- lib/spc/pepxml.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 069a29de..ad9831b5 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ VERSION = $(shell date +%Y%m%d) BUILD = $(shell date +%Y%m%d%H%M) TAG = v5.1.1 -RC = RC03 +RC = RC04 LDFLAGS = -ldflags "-w -s -extldflags -static -X main.version=${TAG} -X main.build=${BUILD}" diff --git a/lib/spc/pepxml.go b/lib/spc/pepxml.go index 0d43975d..6d5b8c49 100644 --- a/lib/spc/pepxml.go +++ b/lib/spc/pepxml.go @@ -220,5 +220,5 @@ type PTMResult struct { ScoreWithoutPTM string `xml:"score_without_ptm,attr"` LocalizationPeptide string `xml:"localization_peptide,attr"` LocalizationScores string `xml:"localization_scores,attr"` - ScoreAll string `xml:"scores_all,attr"` + ScoreAll string `xml:"score_all,attr"` }