Skip to content

Commit

Permalink
pushing for DOI
Browse files Browse the repository at this point in the history
  • Loading branch information
Felipe da Veiga Leprevost committed Jun 26, 2020
1 parent bbfabbc commit 122e8d3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 3 additions & 1 deletion Changelog
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
### Added
-- Adding Zenodo DOI.
### Changed

### Fixed
-- Wrong assignment for the subFDR filtering
-- Wrong assignment for the subFDR filtering.
-- PTMPRophet was having issue in replacing the PeptideProphet file.
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ require (
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/mattn/go-colorable v0.1.6
github.com/mitchellh/gox v1.0.1 // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/nlopes/slack v0.6.0
github.com/pierrre/archivefile v0.0.0-20170218184037-e2d100bc74f5
Expand Down
7 changes: 4 additions & 3 deletions lib/pip/pip.go
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,7 @@ func PTMProphet(meta met.Data, p Directives, dir string, data []string) met.Data
var files []string
files = append(files, "interact.pep.xml")
meta.PTMProphet.InputFiles = files
meta.PTMProphet.KeepOld = true
ptmprophet.Run(meta, files)
meta.Serialize()
}
Expand Down Expand Up @@ -545,9 +546,9 @@ func FilterQuantifyReport(meta met.Data, p Directives, dir string, data []string

if len(p.Filter.Pex) == 0 {
meta.Filter.Pex = "interact.pep.xml"
// if p.Commands.PTMProphet == "yes" {
// meta.Filter.Pex = "interact.mod.pep.xml"
// }
if p.Commands.PTMProphet == "yes" {
meta.Filter.Pex = "interact.mod.pep.xml"
}
} else {
meta.Filter.Pex = p.Filter.Pex
}
Expand Down

0 comments on commit 122e8d3

Please sign in to comment.