Translations of this page:
Trace: clustalw

CLUSTALW

CLUSTALW

General informations

  • License: free to use for non-commercial purposes. Details are available here

Installation instructions

Impilo Version Installed version
Impilo 10.04 A10 2.0.12
Impilo 11.04 A11 2.1

Basic usage

<php> /* * DO NOT MODIFY THIS CODE BLOCK UNLESS YOU REALLY KNOW WHAT YOU ARE DOING!! * IT EXISTS TO DISPLAY THE HELP MATERIAL PROVIDED BY THIS APPLICATION! */

$isPresent = exec(“which clustalw2”);

if(strlen($isPresent)==null){

print("The application named clustalw2 is not present on this computer!");

} else{

$data = array();
$tmp = exec("clustalw2 -help",$data);
print("<pre>\n");
foreach($data as $line){
  print($line."\n");
}
print("</pre>\n");

} </php>

References

  • More to come…