Genewise 2.2.3: Difference between revisions
Jump to navigation
Jump to search
(Created page with " == Module file == The module file can be found in this location: /cm/shared/apps/WUR/ABGC/modulefiles <source lang='tcl'> #%Module1.0######################################...") |
m (<source> to <pre> to fix code blocks) |
||
(3 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
Compares a protein sequence to a genomic DNA sequence, allowing for introns and frameshifting errors. | |||
== Module file == | == Module file == | ||
The module file can be found in this location: | The module file can be found in this location: | ||
/cm/shared/ | /cm/shared/modulefiles/SHARED/ | ||
< | <pre> | ||
#%Module1.0####################################################################### | #%Module1.0####################################################################### | ||
## | ## genewise 2.2.3-rc7 modulefile | ||
## | ## | ||
proc ModulesHelp { } { | proc ModulesHelp { } { | ||
puts stderr "\tAdds | puts stderr "\tAdds genewise 2.2.3 to your environment" | ||
} | } | ||
module-whatis "Adds | module-whatis "Adds genewise 2.2.3 to your environment" | ||
set | set genewise_223_root /cm/shared/apps/SHARED/genewise/wise2.2.3-rc7/src/bin/ | ||
set genewise_conf /cm/shared/apps/SHARED/genewise/wise2.2.3-rc7/wisecfg | |||
prepend-path PATH $genewise_223_root | |||
prepend-path WISECONFIGDIR $genewise_conf | |||
== Installation details == | |||
Compiled from source. Some problems compiling due to glib dependencies. Resolved by using the system-wide glib1.2 libraries, in combination with gcc 4.8. | |||
</pre> | |||
== See also == | == See also == | ||
Line 28: | Line 34: | ||
== External links == | == External links == | ||
* [http:// | * [http://www.ebi.ac.uk/Tools/psa/genewise/help/ Genewise at EBI] |
Latest revision as of 14:49, 15 June 2023
Compares a protein sequence to a genomic DNA sequence, allowing for introns and frameshifting errors.
Module file
The module file can be found in this location:
/cm/shared/modulefiles/SHARED/
#%Module1.0####################################################################### ## genewise 2.2.3-rc7 modulefile ## proc ModulesHelp { } { puts stderr "\tAdds genewise 2.2.3 to your environment" } module-whatis "Adds genewise 2.2.3 to your environment" set genewise_223_root /cm/shared/apps/SHARED/genewise/wise2.2.3-rc7/src/bin/ set genewise_conf /cm/shared/apps/SHARED/genewise/wise2.2.3-rc7/wisecfg prepend-path PATH $genewise_223_root prepend-path WISECONFIGDIR $genewise_conf == Installation details == Compiled from source. Some problems compiling due to glib dependencies. Resolved by using the system-wide glib1.2 libraries, in combination with gcc 4.8.