From 982c302ebe6141997ae23cd8a9ac083d1b97ee64 Mon Sep 17 00:00:00 2001 From: Gael Yvert <Gael.Yvert@ens-lyon.fr> Date: Wed, 12 Feb 2025 13:34:36 +0000 Subject: [PATCH] blast view: informs users on the minimal length of query sequence to use (issue #180) --- resources/views/blast/welcome.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/blast/welcome.blade.php b/resources/views/blast/welcome.blade.php index 4e012d9..e0415bc 100755 --- a/resources/views/blast/welcome.blade.php +++ b/resources/views/blast/welcome.blade.php @@ -24,7 +24,7 @@ {{ html()->label('Select the blast task') }} {{ html()->select('blasttask', ['blastn-short' => 'blastn-short', 'blastn' => 'blastn', 'tblastn' => 'tblastn'], 'blastn-short') }} <br> <br> - {{ html()->label('Paste below your query sequence') }} + {{ html()->label('Paste below your query sequence (must be at least 7bp-long)') }} <br> <br> {{ html()->textarea('queryseq', null, ['class' => 'form-control'])->rows(20)->cols(100) }} </div> -- GitLab