-
Notifications
You must be signed in to change notification settings - Fork 10
/
digest-protein.rb
executable file
·75 lines (71 loc) · 2.63 KB
/
digest-protein.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#! /usr/bin/env ruby
# Copyright (c) 2007-2010 Michael Specht
#
# This file is part of Proteomatic.
#
# Proteomatic is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Proteomatic is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Proteomatic. If not, see <http://www.gnu.org/licenses/>.
require './include/ruby/proteomatic'
require './include/ruby/fasta'
require 'set'
class DigestProtein < ProteomaticScript
def digestProtein(_protein)
protein = _protein.dup
# remove invalid characters
protein.gsub!(/[^GASPVTCLINDQKEMHFRYW]/, '')
# insert spaces at tryptic cleavage sites
# this is done twice because after the first step,
# there might still be blocks like KK, KR, RK, or RR
2.times { protein.gsub!(/([RK])([^P])/, "\\1 \\2") }
parts = protein.split(' ')
peptides = Set.new
(0..@param[:mc]).each do |length|
(0...parts.size-length).each do |offset|
peptide = parts[offset, length + 1].join()
peptides << peptide if peptide.size >= @param[:minLength]
end
end
return peptides
end
def run()
peptides = Set.new
unless @param[:protein].empty?
peptides |= digestProtein(@param[:protein])
end
count = 0
@input[:sequences].each do |path|
File::open(path, 'r') do |f|
fastaIterator(f) do |id, sequence|
count += 1
peptides |= digestProtein(sequence)
print "\rDigesting #{count} sequences, got #{peptides.size} peptides..."
end
end
end
puts "\rDigesting #{count} sequences, got #{peptides.size} peptides..."
if peptides.size == 0
puts "No resulting peptides."
elsif peptides.size <= 200
puts peptides.to_a.sort.join("\n")
else
puts "Got #{peptides.size} peptides."
end
# also write peptides to output file if requested
if @output[:results]
File::open(@output[:results], 'w') do |f|
f.puts peptides.to_a.sort.join("\n")
end
end
end
end
script = DigestProtein.new