<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.csi.cuny.edu/cunyhpc/index.php?action=history&amp;feed=atom&amp;title=AUGUSTUS</id>
	<title>AUGUSTUS - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.csi.cuny.edu/cunyhpc/index.php?action=history&amp;feed=atom&amp;title=AUGUSTUS"/>
	<link rel="alternate" type="text/html" href="https://wiki.csi.cuny.edu/cunyhpc/index.php?title=AUGUSTUS&amp;action=history"/>
	<updated>2026-05-19T13:35:12Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.38.4</generator>
	<entry>
		<id>https://wiki.csi.cuny.edu/cunyhpc/index.php?title=AUGUSTUS&amp;diff=44&amp;oldid=prev</id>
		<title>James: Created page with &quot;Augustus is available on Karle, users must load the module by typing:  &lt;pre&gt; module load augustus/[current-version] &lt;/pre&gt;  The current version can be found in /share/usr/augustus. More detailed information about AUGUSTUS capabilities along with data sets can be found on AUGUSTUS web page:  &lt;pre&gt; http://bioinf.uni-greifswald.de/augustus/ &lt;/pre&gt;  When used in research the AUGUSTUS must be cited with appropriate paper from the following list:  &lt;pre&gt; Oliver Keller, Martin K...&quot;</title>
		<link rel="alternate" type="text/html" href="https://wiki.csi.cuny.edu/cunyhpc/index.php?title=AUGUSTUS&amp;diff=44&amp;oldid=prev"/>
		<updated>2022-10-17T17:27:24Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;Augustus is available on Karle, users must load the module by typing:  &amp;lt;pre&amp;gt; module load augustus/[current-version] &amp;lt;/pre&amp;gt;  The current version can be found in /share/usr/augustus. More detailed information about AUGUSTUS capabilities along with data sets can be found on AUGUSTUS web page:  &amp;lt;pre&amp;gt; http://bioinf.uni-greifswald.de/augustus/ &amp;lt;/pre&amp;gt;  When used in research the AUGUSTUS must be cited with appropriate paper from the following list:  &amp;lt;pre&amp;gt; Oliver Keller, Martin K...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Augustus is available on Karle, users must load the module by typing:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
module load augustus/[current-version]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The current version can be found in /share/usr/augustus. More detailed information about AUGUSTUS capabilities along with data sets can be found on AUGUSTUS web page:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
http://bioinf.uni-greifswald.de/augustus/&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When used in research the AUGUSTUS must be cited with appropriate paper from the following list:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Oliver Keller, Martin Kollmar, Mario Stanke, Stephan Waack (2011)&lt;br /&gt;
A novel hybrid gene prediction method employing protein multiple sequence alignments&lt;br /&gt;
Bioinformatics, doi: 10.1093/bioinformatics/btr010&lt;br /&gt;
Mario Stanke, Mark Diekhans, Robert Baertsch, David Haussler (2008)&lt;br /&gt;
Using native and syntenically mapped cDNA alignments to improve de novo gene finding&lt;br /&gt;
Bioinformatics, 24(5), pages 637-644, doi: 10.1093/bioinformatics/btn013&lt;br /&gt;
Mario Stanke, Ana Tzvetkova, Burkhard Morgenstern (2006)&lt;br /&gt;
&amp;quot;AUGUSTUS at EGASP: using EST, protein and genomic alignments for improved gene prediction in the human genome&amp;quot;&lt;br /&gt;
BMC Genome Biology, 7(Suppl 1):S11.&lt;br /&gt;
M. Stanke , O. Schöffmann , B. Morgenstern, S. Waack (2006)&lt;br /&gt;
Gene prediction in eukaryotes with a generalized hidden Markov model that uses hints from external sources &lt;br /&gt;
BMC Bioinformatics 7, 62.&lt;br /&gt;
Mario Stanke and Burkhard Morgenstern (2005)&lt;br /&gt;
&amp;quot;AUGUSTUS: a web server for gene prediction in eukaryotes that allows user-defined constraints&amp;quot;,&lt;br /&gt;
Nucleic Acids Research, 33, W465-W467&lt;br /&gt;
Mario Stanke, Rasmus Steinkamp, Stephan Waack and Burkhard Morgenstern (2004) &lt;br /&gt;
&amp;quot;AUGUSTUS: a web server for gene finding in eukaryotes&amp;quot; &lt;br /&gt;
Nucleic Acids Research, Vol. 32, W309-W312&lt;br /&gt;
Mario Stanke and Stephan Waack (2003)&lt;br /&gt;
Gene Prediction with a Hidden-Markov Model and a new Intron Submodel. &lt;br /&gt;
Bioinformatics, Vol. 19, Suppl. 2, pages ii215-ii225&lt;br /&gt;
Mario Stanke (2003)&lt;br /&gt;
Gene Prediction with a Hidden-Markov Model. &lt;br /&gt;
Ph.D. thesis, Universität Göttingen&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
AUGUSTUS is sequential program Thus the following basic script can be used to run workflow with AUGUSTUS:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/bash&lt;br /&gt;
#SBATCH --partition production&lt;br /&gt;
#SBATCH --job-name my program&lt;br /&gt;
#SBATCH --nodes=1&lt;br /&gt;
#SBATCH --ntasks=1&lt;br /&gt;
&lt;br /&gt;
cd SLURM_SUBMIT_DIR&lt;br /&gt;
&lt;br /&gt;
augustus &amp;lt;input_file&amp;gt;  &amp;gt; &amp;lt;output_file&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>James</name></author>
	</entry>
</feed>