Sha256: 33fa778c09f84e1b82cc45101f6f39623a6aa3210f28bb02d11320d5f1781560

Contents?: true

Size: 1.07 KB

Versions: 260

Compression:

Stored size: 1.07 KB

Contents

#!/usr/bin/env ruby

require 'rbbt-util'
require 'rbbt/util/simpleopt'

$0 = "rbbt #{$previous_commands*""} #{ File.basename(__FILE__) }" if $previous_commands

options = SOPT.setup <<EOF

Description

$ rbbt tsv attach <file1> <file2> [<file3> ...] [options]

Use - to read from STDIN

-f--fields* Fields to attach (all if not specified)
-i--identifiers* Identifier file
-h--help Print this help

EOF
if options[:help]
  if defined? rbbt_usage
    rbbt_usage 
  else
    puts SOPT.usage
  end
  exit 0
end

file1, *rest = ARGV
fields = options[:fields]
identifiers = options[:identifiers] 

if identifiers.nil?
  require 'rbbt/sources/organism'
  Organism.identifiers(Organism.default_code("Hsa"))
end

fields = fields ? fields.split(/[,|]/).collect{|f| f.strip} : nil

tsv = TSV.open(file1, :unnamed => true)
tsv = tsv.to_double if tsv.type == :flat

rest.each do |file2|
  file_fields = TSV.parse_header(file2).all_fields - tsv.all_fields
  these_fields = fields ? fields & file_fields : nil
  tsv = tsv.attach file2, :fields => these_fields, :identifiers => identifiers
end

puts tsv.to_s

Version data entries

260 entries across 260 versions & 1 rubygems

Version Path
rbbt-util-5.21.73 share/rbbt_commands/tsv/attach
rbbt-util-5.21.72 share/rbbt_commands/tsv/attach
rbbt-util-5.21.71 share/rbbt_commands/tsv/attach
rbbt-util-5.21.70 share/rbbt_commands/tsv/attach
rbbt-util-5.21.69 share/rbbt_commands/tsv/attach
rbbt-util-5.21.68 share/rbbt_commands/tsv/attach
rbbt-util-5.21.67 share/rbbt_commands/tsv/attach
rbbt-util-5.21.66 share/rbbt_commands/tsv/attach
rbbt-util-5.21.64 share/rbbt_commands/tsv/attach
rbbt-util-5.21.63 share/rbbt_commands/tsv/attach
rbbt-util-5.21.62 share/rbbt_commands/tsv/attach
rbbt-util-5.21.61 share/rbbt_commands/tsv/attach
rbbt-util-5.21.60 share/rbbt_commands/tsv/attach
rbbt-util-5.21.59 share/rbbt_commands/tsv/attach
rbbt-util-5.21.58 share/rbbt_commands/tsv/attach
rbbt-util-5.21.57 share/rbbt_commands/tsv/attach
rbbt-util-5.21.56 share/rbbt_commands/tsv/attach
rbbt-util-5.21.55 share/rbbt_commands/tsv/attach
rbbt-util-5.21.54 share/rbbt_commands/tsv/attach
rbbt-util-5.21.53 share/rbbt_commands/tsv/attach