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 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576
|
#!/usr/bin/env ruby
require 'optparse'
require 'ostruct'
require 'set'
require_relative 'fasta'
def min(a,b)
return [a,b].sort.first
end
def max(a,b)
return [a,b].sort.last
end
def indentify_num(s,regexp)
if m = s.match(regexp)
return m[1].to_i
end
STDERR.puts "#{$0}: cannot identify #{regexp} in #{s}"
exit 1
end
def fromfilename2keys(filename)
minidentity = indentify_num(filename,Regexp.compile(/minid-(\d+)\//))
length = indentify_num(filename,Regexp.compile(/-(\d+)-/))
seqnum = indentify_num(filename,Regexp.compile(/-\d+-(\d+)\./))
return minidentity, length, seqnum
end
def makesystemcall(argstring,withecho = false,proceed = false)
if not system(argstring)
STDERR.puts "system \"#{argstring}\" failed: errorcode #{$?}"
exit 1 unless proceed
elsif withecho
puts "# #{argstring}"
end
end
def find_matchesinfile(filename)
open(filename).grep(/^\d+ \d+ \d+ . \d+ \d+ \d+ \d+ \d+ \d+/)
end
def find_expected_matchlength(filename)
mlenlist = Array.new()
open(filename).each do |line|
if m = line.match(/sequencelength=(\d+)/)
mlenlist.push(m[1].to_i)
end
end
if mlenlist.length < 2 or mlenlist.length > 3
STDERR.puts "expect two or three lines specifying the sequence length"
exit 1
end
return mlenlist[0], mlenlist[1]
end
def find_overlap(filename,matchlist,emlen1,emlen2)
if matchlist.length == 0
return 0
end
mlenlist = Array.new
matchlist.each do |m|
l = m.split(/\s/)
sumlen = l[0].to_i + l[4].to_i
if sumlen > emlen1 + emlen2
STDERR.puts "#{filename}: sumlen = #{sumlen} > #{emlen1} + #{emlen2} " +
"= expectedlen"
exit 1
end
mlenlist.push(sumlen)
end
longestsumlen = mlenlist.sort.last
return (longestsumlen * 100)/(emlen1 + emlen2)
end
def has_matchesinfile(filename)
if find_matchesinfile(filename) then true else false end
end
def find_expected_alignmentranges(filename)
ranges = Array.new
Fasta.read_multi_file(filename) do |entry| # method from convert2myersformat
intervals = entry.get_header().partition(',seedpos=')[2].split('|')
intervals.map!{ |interval|
bounds = interval.split('..')
interval = (bounds[0].to_i..bounds[1].to_i)
}
ranges.push(intervals)
end
return ranges
end
def checkrange(align, dbrange, queryrange)
if align.empty?
return 0
end
# align is sorted by db.first
align_db, align_query = nil, nil
align.each {|ali|
align_db, align_query = ali[0], ali[1]
if align_db.last >= dbrange.first then
break
end
}
if align_db.last < dbrange.first or align_db.first > dbrange.last
coverage = 0
else
ovl_db = min(dbrange.last,align_db.last) - max(dbrange.first,
align_db.first) + 1
ovl_query = min(queryrange.last,align_query.last) - max(queryrange.first,
align_query.first) + 1
full_len = dbrange.last-dbrange.first + queryrange.last-queryrange.first + 2
coverage = (ovl_db + ovl_query) * 100 / full_len
end
return coverage
end
def find_multi_overlaps(alignmentranges,matchlist,results)
expectrange_db = alignmentranges[0]
expectrange_query = alignmentranges[1]
# expectrange_queryrev = alignmentranges[2] unless alignmentranges < 2
# parse alignments from result
align = matchlist.map{ |line|
elems = line.split()
dbrange = (elems[2].to_i..elems[2].to_i+elems[0].to_i-1)
queryrange = (elems[6].to_i..elems[6].to_i+elems[4].to_i-1)
line = [dbrange, queryrange]
}
align.sort!{|x,y| x[0].first <=> y[0].first}
# compare
len = min(expectrange_db.length, expectrange_query.length)
for idx in (0...len)
coverage = checkrange(align, expectrange_db[idx], expectrange_query[idx])
results[coverage] += 1
end
return results
end
def makedirname(dir,minidentity)
return "#{dir}/minid-#{minidentity}"
end
def makefilename(dir,minidentity,pref,length,seqnum)
return "#{makedirname(dir,minidentity)}/#{pref}-#{length}-#{seqnum}"
end
def listdirectory(directory)
# prepare regexp for entries to ignore: saves time for repeated use
ignore_dirs = Regexp.compile(/^\.\.?$/) # match . or ..
# Iterate over items in directory
stack = Array.new()
stack.push(directory)
filelist = Array.new()
while not stack.empty? do
currentdir = stack.pop
Dir.foreach(currentdir) do |entry|
if not entry.match(ignore_dirs)
# directory entry is a regular file
if File.stat("#{currentdir}/#{entry}").file?
filelist.push("#{currentdir}/#{entry}")
# directory entry is a subdirectory
elsif File.stat("#{currentdir}/#{entry}").directory?
stack.push("#{currentdir}/#{entry}")
end
end
end
end
return filelist
end
def showresult(prog,mincoverage,identifier,result,lengthdistr=false)
found = 0
fails = 0
if mincoverage.nil? then mincoverage = 100 end
result.each_pair do |coverage,manytimes|
if coverage >= mincoverage
found += manytimes
else
fails += manytimes
end
end
if lengthdistr
category = "score=#{20 * identifier + 10} "
else
category = "minid=#{identifier} "
end
print category + "#{prog} #{found} of #{found+fails}, "
printf("miss #{fails}, sensitivity %.2f%%\n",
100.0 * found.to_f/(found+fails).to_f)
end
def gtcall ()
return "env -i bin/gt"
end
def callseedextend(mincoverage,indexname,inputfile,destfile,minidentity,length,
seqnum,seedlength,weakends,withalignment,bias,
withecho = false)
makesystemcall("#{gtcall()} encseq encode -des no -sds no -md5 no " +
"-indexname #{indexname} #{inputfile}.fas",withecho)
if mincoverage.nil?
lenparam = " -l #{length}"
else
lenparam = " -l #{seedlength}"
end
makesystemcall("#{gtcall()} seed_extend -t 21 -no-reverse " +
"-seedlength #{seedlength} -minidentity #{minidentity} " +
"-outfmt seed -extendgreedy -overlappingseeds -ii #{indexname}" +
(if bias then " -bias-parameters" else "" end) +
(if withalignment then " -a" else "" end) +
(if weakends then " -weakends" else "" end) +
(if destfile.empty? then "" else " > #{destfile}.txt" end) +
lenparam,
withecho)
matchlist = []
if destfile != ""
matchlist = find_matchesinfile("#{destfile}.txt")
["esq","ssp"].each do |suffix|
filename = "#{indexname}.#{suffix}"
if File.exists?(filename)
File.delete(filename)
end
end
end
return matchlist
end
def runseedextend(mincoverage,inputdir,targetdir,weakends,withalignment,
seedlength,minidentity,length,seqnum,bias)
inputfile = makefilename(inputdir,minidentity,"rand",length,seqnum)
if not File.exists?(inputfile + ".fas")
inputfile = makefilename(inputdir,minidentity,"rand-mult",length,seqnum)
end
destfile = makefilename(targetdir,minidentity,"gtout",length,seqnum)
destdir = File.dirname(destfile)
makesystemcall("mkdir -p #{destdir}")
return callseedextend(mincoverage,inputfile,inputfile,destfile,minidentity,
length,seqnum,seedlength,weakends,withalignment,bias)
end
def rundaligner(mincoverage,inputdir,targetdir,seedlength,minidentity,length,
seqnum,tofile = true)
inputfile = makefilename(inputdir,minidentity,"rand",length,seqnum)
if not File.exists?(inputfile + ".fas")
inputfile = makefilename(inputdir,minidentity,"rand-mult",length,seqnum)
end
destfile = makefilename(targetdir,minidentity,"daout",length,seqnum)
destdir = File.dirname(destfile)
makesystemcall("mkdir -p #{destdir}")
makesystemcall("scripts/convert2myersformat.rb #{inputfile}.fas " +
"> #{destfile}.fasta")
if ENV.has_key?("PACKAGES")
myerspath = ENV["PACKAGES"]
else
myerspath = ".."
end
myersprog="#{myerspath}/myers"
makesystemcall("#{myersprog}/DAZZ_DB/fasta2DB #{destfile}.db " +
"#{destfile}.fasta")
withecho = if tofile then false else true end
if tofile
outputfile = "> #{destfile}.txt"
else
outputfile = ""
makesystemcall("#{gtcall()} encseq encode -des no -sds no -md5 no " +
"-indexname #{destfile} #{destfile}.fasta",withecho)
end
if withecho
puts "# daligner result:"
end
if mincoverage.nil?
lenparam = "-l#{length} "
else
lenparam = "-l#{seedlength} "
end
makesystemcall("#{myersprog}/DALIGNER/daligner -t21 -I -A -Y " +
"-e0.#{minidentity} -k#{seedlength} #{lenparam}" +
"#{destfile}.db #{destfile}.db #{outputfile}",withecho,true)
if not tofile
makesystemcall("#{gtcall()} dev show_seedext -f #{destfile}.txt -a " +
" -polished-ends",
withecho)
end
File.delete("#{destfile}.db")
return find_matchesinfile("#{destfile}.txt")
end
def rerun_seedextend(options,seedlength)
filename = options.rerun
minidentity, length, seqnum = fromfilename2keys(filename)
inputfiledir = options.inputdir
puts # "minid=#{minidentity}, length=#{minidentity}, seqnum=#{seqnum}"
inputfile = makefilename(inputfiledir,minidentity,"rand",length,seqnum)
if not File.exists?(inputfile + ".fas")
inputfile = makefilename(inputfiledir,minidentity,"rand-mult",length,seqnum)
end
puts "# inputfile=#{inputfile}.fas"
indexname = "sfx-#{length}-#{seqnum}"
callseedextend(options.mincoverage,indexname,inputfile,"",minidentity,length,
seqnum,seedlength,options.weakends,true,options.bias,true)
rundaligner(options.mincoverage,options.inputdir,options.targetdir,seedlength,
minidentity,length,seqnum,false)
end
def parseargs(argv)
options = OpenStruct.new
options.runse = nil
options.runda = nil
options.num_tests = nil
options.minid_max = nil
options.minid_min = nil
if ENV.has_key?("LOCAL")
localdir = ENV["LOCAL"]
else
localdir = "."
end
options.inputdir = "#{localdir}/sense-test-input"
options.targetdir = "#{localdir}/sense-test-run"
options.rerun = nil
options.first = 0
options.compare = false
options.weakends = false
options.mincoverage = nil
options.multi = 0
options.lengthdistr = false
options.bias = true
opts = OptionParser.new
indent = " " * 37
opts.banner = "Usage: #{$0} [options] \nFirstly, generate sequences using "+
"the -g option specifying the number of samples\nand the range of "+
"minidentity of the sequences. With -t you should set the target\ndirectory "+
"to #{options.inputdir}.\nAfter that, execute this script again to run "+
"gt_seed_extend (-s) and/or daligner\n(-d) on the testdata. For a testdata "+
"subset specify a number with opton -f.\nThe DALIGNER and DAZZ_DB "+
"directories required by -d are expected to be in\n" +
"<myerspath>/myers where\n" +
"myerspath=if (environment variable PACKAGES is defined) then $PACKAGES else .."
opts.on("-g","--generate-seq STRING",
"generate-sequences argument:" +
"\n#{indent}argument: num_test,minid_min,minid_max") do |x|
runseqgen = x.split(/,/).map {|x| x.to_i}
if runseqgen.length != 3
STDERR.puts "#{$0}: need three integer arguments for option -g"
exit 1
end
options.num_tests = runseqgen[0]
options.minid_min = runseqgen[1]
options.minid_max = runseqgen[2]
end
opts.on("-s","--seed_extend","run gt seed_extend") do |x|
options.runse = true
end
opts.on("-d","--daligner","run daligner") do |x|
options.runda = true
end
opts.on("-w","--weakends","use option -weakends for seed_extend") do |x|
options.weakends = true
end
opts.on("-c","--compare","compare daligner and seed_extend results") do |x|
options.compare = true
end
opts.on("--no-myers","use default paramaters for perc_mat_history\n" +
"#{indent}and maxalilendiff (i.e. omit option\n" +
"#{indent}-bias-parameters) when calling\n" +
"#{indent}gt seed_extend") do |x|
options.bias = false
end
opts.on("-i","--inputdir STRING","specify input directory" +
"\n#{indent}(default: #{options.inputdir})") do |x|
options.inputdir = x
end
opts.on("-t","--targetdir STRING","specify target directory" +
"\n#{indent}(default: #{options.targetdir})") do |x|
options.targetdir = x
end
opts.on("-r","--rerun STRING","rerun seed-extend on specific file") do |x|
options.rerun = x
end
opts.on("-f","--first NUMBER",
"specify number of sequences used for\n#{indent}evaluation") do |x|
options.first = x.to_i
if options.first <= 0
STDERR.puts "#{$0}: argument of option -f must be positive"
exit 1
end
end
opts.on("-m","--mincoverage NUMBER",
"specify how much the expected match should\n#{indent}" +
"be covered to count a match") do |x|
options.mincoverage = x.to_i
end
opts.on("-n","--multi NUMBER",
"create long sequences of specified length\n#{indent}" +
"with multiple alignment regions") do |x|
options.multi = x.to_i
if options.multi < 1000
STDERR.puts "#{$0}: argument of option -n must be at least 1000"
exit 1
end
end
opts.on("-l","--lendistr","use range (50...550) for sequence lengths" +
"\n#{indent}or create score distribution") do |x|
options.lengthdistr = true
end
opts.on("-h", "--help", "print this help message") do
puts opts
exit 0
end
rest = opts.parse(argv)
if rest.length != 0 or (options.num_tests.nil? and not options.runda and
not options.runse and options.rerun.nil? and
not options.compare)
STDERR.puts "#{opts}"
exit 1
end
if options.weakends and not options.runse
STDERR.puts "option -w/--weakends requires option -s/--seed_extend"
exit 1
end
if options.multi != 0 and options.lengthdistr
STDERR.puts "option -l/--lendistr is not compatible with option -n"
exit 1
end
if options.multi != 0 and options.num_tests.nil?
STDERR.puts "option -n/--multi requires option -g"
exit 1
end
if not options.mincoverage.nil? and options.mincoverage > 100
STDERR.puts "argument to option -m/--mincoverage must be in range 0..100"
exit 1
end
return options
end
options = parseargs(ARGV)
seedlength = 14
if not options.minid_min.nil?
if options.lengthdistr then
lengthtab = (0...options.num_tests).to_a
lengthtab.map! {|x| x % 500 + 50}
else
lengthtab = options.num_tests.times.map{ 90 + Random.rand(21) }
end
options.minid_min.upto(options.minid_max).each do |minidentity|
filedir = makedirname(options.targetdir,minidentity)
makesystemcall("mkdir -p #{filedir}")
mflag = options.multi == 0 ? "" : "mult-"
lflag = options.multi == 0 ? "" : "--long #{options.multi} "
lengthtab.each_with_index do |length,seqnum|
# generate random sequences
outfile = "#{filedir}/rand-#{mflag}#{length}-#{seqnum}"
makesystemcall("ruby scripts/gen-randseq.rb " +
"--minidentity #{minidentity} #{lflag}" +
"--seedlength #{seedlength} --length #{length} -c 35 " +
"--mode seeded 1> #{outfile}.fas 2>/dev/null")
end
end
end
if options.runse or options.runda
gtresult = Array.new(100) {Hash.new(0)}
daresult = Array.new(100) {Hash.new(0)}
idset = Set.new()
makesystemcall("mkdir -p #{options.targetdir}")
listdirectory(options.inputdir).each do |filename|
if filename.match(/\.fas/)
minidentity, length, seqnum = fromfilename2keys(filename)
if options.first == 0 or seqnum < options.first
# identifier for result classification is either minidentity or score
identifier = minidentity
if options.lengthdistr
identifier = length * minidentity / 1000
if identifier >= 100
STDERR.puts "length #{length} too large for histogram"
identifier = 99
end
end
multiseeds = filename.match(/-mult-/)
idset.add(identifier)
if options.runse
matchlist = runseedextend(options.mincoverage,options.inputdir,
options.targetdir,options.weakends,false,
seedlength,minidentity,length,seqnum,
options.bias)
if multiseeds
ranges = find_expected_alignmentranges(filename)
gtresult[identifier] = find_multi_overlaps(ranges,matchlist,
gtresult[identifier])
else
emlen1, emlen2 = find_expected_matchlength(filename)
coverage = find_overlap(filename,matchlist,emlen1,emlen2)
gtresult[identifier][coverage] += 1
end
end
if options.runda
matchlist = rundaligner(options.mincoverage,options.inputdir,
options.targetdir,seedlength,
minidentity,length,seqnum)
if multiseeds
ranges = find_expected_alignmentranges(filename)
daresult[identifier] = find_multi_overlaps(ranges,matchlist,
daresult[identifier])
else
emlen1, emlen2 = find_expected_matchlength(filename)
coverage = find_overlap(filename,matchlist,emlen1,emlen2)
daresult[identifier][coverage] += 1
end
end
end
end
end
puts "# #{$0}" + ARGV.join(" ")
idset.sort.each do |identifier|
if options.runse
showresult("seed_extend", options.mincoverage, identifier,
gtresult[identifier], options.lengthdistr)
end
makesystemcall("rm -f daout-*.daout*.las")
if options.runda
showresult("daligner",options.mincoverage,identifier,
daresult[identifier], options.lengthdistr)
end
end
end
if not options.rerun.nil?
rerun_seedextend(options,seedlength)
end
if options.compare
daonly = Set.new()
seonly = Set.new()
both = Set.new()
none = Set.new()
listdirectory(options.inputdir).each do |filename|
if filename.match(/\.fas/)
minidentity, length, seqnum = fromfilename2keys(filename)
if options.first == 0 or seqnum < options.first
sedestfile = makefilename(options.targetdir,minidentity,"gtout",length,
seqnum) + ".txt"
sehasmatch = has_matchesinfile(sedestfile)
dadestfile = makefilename(options.targetdir,minidentity,"daout",length,
seqnum) + ".txt"
dehasmatch = has_matchesinfile(dadestfile)
if sehasmatch
if dehasmatch
both.add(filename)
else
seonly.add(makefilename(".",minidentity,"gaout",length,seqnum) +
".txt")
end
elsif dehasmatch
daonly.add(makefilename(".",minidentity,"daout",length,seqnum) +
".txt")
else
none.add(filename)
end
end
end
end
setname = ["both","daonly","seonly","none"]
[both,daonly,seonly,none].each_with_index do |thisset,idx|
filename = "#{setname[idx]}.txt"
begin
fp = File.new(filename,"w")
rescue => err
STDERR.puts "#{$0}: #{err}"
exit 1
end
thisset.each do |f|
fp.puts f
end
end
end
|