Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ FROM docker.io/ncbi/blast-static:${BLAST_VERSION} AS ncbi-blast
FROM docker.io/library/ruby:3.2-bookworm AS final

LABEL Description="Intuitive local web frontend for the BLAST bioinformatics tool"
LABEL MailingList="https://groups.google.com/forum/#!forum/sequenceserver"
LABEL MailingList="https://support.sequenceserver.com"
LABEL Website="http://sequenceserver.com"

# Install packages required to run SequenceServer and BLAST.
Expand Down
10 changes: 5 additions & 5 deletions bin/sequenceserver
Original file line number Diff line number Diff line change
Expand Up @@ -326,13 +326,13 @@ begin
# Ideally we will never hit this block. If we do, there's a bug in
# SequenceServer or something really weird going on. If we hit this
# error block we show the stacktrace to the user requesting them to
# post the same to our Google Group.
# post the same to our Community Support.
puts <<~MSG
Something went wonky

Looks like you have encountered a bug in SequenceServer. Please could you
report this incident to our Google Group -
https://groups.google.com/forum/?fromgroups#!forum/sequenceserver
report this incident to our Community Support -
https://support.sequenceserver.com

Error:
#{e.backtrace.unshift(e.message).join("\n")}
Expand Down Expand Up @@ -373,7 +373,7 @@ begin
fail if sequence identifiers are longer than 50 characters. While we
exepect the reformatting process to work in most other cases, things
can inevitably go wrong. Thus, please back up your databases before
reformatting and post any issues to our Google Group/GitHub so that
reformatting and post any issues to our Community Support/GitHub so that
we can all learn from it.

Proceed? [y/n] (Default: y).
Expand Down Expand Up @@ -421,4 +421,4 @@ rescue Slop::Error => e
puts e
puts "Run '#{$PROGRAM_NAME} -h' for help with command line options."
exit
end
end
4 changes: 2 additions & 2 deletions lib/sequenceserver/api_errors.rb
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ def message
databases, or advanced parameters. Details of the error are included
below. Please ask on our
<a href="https://github.com/wurmlab/sequenceserver/issues" target="_blank">issue tracker</a>
or on our <a href="https://groups.google.com/g/sequenceserver">forum</a> if you are
not sure what the error message means, or if the error message is just a number.
or our <a href="https://support.sequenceserver.com" target="_blank">community forum</a>. If you are a SequenceServer Cloud customer, please contact our support team via
<a href="https://sequenceserver.com/support/">sequenceserver.com/support</a>; open-source users are encouraged to continue using the issue tracker or forum for assistance.
MSG
end

Expand Down
3 changes: 2 additions & 1 deletion lib/sequenceserver/exceptions.rb
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,8 @@ def to_s
Error:
#{out.strip}

Please could you report this to 'https://groups.google.com/forum/#!forum/sequenceserver'?
If you are a SequenceServer Cloud customer, please report this issue via <a href="https://sequenceserver.com/support/">sequenceserver.com/support</a>.
Open-source users are encouraged to report the problem at <a href="https://support.sequenceserver.com">support.sequenceserver.com</a>.
MSG
end
end
Expand Down
Loading