Difference between revisions of "BioEdit"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(BioEdit is a biological sequence alignment editor)
 
m
 
Line 3: Line 3:
 
When you run the setup.exe it creates a bioedit.msi in a subfolder of C:\Users\'''''user'''''\AppData\Local\Temp\_????folder
 
When you run the setup.exe it creates a bioedit.msi in a subfolder of C:\Users\'''''user'''''\AppData\Local\Temp\_????folder
  
<package
+
<source lang="xml">
 +
<package
 
       id="bioedit"
 
       id="bioedit"
 
       name="BioEdit Sequence Alignment Editor"
 
       name="BioEdit Sequence Alignment Editor"
Line 19: Line 20:
 
       <upgrade include='install' />  
 
       <upgrade include='install' />  
 
       <remove cmd='msiexec.exe /x{AF6D9313-E338-48F0-9B0C-7DE20EDB99CF} /qn'/>
 
       <remove cmd='msiexec.exe /x{AF6D9313-E338-48F0-9B0C-7DE20EDB99CF} /qn'/>
</package>
+
</package>
 +
</source>
 +
 
 +
[[Category: Silent Installers]]

Latest revision as of 09:06, 22 May 2012

BioEdit is a biological sequence alignment editor written for Windows 95/98/NT/2000/XP/7. An intuitive multiple document interface with convenient features makes alignment and manipulation of sequences relatively easy on your desktop computer. It can be downloaded here http://www.mbio.ncsu.edu/bioedit/bioedit.html

When you run the setup.exe it creates a bioedit.msi in a subfolder of C:\Users\user\AppData\Local\Temp\_????folder

<package
       id="bioedit"
       name="BioEdit Sequence Alignment Editor"
       revision="%VERSION%"
       reboot="false"
       priority="1">
       <variable name="version" value="7.1.3"/>
       <check type="uninstall" condition="versionequalto" path="BioEdit" value="%version%"/>
       <install architecture="x86" cmd='msiexec.exe /i %SOFTWARE%\bioedit\bioedit.%version%.msi /qn ALLUSERS=1 INSTALLDIR="%PROGRAMFILES%\BioEdit" ' />
       <install architecture="x64" cmd='msiexec.exe /i %SOFTWARE%\bioedit\bioedit.%version%.msi /qn ALLUSERS=1 INSTALLDIR="%PROGRAMFILES(x86)%\BioEdit" ' />
       <install architecture="x86" cmd='cmd /c cacls "%PROGRAMFILES%\BioEdit" /t /e /g Users:W >nil' />
       <install architecture="x64" cmd='cmd /c cacls "%PROGRAMFILES(x86)%\BioEdit" /t /e /g Users:W >nil' />
       <upgrade cmd='cmd /c del /q /f "%ALLUSERSPROFILE%\Start Menu\Programs\BioEdit.lnk"' ><exit code='any' /></upgrade>  
       <upgrade cmd='cmd /c rmdir /q /s "%PROGRAMFILES%\BioEdit"' ><exit code='any' /></upgrade> 
       <upgrade include='install' /> 
       <remove cmd='msiexec.exe /x{AF6D9313-E338-48F0-9B0C-7DE20EDB99CF} /qn'/>
</package>