lib/lederhosen/tasks/split.rb in lederhosen-0.1.2 vs lib/lederhosen/tasks/split.rb in lederhosen-0.1.3
- old
+ new
@@ -3,17 +3,17 @@
#
module Lederhosen
class CLI
- desc "output separate fasta file containing sequences belonging to each cluster",
- "--clusters=clusters.uc --reads=joined.fasta --min-clst-size=100"
+ desc "split",
+ "--clusters=clusters.uc --reads=joined.fasta --min-clst-size=1 --out-dir=output_directory"
method_option :clusters, :type => :string, :required => true
method_option :reads, :type => :string, :required => true
method_option :out_dir, :type => :string, :required => true
method_option :buffer_size, :type => :numeric, :default => 1000
- method_option :min_clst_size, :type => :numeric, :default => 100
+ method_option :min_clst_size, :type => :numeric, :default => 1
def split
clusters = options[:clusters]
reads = options[:reads]
out_dir = options[:out_dir]
\ No newline at end of file