1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36:
<?php
namespace DispatchModule\Models;
class FastaModel extends \BaseModule\Models\BaseModel {
private $input;
public function __construct($input) {
$this->input = $input;
}
public function executeFastaSearch() {
exec('"' . FASTA_PATH . "ggsearch36\" -n -m 8 -d 0 \"" . $this->input . "\" \"" . CPPREDICT2_TEMPLATES . TEMPLATES_DATABASE . ".fasta\" | LC_ALL=C sort -g -k 11,11 -k 12,12nr | sort -s -u -k 1,1 | cut -f 1,2", $result);
return $result;
}
}