-
Notifications
You must be signed in to change notification settings - Fork 19
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 #360 from Nesvilab/v4.2.2
V4.2.2
- Loading branch information
Showing
26 changed files
with
439 additions
and
211 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 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 |
---|---|---|
|
@@ -3,7 +3,6 @@ | |
*.a | ||
*.so | ||
|
||
Makefile | ||
philosopher | ||
|
||
# Folders | ||
|
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 |
---|---|---|
@@ -1,13 +1,8 @@ | ||
### Added | ||
- Added support for TMT 18 | ||
- Added option for contaminant tags in the database. | ||
|
||
### Changed | ||
- Added the parsing rules from the Prophets to the protein description. | ||
- Removed RawReader because of licensing issues. | ||
- Improved processing speed and resource usage. | ||
- Reduced binariy size. | ||
- Decoys tag now appear inthe Gene and ProteinID | ||
- Support for TAIR database | ||
- Support for neXtProt database | ||
- Support for MSBooster scores which now appear in the PSM table | ||
|
||
### Fixed | ||
- Several bugs and code fizes added. | ||
- Fixed issue with TMT 6 plex quantification. | ||
- Minor bugs andd issues were fixed |
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,71 @@ | ||
SOURCEDIR=. | ||
SOURCES := $(shell find $(SOURCEDIR) -name '*.go') | ||
|
||
BINARY = philosopher | ||
|
||
VERSION = $(shell date +%Y%m%d) | ||
BUILD = $(shell date +%Y%m%d%H%M) | ||
|
||
TAG = v4.2.2 | ||
|
||
LDFLAGS = -ldflags "-w -s -extldflags -static -X main.version=${TAG} -X main.build=${BUILD}" | ||
|
||
.DEFAULT_GOAL: $(BINARY) | ||
|
||
$(BINARY): $(SOURCES) | ||
go build ${LDFLAGS} -o ${BINARY} main.go | ||
|
||
.PHONY: deploy | ||
deploy: | ||
unzip -o lib/dat/bindata.go.zip -d lib/dat/ | ||
|
||
unzip -o lib/ext/cdhit/unix/bindata.go.zip -d lib/ext/cdhit/unix/ | ||
unzip -o lib/ext/cdhit/win/bindata.go.zip -d lib/ext/cdhit/win/ | ||
|
||
unzip -o lib/ext/comet/unix/bindata.go.zip -d lib/ext/comet/unix/ | ||
unzip -o lib/ext/comet/win/bindata.go.zip -d lib/ext/comet/win/rm -rf /usr/local/go && tar -C /usr/local -xzf go1.18.2.linux-amd64.tar.gz | ||
unzip -o lib/ext/rawfilereader/reh64/bindata.go.zip -d lib/ext/rawfilereader/reh64/ | ||
unzip -o lib/ext/rawfilereader/win/bindata.go.zip -d lib/ext/rawfilereader/win/ | ||
|
||
unzip -o lib/pip/bindata.go.zip -d lib/pip/ | ||
|
||
unzip -o lib/dat/bindata.go.zip -d lib/dat/ | ||
|
||
unzip -o lib/obo/unimod/bindata.go.zip -d lib/obo/unimod/ | ||
|
||
.PHONY: test | ||
test: | ||
go test ./... -v | ||
|
||
.PHONY: rc | ||
rc: | ||
env CGO_ENABLED=0 gox -os="linux" ${LDFLAGS} -arch=amd64 -output philosopher-${TAG}-RC | ||
env CGO_ENABLED=0 gox -os="windows" ${LDFLAGS} -arch=amd64 -output philosopher-${TAG}-RC | ||
mv philosopher-${TAG}-RC ~/bin/ | ||
mv philosopher-${TAG}-RC.exe ~/bin/ | ||
|
||
.PHONY: linux | ||
linux: | ||
env CGO_ENABLED=0 gox -os="linux" ${LDFLAGS} -arch=amd64 -output philosopher | ||
|
||
.PHONY: windows | ||
windows: | ||
env CGO_ENABLED=0 gox -os="windows" ${LDFLAGS} -arch=amd64 -output philosopher | ||
|
||
.PHONY: all | ||
all: | ||
env CGO_ENABLED=0 gox -os="linux" ${LDFLAGS} -arch=amd64 -output philosopher | ||
env CGO_ENABLED=0 gox -os="windows" ${LDFLAGS} -arch=amd64 -output philosopher | ||
|
||
.PHONY: draft | ||
draft: | ||
goreleaser --skip-publish --snapshot --release-notes=Changelog --rm-dist | ||
|
||
.PHONY: push | ||
push: | ||
git tag -a ${TAG} -m "Philosopher ${TAG}" | ||
git push origin master -f --tags | ||
|
||
.PHONY: release | ||
release: | ||
goreleaser --release-notes=Changelog --rm-dist |
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
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
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
Oops, something went wrong.