miga-base 1.2.6.4 → 1.2.8.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 53a62214ac4d3bb9979bcf56b73d62d2b6ab6f65d5c94743fc852cfc69ed549b
4
- data.tar.gz: f030600fca0d47e1351e19c045862583de772e7b80e85879500c89f87422d2f7
3
+ metadata.gz: 6605edc35cd0b2aec6d095653ff1d9604df81d6a57e341a290cbd213bb18fee3
4
+ data.tar.gz: 2f811051db25da424bdf9f9c89390a4e0cac33fb3c6330e255b369d171e8a4b9
5
5
  SHA512:
6
- metadata.gz: af0d109b1269fafd18764972e0525770ce700e4f212c81cc5dcd2eb6de2e8c29b989ffb0449e38775b156831bc41eb106c274695ee8d699432e42413791038e8
7
- data.tar.gz: 692bcc8971b39d073009a5e525acf7c299ae3a89efdb1c515d4f769285d2141f4f2410ee5a270d17b98d8b937b1256cdd5d65dfa1bd6da91456c8aaaa7f2a3ba
6
+ metadata.gz: 252fe9abe5ce14ebe86c5250716b9ce541f1faf510bd36ae2d33f4f15f964f3ec735a66db9fa11503b74fb82f16d6a2a5c43d6df3a71b67dacec65462425d759
7
+ data.tar.gz: ef734003e57818b155347ce591e9683420ecfa00cd5b4398c0ed1485fc23108a74d9bd91980d6a2bb4c2481c3d1027805b9083fb9add802b5a30f140926c996d
@@ -56,7 +56,7 @@ class MiGA::Cli::Action::ClassifyWf < MiGA::Cli::Action
56
56
  p = create_project(
57
57
  :assembly,
58
58
  p_metadata,
59
- run_ssu: false, run_mytaxa_scan: false, run_distances: false
59
+ run_mytaxa_scan: false, run_distances: false
60
60
  )
61
61
  p.set_option(:ref_project, ref_db.path)
62
62
  p.set_option(:tax_pvalue, cli[:pvalue])
@@ -152,7 +152,7 @@ module MiGA::Cli::Action::Init::DaemonHelper
152
152
  "#{v[:type]} -q '#{queue}' -v '{{vars}}' -pe openmp {{cpus}} " \
153
153
  "-j y -o '{{log}}' -N '{{task_name_simple}}' -l h_vmem=9g " \
154
154
  "-l h_rt=12:00:00 '{{script}}' | grep . " \
155
- "| perl -pe 's/^Your job (\S+) .*/$1/'"
155
+ "| perl -pe 's/^Your job (\\S+) .*/$1/'"
156
156
  )
157
157
  else
158
158
  v[:cmd] = cli.ask_user(
@@ -0,0 +1,16 @@
1
+ # @package MiGA
2
+ # @license Artistic-2.0
3
+
4
+ require 'miga/cli/action'
5
+
6
+ class MiGA::Cli::Action::Touch < MiGA::Cli::Action
7
+ def parse_cli
8
+ cli.parse do |opt|
9
+ cli.opt_object(opt, [:project, :dataset_opt])
10
+ end
11
+ end
12
+
13
+ def perform
14
+ cli.load_project_or_dataset.save!
15
+ end
16
+ end
data/lib/miga/cli/base.rb CHANGED
@@ -34,6 +34,7 @@ module MiGA::Cli::Base
34
34
  # Objects (Datasets or Projects)
35
35
  edit: 'Edit the metadata of a dataset or project',
36
36
  option: 'Get or set options of a dataset or project',
37
+ touch: 'Change the "last modified" time to now without changes',
37
38
  # System
38
39
  init: 'Initialize MiGA to process new projects',
39
40
  daemon: 'Control the daemon of a MiGA project',
data/lib/miga/dataset.rb CHANGED
@@ -84,6 +84,11 @@ class MiGA::Dataset < MiGA::MiGA
84
84
  pull_hook :on_save
85
85
  end
86
86
 
87
+ ##
88
+ # Currently +save!+ is simply an alias of +save+, for compatibility with the
89
+ # +Project+ interface
90
+ alias :save! :save
91
+
87
92
  ##
88
93
  # Get the type of dataset as Symbol
89
94
  def type
data/lib/miga/version.rb CHANGED
@@ -12,7 +12,7 @@ module MiGA
12
12
  # - String indicating release status:
13
13
  # - rc* release candidate, not released as gem
14
14
  # - [0-9]+ stable release, released as gem
15
- VERSION = [1.2, 6, 4].freeze
15
+ VERSION = [1.2, 8, 2].freeze
16
16
 
17
17
  ##
18
18
  # Nickname for the current major.minor version.
@@ -20,7 +20,7 @@ module MiGA
20
20
 
21
21
  ##
22
22
  # Date of the current gem relese.
23
- VERSION_DATE = Date.new(2022, 6, 24)
23
+ VERSION_DATE = Date.new(2022, 8, 14)
24
24
 
25
25
  ##
26
26
  # References of MiGA
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: miga-base
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.6.4
4
+ version: 1.2.8.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luis M. Rodriguez-R
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-06-24 00:00:00.000000000 Z
11
+ date: 2022-08-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: daemons
@@ -170,6 +170,7 @@ files:
170
170
  - lib/miga/cli/action/tax_index.rb
171
171
  - lib/miga/cli/action/tax_set.rb
172
172
  - lib/miga/cli/action/tax_test.rb
173
+ - lib/miga/cli/action/touch.rb
173
174
  - lib/miga/cli/action/wf.rb
174
175
  - lib/miga/cli/base.rb
175
176
  - lib/miga/cli/objects_helper.rb