https://github.com/tripal/tripal_blast
Provides an user interface to BLAST on Tripal sites.
https://github.com/tripal/tripal_blast
hacktoberfest integration ncbi-blast tripal
Last synced: about 1 month ago
JSON representation
Provides an user interface to BLAST on Tripal sites.
- Host: GitHub
- URL: https://github.com/tripal/tripal_blast
- Owner: tripal
- Created: 2015-01-16T19:08:23.000Z (over 10 years ago)
- Default Branch: 2.x
- Last Pushed: 2024-10-08T18:09:02.000Z (7 months ago)
- Last Synced: 2025-03-21T06:33:26.287Z (about 2 months ago)
- Topics: hacktoberfest, integration, ncbi-blast, tripal
- Language: PHP
- Homepage: https://tripal.github.io/tripal_blast/
- Size: 83.3 MB
- Stars: 5
- Watchers: 6
- Forks: 13
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

**Developed by the University of Saskatchewan, Pulse Crop Bioinformatics team.**
## Introduction
This module provides a basic interface to allow your users to utilize your
server's NCBI BLAST+.Specifically it provides blast program-specific forms (blastn, blastp, tblastn,
blastx are supported). In the future, there will be a single form where you
will be able to select either a nucleotide or a protein database to BLAST
against regardless of the type of query and it will decide which BLAST
program to use based on the combination of query/database type (ie: if you
selected a protein database on the nucleotide BLAST form then blastx would
be used).BLAST submissions result in the creation of Tripal jobs which then need to run
from the command-line. This ensures that long running BLASTs will not cause
page time-outs but does add some management overhead and might result in longer
waits for users depending on how often you have cron set to run Tripal jobs.The BLAST results page is an expandable summary table with each hit being
listed as a row in the table with query/hit/e-value information. The row can
then be expanded to include additional information including the alignment.
Download formats are allow users to download these results in the familiar
tabular, GFF3 or HTML NCBI formats.## Upgrade to Tripal4 and Drupal10
This module is currently being actively upgraded to Drupal 10. **It should not
yet be installed on a production site and given to users ;-) but we're getting
there! For the current progress, check in the
[upgrade release milestone](https://github.com/tripal/tripal_blast/milestone/1)
to get an idea of the outstanding tasks needed to be fixed before release.## Automated Testing
This package is dedicated to a high standard of automated testing. We use
PHPUnit for testing and CodeClimate to ensure good test coverage and maintainability.
There are more details on [our CodeClimate project page] describing our specific
maintainability issues and test coverage.![MaintainabilityBadge]
![TestCoverageBadge]The following compatibility is proven via automated testing workflows.

| Drupal | 10.0.x | 10.1.x | 10.2.x |
|-------------|-----------------|-----------------|-----------------|
| **PHP 8.1** | ![Grid1A-Badge] | ![Grid1B-Badge] | ![Grid1C-Badge] |
| **PHP 8.2** | ![Grid2A-Badge] | ![Grid2B-Badge] | ![Grid2C-Badge] |
| **PHP 8.3** | | | ![Grid3C-Badge] |[our CodeClimate project page]: https://codeclimate.com/github/tripal/tripal_blast
[MaintainabilityBadge]: https://api.codeclimate.com/v1/badges/5071f91a02a3fcafc275/maintainability
[TestCoverageBadge]: https://api.codeclimate.com/v1/badges/5071f91a02a3fcafc275/test_coverage[Grid1A-Badge]: https://github.com/tripal/tripal_blast/actions/workflows/MAIN-phpunit-Grid1A.yml/badge.svg
[Grid1B-Badge]: https://github.com/tripal/tripal_blast/actions/workflows/MAIN-phpunit-Grid1B.yml/badge.svg
[Grid1C-Badge]: https://github.com/tripal/tripal_blast/actions/workflows/MAIN-phpunit-Grid1C.yml/badge.svg[Grid2A-Badge]: https://github.com/tripal/tripal_blast/actions/workflows/MAIN-phpunit-Grid2A.yml/badge.svg
[Grid2B-Badge]: https://github.com/tripal/tripal_blast/actions/workflows/MAIN-phpunit-Grid2B.yml/badge.svg
[Grid2C-Badge]: https://github.com/tripal/tripal_blast/actions/workflows/MAIN-phpunit-Grid2C.yml/badge.svg[Grid3C-Badge]: https://github.com/tripal/tripal_blast/actions/workflows/MAIN-phpunit-Grid3C.yml/badge.svg
## Docker
```
git clone https://github.com/tripal/tripal_blast.git
cd tripal_blast
docker build --tag=tripal/tripal_blast:latest .
docker run --publish=80:80 -tid --volume=`pwd`:/var/www/drupal/web/modules/contrib/tripal_blast tripal/tripal_blast:latest
```