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.23.38 share/rbbt_commands/tsv/attach
rbbt-util-5.23.37 share/rbbt_commands/tsv/attach
rbbt-util-5.23.36 share/rbbt_commands/tsv/attach
rbbt-util-5.23.35 share/rbbt_commands/tsv/attach
rbbt-util-5.23.34 share/rbbt_commands/tsv/attach
rbbt-util-5.23.32 share/rbbt_commands/tsv/attach
rbbt-util-5.23.31 share/rbbt_commands/tsv/attach
rbbt-util-5.23.30 share/rbbt_commands/tsv/attach
rbbt-util-5.23.29 share/rbbt_commands/tsv/attach
rbbt-util-5.23.28 share/rbbt_commands/tsv/attach
rbbt-util-5.23.27 share/rbbt_commands/tsv/attach
rbbt-util-5.23.26 share/rbbt_commands/tsv/attach
rbbt-util-5.23.25 share/rbbt_commands/tsv/attach
rbbt-util-5.23.24 share/rbbt_commands/tsv/attach
rbbt-util-5.23.23 share/rbbt_commands/tsv/attach
rbbt-util-5.23.22 share/rbbt_commands/tsv/attach
rbbt-util-5.23.21 share/rbbt_commands/tsv/attach
rbbt-util-5.23.20 share/rbbt_commands/tsv/attach
rbbt-util-5.23.19 share/rbbt_commands/tsv/attach
rbbt-util-5.23.18 share/rbbt_commands/tsv/attach