class MiGA::Cli::Action::TaxTest
def parse_cli
def parse_cli cli.defaults = { test: 'both', ref_project: false } cli.parse do |opt| cli.opt_object(opt, [:project, :dataset]) opt.on( '--ref-project', 'Use the taxonomy from the reference project, not the current project' ) { |v| cli[:ref_project] = v } opt.on( '-t', '--test STRING', 'Test to perform. Supported values: intax, novel, both' ) { |v| cli[:test] = v.downcase } end end