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: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63:
<?php
namespace DispatchModule\Helpers;
class RnaplotHelper {
public static function deleteRnaplotFiles($rnaplotTemp, $maxfiles) {
if ($maxfiles != -1) {
$files = \Nette\Utils\Finder::findFiles('*.svg')->in($rnaplotTemp);
if (count($files) > $maxfiles) {
foreach ($files as $key => $file) {
$deleteFile = new \BaseModule\Models\FileModel($key);
$deleteFile->deleteFile();
}
}
}
}
public static function generateRnaplot($rnaplotTemp, $idString, $sequence, $prediction, $maxfiles = 200) {
self::deleteRnaplotFiles($rnaplotTemp, $maxfiles);
$resultPath = $rnaplotTemp . $idString . '_ss.svg';
$timestamp = microtime(true);
$tempFilePath = $rnaplotTemp . $timestamp . '.in';
$inputFile = new \BaseModule\Models\FileModel($tempFilePath);
$inputFile->createFile();
$inputFile->appendContent(">$idString\n" . \DispatchModule\Sequence::makeSimplePrediction($sequence) . "\n" . $prediction);
exec("cd $rnaplotTemp && " . RNAPLOT_PATH . " -o svg < $tempFilePath", $out);
if (!file_exists($resultPath)) {
throw new \BaseModule\Exceptions\BaseException('Something went wrong in the visualization factory');
}
}
}