/usr/share/doc/ruby-bio/examples/any2fasta.rb is in ruby-bio 1.4.2-3.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 | #!/usr/bin/env ruby
#
# any2fasta.rb - convert input file into FASTA format using a regex
# filter
#
# Copyright (C) 2006 Pjotr Prins <p@bioruby.org>
#
# This program 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 2 of the License, or
# (at your option) any later version.
#
# This program 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.
#
# $Id: any2fasta.rb,v 1.1 2006/02/17 14:59:27 pjotr Exp $
#
require 'bio/io/flatfile'
include Bio
usage = <<USAGE
Usage: any2fasta.rb [regex] infiles
Examples:
Output all sequences containing GATC or GATT ignoring case:
any2fasta.rb "/GAT[CT]/i" *.seq > reduced.fasta
USAGE
if ARGV.size == 0
print usage
exit 1
end
# ---- Valid regular expression - if it is not a file
regex = ARGV[0]
if regex=~/^\// and !File.exist?(regex)
ARGV.shift
else
regex = nil
end
ARGV.each do | fn |
ff = Bio::FlatFile.auto(fn)
ff.each_entry do |entry|
if regex != nil
next if eval("entry.seq !~ #{regex}")
end
print entry.seq.to_fasta(entry.definition,70)
end
end
|