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
9 changes: 9 additions & 0 deletions scripts/fastani_in_parallel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,15 @@
# more details. You should have received a copy of the GNU General Public License along with
# Bacsort. If not, see <http://www.gnu.org/licenses/>.

# Check for fastANI
if command -v fastANI >/dev/null 2>&1 ; then
echo "fastANI found"
echo "version: $(fastANI -v)"
else
echo "Error: fastANI not found - please install fastANI and try again"
exit
fi

mkdir -p tree

printf "\n"
Expand Down
9 changes: 9 additions & 0 deletions scripts/fastani_with_slurm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,15 @@
# more details. You should have received a copy of the GNU General Public License along with
# Bacsort. If not, see <http://www.gnu.org/licenses/>.

# Check for fastANI
if command -v fastANI >/dev/null 2>&1 ; then
echo "fastANI found"
echo "version: $(fastANI -v)"
else
echo "Error: fastANI not found - please install fastANI and try again"
exit
fi

group_count=32

mkdir -p tree
Expand Down