Method: Bio::Command.make_command_line
- Defined in:
- lib/bio/command.rb
.make_command_line(ary) ⇒ Object
Generate command line string with special characters escaped.
Arguments:
-
(required) ary: Array containing String objects
- Returns
-
String object
82 83 84 85 86 87 88 89 |
# File 'lib/bio/command.rb', line 82 def make_command_line(ary) case RUBY_PLATFORM when /mswin32|bccwin32/ make_command_line_windows(ary) else make_command_line_unix(ary) end end |