Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
muffato authored and ens-bwalts committed Aug 2, 2021
1 parent 4f16af6 commit 4f5843d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sql/procedures.mysql
Expand Up @@ -32,7 +32,7 @@ CONTACT
--
-- Usage:
-- select * from progress; # the whole table (may take ages to generate, depending on the size of your pipeline)
-- select * from progress where logic_name like 'family_blast%'; # only show family_blast-related analyses
-- select * from progress where analysis_name_and_id like 'family_blast%'; # only show family_blast-related analyses
-- select * from progress where retry_count>1; # only show jobs that have been tried more than once

CREATE OR REPLACE VIEW progress AS
Expand Down
2 changes: 1 addition & 1 deletion sql/procedures.pgsql
Expand Up @@ -32,7 +32,7 @@ CONTACT
--
-- Usage:
-- select * from progress; # the whole table (may take ages to generate, depending on the size of your pipeline)
-- select * from progress where logic_name like 'family_blast%'; # only show family_blast-related analyses
-- select * from progress where analysis_name_and_id like 'family_blast%'; # only show family_blast-related analyses
-- select * from progress where retry_count>1; # only show jobs that have been tried more than once

CREATE OR REPLACE VIEW progress AS
Expand Down
2 changes: 1 addition & 1 deletion sql/procedures.sqlite
Expand Up @@ -32,7 +32,7 @@ CONTACT
--
-- Usage:
-- select * from progress; # the whole table (may take ages to generate, depending on the size of your pipeline)
-- select * from progress where logic_name like 'family_blast%'; # only show family_blast-related analyses
-- select * from progress where analysis_name_and_id like 'family_blast%'; # only show family_blast-related analyses
-- select * from progress where retry_count>1; # only show jobs that have been tried more than once

DROP VIEW IF EXISTS progress;
Expand Down

0 comments on commit 4f5843d

Please sign in to comment.