lib/transcriptic/command/data.rb in transcriptic-0.1.2 vs lib/transcriptic/command/data.rb in transcriptic-0.1.3
- old
+ new
@@ -1,8 +1,29 @@
module Transcriptic::Command
# manage experimental data sets
#
class Data < Base
- def index; end
+
+ # data RUNID
+ #
+ # list available datasets for RUNID
+ #
+ def index
+ end
+
+ # transcriptic data:download DATASETID
+ #
+ # download the dataset identified by DATASETID
+ #
+ def download
+ end
+
+ # transcriptic data:delete DATASETID
+ #
+ # delete the dataset identified by DATASETID
+ #
+ def delete
+ end
+
end
end
\ No newline at end of file