<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.jstacs.de/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Grau</id>
	<title>Jstacs - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://www.jstacs.de/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Grau"/>
	<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php/Special:Contributions/Grau"/>
	<updated>2026-04-04T12:36:34Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.38.2</generator>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq-Examples&amp;diff=1226</id>
		<title>GeMoSeq-Examples</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq-Examples&amp;diff=1226"/>
		<updated>2025-11-19T14:52:49Z</updated>

		<summary type="html">&lt;p&gt;Grau: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== GeMoSeq example run ==&lt;br /&gt;
&lt;br /&gt;
We use a data set for yeast for an example run of GeMoSeq. As input of GeMoSeq, we need a reference genome and a library of reads mapped to that reference.&lt;br /&gt;
Here, we use the [https://ftp.ncbi.nlm.nih.gov/genomes/all/GCF/000/146/045/GCF_000146045.2_R64/GCF_000146045.2_R64_genomic.fna.gz &#039;&#039;S. cerevisiae&#039;&#039; S288C reference genome R64] available from NCBI. For later evaluation of GeMoSeq prediction results, we also download the [https://ftp.ncbi.nlm.nih.gov/genomes/all/GCF/000/146/045/GCF_000146045.2_R64/GCF_000146045.2_R64_genomic.gff.gz reference annotation].&lt;br /&gt;
As a sequencing library, we use the library with accession SRR8552464 available from the [https://www.ebi.ac.uk/ena/browser/home European Nucleotide archive] or [https://www.ncbi.nlm.nih.gov/sra NCBI Sequence Read Archive].&lt;br /&gt;
&lt;br /&gt;
=== Mapping ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;If you just want to test GeMoSeq, you can skip this step and proceed with the download provided at the end of this section.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Before proceeding with GeMoSeq, these reads first need to be mapped to the reference genome. For yeast and other eukaryotes, we should use a splicing-aware mapping tool. Our current favourite is [https://github.com/alexdobin/STAR STAR] also available from [http://bioconda.github.io/recipes/star/README.html bioconda].&lt;br /&gt;
&lt;br /&gt;
First, we need to index the reference genome with&lt;br /&gt;
 &lt;br /&gt;
 STAR --runMode genomeGenerate --genomeDir yeast_index --genomeFastaFiles GCF_000146045.2_R64_genomic.fna --genomeSAindexNbases 10&lt;br /&gt;
&lt;br /&gt;
Here, we specify &amp;lt;code&amp;gt;--genomeSAindexNbases 10&amp;lt;/code&amp;gt; since the yeast genome is rather small.&lt;br /&gt;
&lt;br /&gt;
Assuming reads have been stored in files &amp;lt;code&amp;gt;SRR8552464_1.fastq.gz&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;SRR8552464_2.fastq.gz&amp;lt;/code&amp;gt;, we run STAR with the following command&lt;br /&gt;
&lt;br /&gt;
 STAR --genomeDir yeast_index --readFilesIn SRR8552464_1.fastq.gz SRR8552464_2.fastq.gz --readFilesCommand gunzip -c --outFileNamePrefix star/SRR8552464 --alignIntronMax 20000 --alignMatesGapMax 20000 --outSAMtype BAM SortedByCoordinate&lt;br /&gt;
&lt;br /&gt;
Here, we limit the maximum intron size to 20000, since larger introns do not exist in yeast, but STAR tends to produce spurios long-split mappings, and let STAR output an already coordinate-sorted BAM file.&lt;br /&gt;
&lt;br /&gt;
For convenience, we provide the resulting mapping file [http://www.jstacs.de/downloads/GeMoSeq/SRR8552464.bam for download].&lt;br /&gt;
&lt;br /&gt;
=== Running GeMoSeq ===&lt;br /&gt;
&lt;br /&gt;
The resulting mapping file and the reference genome used for mapping are input of GeMoSeq in the next step. For the next steps, we assume that the BAM file has been moved to a file &amp;lt;code&amp;gt;SRR8552464.bam&amp;lt;/code&amp;gt; in the working directory (or has been downloaded from the provided link).&lt;br /&gt;
&lt;br /&gt;
We leave most arguments at their defaults, calling GeMoSeq with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq g=GCF_000146045.2_R64_genomic.fna m=SRR8552464.bam s=FR_FIRST_STRAND threads=6 outdir=gemoseq&lt;br /&gt;
&lt;br /&gt;
Here, we use the parameter &amp;lt;code&amp;gt;s=FR_FIRST_STRAND&amp;lt;/code&amp;gt; to specify that this is a stranded library and set the number of threads to 6. The output directory is set to gemoseq.&lt;br /&gt;
At execution, GeMoSeq creates a temporary file with predictions in the working directory, which is later copied to the specified output directory together with a protocol of the GeMoSeq run. In the output directory, you will find the final predictions as a file &amp;lt;code&amp;gt;Transcript_Predictions.gff3&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Evaluating prediction performance ===&lt;br /&gt;
&lt;br /&gt;
To evaluate the accuracy of GeMoSeq predictions, we compare the GeMoSeq GFF against the yeast reference annotation. For this purpose, the GeMoSeq Jar file provides the [[GeMoMa]] Analyzer tool, which can be run with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar Analyzer t=GCF_000146045.2_R64_genomic.gff p=gemoseq/Transcript_Predictions.gff3&lt;br /&gt;
&lt;br /&gt;
The Analyzer tools outputs several metrics, including CDS sensitivity and precision, which are in this case 72.13 and 90.67, respectively.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Using multiple libraries in combination with homology-based gene prediction ==&lt;br /&gt;
&lt;br /&gt;
We use a [http://www.waterhouse-lab.com/Benth_download_2025/NbLab360.genome.fasta.gz recently published genome] of a &#039;&#039;Nicotiana benthamiana&#039;&#039; lab strain ([https://doi.org/10.1038/s41477-023-01489-8]) to illustrate how GeMoSeq can be used to re-annotate a genome based on multiple sequencing libraries and in combination with the homology-based gene prediction of [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In the [https://doi.org/10.1101/2025.02.27.640589 GeMoSeq preprint], we sampled 319 sequencing libraries for &#039;&#039;N. benthamiana&#039;&#039; for this purpose, and we provide the corresponding [https://www.ebi.ac.uk/ena/browser/home ENA] accession table [http://www.jstacs.de/downloads/GeMoSeq/N_benthamiana_datasets.xlsx for download].&lt;br /&gt;
&lt;br /&gt;
All of these libraries need to be downloaded, mapped to the genome sequence, and strandedness needs to be determined. For mapping, we follow the same procedure as described for the GeMoSeq example run above. To determine strandedness, we use [https://subread.sourceforge.net/featureCounts.html featureCounts] applied to the previous [http://www.waterhouse-lab.com/Benth_download_2025/NbLab360.v103.gff3.gz genome annotation] with flags for either strand orientation and choose the one with the larger number of assigned reads, or unstranded if both yield roughly equal numbers of assigned reads.&lt;br /&gt;
The strand orientation that has been determined by this procedure is listed in column &amp;quot;type&amp;quot; of the [http://www.jstacs.de/downloads/GeMoSeq/N_benthamiana_datasets.xlsx accession table].&lt;br /&gt;
&lt;br /&gt;
=== Applying GeMoSeq to individual libraries ===&lt;br /&gt;
&lt;br /&gt;
Assuming that the mapped reads are stored in directories named by the accession of the sequencing run, namely &amp;lt;code&amp;gt;mappings/&amp;lt;accession&amp;gt;/Aligned.sortedByCoord.out.bam&amp;lt;/code&amp;gt;, e.g., &amp;lt;code&amp;gt;mappings/DRR377420/Aligned.sortedByCoord.out.bam&amp;lt;/code&amp;gt;, we need to call GeMoSeq for each of these mapping files independently. This can be achieved by a (bash) for loop over all BAM files or in parallel on a compute cluster using a scheduling system like slurm.&lt;br /&gt;
&lt;br /&gt;
An individual GeMoSeq run would look like&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq g=NbLab360.genome.fasta m=mappings/&amp;lt;accession&amp;gt;/Aligned.sortedByCoord.out.bam s=&amp;lt;strandedness&amp;gt; threads=6 outdir=gemoseq/&amp;lt;accession&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where &amp;lt;code&amp;gt;&amp;lt;accession&amp;gt;&amp;lt;/code&amp;gt; refers to the accession and &amp;lt;code&amp;gt;&amp;lt;strandedness&amp;gt;&amp;lt;/code&amp;gt; refers to the strand orientation of the current library.&lt;br /&gt;
&lt;br /&gt;
For instance, library DRR377420 has strand orientation &amp;lt;code&amp;gt;FR_FIRST_STRAND&amp;lt;/code&amp;gt; (see above), and the corresponding GeMoSeq call would be&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq g=NbLab360.genome.fasta m=mappings/DRR377420/Aligned.sortedByCoord.out.bam s=FR_FIRST_STRAND threads=6 outdir=gemoseq/DRR377420&lt;br /&gt;
&lt;br /&gt;
where we, again, choose the name of the output directory based on the accession of the sequencing run. Within that directory, each GeMoSeq run will produce a file &amp;lt;code&amp;gt;Transcript_Predictions.gff3&amp;lt;/code&amp;gt; with the predicted gene models.&lt;br /&gt;
&lt;br /&gt;
After GeMoSeq has been run for all mapping files, the resulting prediction files are located in &amp;lt;code&amp;gt;gemoseq/&amp;lt;accession&amp;gt;/Transcript_Predictions.gff3&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Joining individual predictions ===&lt;br /&gt;
&lt;br /&gt;
To yield a joint GeMoSeq prediction across all libraries, we join the individual predictions using the [[GeMoMa-Docs#GeMoMa_Annotation_Filter| GeMoMa Annotation Filter]] (GAF) tool of [[GeMoMa]], which also comes packaged with the GeMoSeq JAR file.&lt;br /&gt;
For future merging with homology-based GeMoMa predictions, we run the GAF tool twice, once with looser and once with stricter filtering criteria.&lt;br /&gt;
&lt;br /&gt;
For the looser filtering, we specify&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar GAF p=DRR377420 g=gemoseq/DRR377420/Transcript_Predictions.gff3 ... p=SRR29507616 g=gemoseq/SRR29507616/Transcript_Predictions.gff3 f=&amp;quot;start==&#039;M&#039; and stop==&#039;*&#039; and sumWeight&amp;gt;7 and (isNaN(tie) or tie==1)&amp;quot; atf=&amp;quot;sumWeight&amp;gt;23&amp;quot; mnotpg=20 tf=true outdir=gemoseq_loose&lt;br /&gt;
&lt;br /&gt;
where &amp;lt;code&amp;gt;...&amp;lt;/code&amp;gt; indicates that the arguments &amp;lt;code&amp;gt;p&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;g&amp;lt;/code&amp;gt; need to be repeated for each of the individual predictions.&lt;br /&gt;
The filtering criteria (parameter &amp;lt;code&amp;gt;f&amp;lt;/code&amp;gt;) specify that each tranferred transcript must have a proper start and stop codon, must appear in more than 7 (of 319) individual predictions and may either be a single-exon transcript (&amp;lt;code&amp;gt;isNaN(tie)&amp;lt;/code&amp;gt;) or have perfect support for all splice sites (&amp;lt;code&amp;gt;tie==1&amp;lt;/code&amp;gt;). The parameter &amp;lt;code&amp;gt;atf&amp;lt;/code&amp;gt; defines that alternative transcripts are only transferred, if they occur in at least 24 of 319 libraries, parameter &amp;lt;code&amp;gt;mnotpg&amp;lt;/code&amp;gt; specifies the maximum number of transcripts per gene, and &amp;lt;code&amp;gt;tf=true&amp;lt;/code&amp;gt; indicates that additional features (i.e., exons + CDS) should be tranferred to the final prediction.&lt;br /&gt;
After the GAF run, the joint predictions are stored in &amp;lt;code&amp;gt;gemoseq_loose/filtered_predictions.gff&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
For the stricter filtering, we use adapted parameters&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar GAF p=DRR377420 g=gemoseq/DRR377420/Transcript_Predictions.gff3 ... p=SRR29507616 g=gemoseq/SRR29507616/Transcript_Predictions.gff3 f=&amp;quot;start==&#039;M&#039; and stop==&#039;*&#039; and sumWeight&amp;gt;30 and (isNaN(tie) or tie==1)&amp;quot; atf=&amp;quot;sumWeight&amp;gt;70&amp;quot; mnotpg=20 tf=true outdir=gemoseq_strict&lt;br /&gt;
&lt;br /&gt;
and obtain joint predictions in &amp;lt;code&amp;gt;gemoseq_strict/filtered_predictions.gff&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Homology-based gene prediction ===&lt;br /&gt;
&lt;br /&gt;
For homology-based gene prediction, we use [[GeMoMa]] for the reference species &#039;&#039;A. thaliana&#039;&#039;, &#039;&#039;N. tabacum&#039;&#039;, &#039;&#039;S. lycopersicum&#039;&#039;, and two previous &#039;&#039;N. benthamiana&#039;&#039; genome versions (1.0.1 and 2.6.1).&lt;br /&gt;
These predictions are also joined using the GAF tool.&lt;br /&gt;
&lt;br /&gt;
For details about using GeMoMa for homology-based gene prediction, please refer to [[GeMoMa-Docs]].&lt;br /&gt;
&lt;br /&gt;
Here, we assume that for the homology-based predictions, we also obtain a loosely and a strictly filtered prediction file as &amp;lt;code&amp;gt;gemoma_loose/filtered_predictions.gff&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;gemoma_strict/filtered_predictions.gff&amp;lt;/code&amp;gt;, respectively.&lt;br /&gt;
&lt;br /&gt;
=== Merging RNA-seq-based and homology-based predictions ===&lt;br /&gt;
&lt;br /&gt;
We finally merge the four previously obtained prediction files (loose and strict for GeMoSeq and GeMoMa, respectively) using the GeMoSeq Merge tool. We call&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar merge g=gemoma_loose/filtered_predictions.gff GeMoSeq=gemoseq_loose/filtered_predictions.gff m=annotate GeMoMa-strict=gemoma_strict/filtered_predictions.gff GeMoSeq-strict=gemoseq_strict/filtered_predictions.gff l=false outdir=final&lt;br /&gt;
&lt;br /&gt;
where parameter &amp;lt;code&amp;gt;m=annotate&amp;lt;/code&amp;gt; specifies that merged predictions should be annotated with their confidence (high, medium) and &amp;lt;code&amp;gt;l=false&amp;lt;/code&amp;gt; indicates that low-confidence predictions should be excluded from the output. After running the Merge tool, final predictions can be found in &amp;lt;code&amp;gt;final/Merged_Predictions.gff&amp;lt;/code&amp;gt;.&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq-Examples&amp;diff=1225</id>
		<title>GeMoSeq-Examples</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq-Examples&amp;diff=1225"/>
		<updated>2025-11-19T14:50:20Z</updated>

		<summary type="html">&lt;p&gt;Grau: /* Merging RNA-seq-based and homology-based predictions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== GeMoSeq example run ==&lt;br /&gt;
&lt;br /&gt;
We use a data set for yeast for an example run of GeMoSeq. As input of GeMoSeq, we need a reference genome and a library of reads mapped to that reference.&lt;br /&gt;
Here, we use the [https://ftp.ncbi.nlm.nih.gov/genomes/all/GCF/000/146/045/GCF_000146045.2_R64/GCF_000146045.2_R64_genomic.fna.gz &#039;&#039;S. cerevisiae&#039;&#039; S288C reference genome R64] available from NCBI. For later evaluation of GeMoSeq prediction results, we also download the [https://ftp.ncbi.nlm.nih.gov/genomes/all/GCF/000/146/045/GCF_000146045.2_R64/GCF_000146045.2_R64_genomic.gff.gz reference annotation].&lt;br /&gt;
As a sequencing library, we use the library with accession SRR8552464 available from the [https://www.ebi.ac.uk/ena/browser/home European Nucleotide archive] or [https://www.ncbi.nlm.nih.gov/sra NCBI Sequence Read Archive].&lt;br /&gt;
&lt;br /&gt;
=== Mapping ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;If you just want to test GeMoSeq, you can skip this step and proceed with the download provided at the end of this section.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Before proceeding with GeMoSeq, these reads first need to be mapped to the reference genome. For yeast and other eukaryotes, we should use a splicing-aware mapping tool. Our current favourite is [https://github.com/alexdobin/STAR STAR] also available from [http://bioconda.github.io/recipes/star/README.html bioconda].&lt;br /&gt;
&lt;br /&gt;
First, we need to index the reference genome with&lt;br /&gt;
 &lt;br /&gt;
 STAR --runMode genomeGenerate --genomeDir yeast_index --genomeFastaFiles GCF_000146045.2_R64_genomic.fna --genomeSAindexNbases 10&lt;br /&gt;
&lt;br /&gt;
Here, we specify &amp;lt;code&amp;gt;--genomeSAindexNbases 10&amp;lt;/code&amp;gt; since the yeast genome is rather small.&lt;br /&gt;
&lt;br /&gt;
Assuming reads have been stored in files &amp;lt;code&amp;gt;SRR8552464_1.fastq.gz&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;SRR8552464_2.fastq.gz&amp;lt;/code&amp;gt;, we run STAR with the following command&lt;br /&gt;
&lt;br /&gt;
 STAR --genomeDir yeast_index --readFilesIn SRR8552464_1.fastq.gz SRR8552464_2.fastq.gz --readFilesCommand gunzip -c --outFileNamePrefix star/SRR8552464 --alignIntronMax 20000 --alignMatesGapMax 20000 --outSAMtype BAM SortedByCoordinate&lt;br /&gt;
&lt;br /&gt;
Here, we limit the maximum intron size to 20000, since larger introns do not exist in yeast, but STAR tends to produce spurios long-split mappings, and let STAR output an already coordinate-sorted BAM file.&lt;br /&gt;
&lt;br /&gt;
For convenience, we provide the resulting mapping file [http://www.jstacs.de/downloads/GeMoSeq/SRR8552464.bam for download].&lt;br /&gt;
&lt;br /&gt;
=== Running GeMoSeq ===&lt;br /&gt;
&lt;br /&gt;
The resulting mapping file and the reference genome used for mapping are input of GeMoSeq in the next step. For the next steps, we assume that the BAM file has been moved to a file &amp;lt;code&amp;gt;SRR8552464.bam&amp;lt;/code&amp;gt; in the working directory (or has been downloaded from the provided link).&lt;br /&gt;
&lt;br /&gt;
We leave most arguments at their defaults, calling GeMoSeq with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq g=GCF_000146045.2_R64_genomic.fna m=SRR8552464.bam s=FR_FIRST_STRAND threads=6 outdir=gemoseq&lt;br /&gt;
&lt;br /&gt;
Here, we use the parameter &amp;lt;code&amp;gt;s=FR_FIRST_STRAND&amp;lt;/code&amp;gt; to specify that this is a stranded library and set the number of threads to 6. The output directory is set to gemoseq.&lt;br /&gt;
At execution, GeMoSeq creates a temporary file with predictions in the working directory, which is later copied to the specified output directory together with a protocol of the GeMoSeq run. In the output directory, you will find the final predictions as a file &amp;lt;code&amp;gt;Transcript_Predictions.gff3&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Evaluating prediction performance ===&lt;br /&gt;
&lt;br /&gt;
To evaluate the accuracy of GeMoSeq predictions, we compare the GeMoSeq GFF against the yeast reference annotation. For this purpose, the GeMoSeq Jar file provides the [[GeMoMa]] Analyzer tool, which can be run with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar Analyzer t=GCF_000146045.2_R64_genomic.gff p=gemoseq/Transcript_Predictions.gff3&lt;br /&gt;
&lt;br /&gt;
The Analyzer tools outputs several metrics, including CDS sensitivity and precision, which are in this case 72.13 and 90.67, respectively.&lt;br /&gt;
&lt;br /&gt;
== Using multiple libraries in combination with homology-based gene prediction ==&lt;br /&gt;
&lt;br /&gt;
We use a [http://www.waterhouse-lab.com/Benth_download_2025/NbLab360.genome.fasta.gz recently published genome] of a &#039;&#039;Nicotiana benthamiana&#039;&#039; lab strain ([https://doi.org/10.1038/s41477-023-01489-8]) to illustrate how GeMoSeq can be used to re-annotate a genome based on multiple sequencing libraries and in combination with the homology-based gene prediction of [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In the [https://doi.org/10.1101/2025.02.27.640589 GeMoSeq preprint], we sampled 319 sequencing libraries for &#039;&#039;N. benthamiana&#039;&#039; for this purpose, and we provide the corresponding [https://www.ebi.ac.uk/ena/browser/home ENA] accession table [http://www.jstacs.de/downloads/GeMoSeq/N_benthamiana_datasets.xlsx for download].&lt;br /&gt;
&lt;br /&gt;
All of these libraries need to be downloaded, mapped to the genome sequence, and strandedness needs to be determined. For mapping, we follow the same procedure as described for the GeMoSeq example run above. To determine strandedness, we use [https://subread.sourceforge.net/featureCounts.html featureCounts] applied to the previous [http://www.waterhouse-lab.com/Benth_download_2025/NbLab360.v103.gff3.gz genome annotation] with flags for either strand orientation and choose the one with the larger number of assigned reads, or unstranded if both yield roughly equal numbers of assigned reads.&lt;br /&gt;
The strand orientation that has been determined by this procedure is listed in column &amp;quot;type&amp;quot; of the [http://www.jstacs.de/downloads/GeMoSeq/N_benthamiana_datasets.xlsx accession table].&lt;br /&gt;
&lt;br /&gt;
=== Applying GeMoSeq to individual libraries ===&lt;br /&gt;
&lt;br /&gt;
Assuming that the mapped reads are stored in directories named by the accession of the sequencing run, namely &amp;lt;code&amp;gt;mappings/&amp;lt;accession&amp;gt;/Aligned.sortedByCoord.out.bam&amp;lt;/code&amp;gt;, e.g., &amp;lt;code&amp;gt;mappings/DRR377420/Aligned.sortedByCoord.out.bam&amp;lt;/code&amp;gt;, we need to call GeMoSeq for each of these mapping files independently. This can be achieved by a (bash) for loop over all BAM files or in parallel on a compute cluster using a scheduling system like slurm.&lt;br /&gt;
&lt;br /&gt;
An individual GeMoSeq run would look like&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq g=NbLab360.genome.fasta m=mappings/&amp;lt;accession&amp;gt;/Aligned.sortedByCoord.out.bam s=&amp;lt;strandedness&amp;gt; threads=6 outdir=gemoseq/&amp;lt;accession&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where &amp;lt;code&amp;gt;&amp;lt;accession&amp;gt;&amp;lt;/code&amp;gt; refers to the accession and &amp;lt;code&amp;gt;&amp;lt;strandedness&amp;gt;&amp;lt;/code&amp;gt; refers to the strand orientation of the current library.&lt;br /&gt;
&lt;br /&gt;
For instance, library DRR377420 has strand orientation &amp;lt;code&amp;gt;FR_FIRST_STRAND&amp;lt;/code&amp;gt; (see above), and the corresponding GeMoSeq call would be&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq g=NbLab360.genome.fasta m=mappings/DRR377420/Aligned.sortedByCoord.out.bam s=FR_FIRST_STRAND threads=6 outdir=gemoseq/DRR377420&lt;br /&gt;
&lt;br /&gt;
where we, again, choose the name of the output directory based on the accession of the sequencing run. Within that directory, each GeMoSeq run will produce a file &amp;lt;code&amp;gt;Transcript_Predictions.gff3&amp;lt;/code&amp;gt; with the predicted gene models.&lt;br /&gt;
&lt;br /&gt;
After GeMoSeq has been run for all mapping files, the resulting prediction files are located in &amp;lt;code&amp;gt;gemoseq/&amp;lt;accession&amp;gt;/Transcript_Predictions.gff3&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Joining individual predictions ===&lt;br /&gt;
&lt;br /&gt;
To yield a joint GeMoSeq prediction across all libraries, we join the individual predictions using the [[GeMoMa-Docs#GeMoMa_Annotation_Filter| GeMoMa Annotation Filter]] (GAF) tool of [[GeMoMa]], which also comes packaged with the GeMoSeq JAR file.&lt;br /&gt;
For future merging with homology-based GeMoMa predictions, we run the GAF tool twice, once with looser and once with stricter filtering criteria.&lt;br /&gt;
&lt;br /&gt;
For the looser filtering, we specify&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar GAF p=DRR377420 g=gemoseq/DRR377420/Transcript_Predictions.gff3 ... p=SRR29507616 g=gemoseq/SRR29507616/Transcript_Predictions.gff3 f=&amp;quot;start==&#039;M&#039; and stop==&#039;*&#039; and sumWeight&amp;gt;7 and (isNaN(tie) or tie==1)&amp;quot; atf=&amp;quot;sumWeight&amp;gt;23&amp;quot; mnotpg=20 tf=true outdir=gemoseq_loose&lt;br /&gt;
&lt;br /&gt;
where &amp;lt;code&amp;gt;...&amp;lt;/code&amp;gt; indicates that the arguments &amp;lt;code&amp;gt;p&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;g&amp;lt;/code&amp;gt; need to be repeated for each of the individual predictions.&lt;br /&gt;
The filtering criteria (parameter &amp;lt;code&amp;gt;f&amp;lt;/code&amp;gt;) specify that each tranferred transcript must have a proper start and stop codon, must appear in more than 7 (of 319) individual predictions and may either be a single-exon transcript (&amp;lt;code&amp;gt;isNaN(tie)&amp;lt;/code&amp;gt;) or have perfect support for all splice sites (&amp;lt;code&amp;gt;tie==1&amp;lt;/code&amp;gt;). The parameter &amp;lt;code&amp;gt;atf&amp;lt;/code&amp;gt; defines that alternative transcripts are only transferred, if they occur in at least 24 of 319 libraries, parameter &amp;lt;code&amp;gt;mnotpg&amp;lt;/code&amp;gt; specifies the maximum number of transcripts per gene, and &amp;lt;code&amp;gt;tf=true&amp;lt;/code&amp;gt; indicates that additional features (i.e., exons + CDS) should be tranferred to the final prediction.&lt;br /&gt;
After the GAF run, the joint predictions are stored in &amp;lt;code&amp;gt;gemoseq_loose/filtered_predictions.gff&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
For the stricter filtering, we use adapted parameters&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar GAF p=DRR377420 g=gemoseq/DRR377420/Transcript_Predictions.gff3 ... p=SRR29507616 g=gemoseq/SRR29507616/Transcript_Predictions.gff3 f=&amp;quot;start==&#039;M&#039; and stop==&#039;*&#039; and sumWeight&amp;gt;30 and (isNaN(tie) or tie==1)&amp;quot; atf=&amp;quot;sumWeight&amp;gt;70&amp;quot; mnotpg=20 tf=true outdir=gemoseq_strict&lt;br /&gt;
&lt;br /&gt;
and obtain joint predictions in &amp;lt;code&amp;gt;gemoseq_strict/filtered_predictions.gff&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Homology-based gene prediction ===&lt;br /&gt;
&lt;br /&gt;
For homology-based gene prediction, we use [[GeMoMa]] for the reference species &#039;&#039;A. thaliana&#039;&#039;, &#039;&#039;N. tabacum&#039;&#039;, &#039;&#039;S. lycopersicum&#039;&#039;, and two previous &#039;&#039;N. benthamiana&#039;&#039; genome versions (1.0.1 and 2.6.1).&lt;br /&gt;
These predictions are also joined using the GAF tool.&lt;br /&gt;
&lt;br /&gt;
For details about using GeMoMa for homology-based gene prediction, please refer to [[GeMoMa-Docs]].&lt;br /&gt;
&lt;br /&gt;
Here, we assume that for the homology-based predictions, we also obtain a loosely and a strictly filtered prediction file as &amp;lt;code&amp;gt;gemoma_loose/filtered_predictions.gff&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;gemoma_strict/filtered_predictions.gff&amp;lt;/code&amp;gt;, respectively.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Merging RNA-seq-based and homology-based predictions ===&lt;br /&gt;
&lt;br /&gt;
We finally merge the four previously obtained prediction files (loose and strict for GeMoSeq and GeMoMa, respectively) using the GeMoSeq Merge tool. We call&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar merge g=gemoma_loose/filtered_predictions.gff GeMoSeq=gemoseq_loose/filtered_predictions.gff m=annotate GeMoMa-strict=gemoma_strict/filtered_predictions.gff GeMoSeq-strict=gemoseq_strict/filtered_predictions.gff l=false outdir=final&lt;br /&gt;
&lt;br /&gt;
where parameter &amp;lt;code&amp;gt;m=annotate&amp;lt;/code&amp;gt; specifies that merged predictions should be annotated with their confidence (high, medium) and &amp;lt;code&amp;gt;l=false&amp;lt;/code&amp;gt; indicates that low-confidence predictions should be excluded from the output. After running the Merge tool, final predictions can be found in &amp;lt;code&amp;gt;final/Merged_Predictions.gff&amp;lt;/code&amp;gt;.&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq-Examples&amp;diff=1224</id>
		<title>GeMoSeq-Examples</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq-Examples&amp;diff=1224"/>
		<updated>2025-11-19T14:48:24Z</updated>

		<summary type="html">&lt;p&gt;Grau: /* Applying GeMoSeq to individual libraries */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== GeMoSeq example run ==&lt;br /&gt;
&lt;br /&gt;
We use a data set for yeast for an example run of GeMoSeq. As input of GeMoSeq, we need a reference genome and a library of reads mapped to that reference.&lt;br /&gt;
Here, we use the [https://ftp.ncbi.nlm.nih.gov/genomes/all/GCF/000/146/045/GCF_000146045.2_R64/GCF_000146045.2_R64_genomic.fna.gz &#039;&#039;S. cerevisiae&#039;&#039; S288C reference genome R64] available from NCBI. For later evaluation of GeMoSeq prediction results, we also download the [https://ftp.ncbi.nlm.nih.gov/genomes/all/GCF/000/146/045/GCF_000146045.2_R64/GCF_000146045.2_R64_genomic.gff.gz reference annotation].&lt;br /&gt;
As a sequencing library, we use the library with accession SRR8552464 available from the [https://www.ebi.ac.uk/ena/browser/home European Nucleotide archive] or [https://www.ncbi.nlm.nih.gov/sra NCBI Sequence Read Archive].&lt;br /&gt;
&lt;br /&gt;
=== Mapping ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;If you just want to test GeMoSeq, you can skip this step and proceed with the download provided at the end of this section.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Before proceeding with GeMoSeq, these reads first need to be mapped to the reference genome. For yeast and other eukaryotes, we should use a splicing-aware mapping tool. Our current favourite is [https://github.com/alexdobin/STAR STAR] also available from [http://bioconda.github.io/recipes/star/README.html bioconda].&lt;br /&gt;
&lt;br /&gt;
First, we need to index the reference genome with&lt;br /&gt;
 &lt;br /&gt;
 STAR --runMode genomeGenerate --genomeDir yeast_index --genomeFastaFiles GCF_000146045.2_R64_genomic.fna --genomeSAindexNbases 10&lt;br /&gt;
&lt;br /&gt;
Here, we specify &amp;lt;code&amp;gt;--genomeSAindexNbases 10&amp;lt;/code&amp;gt; since the yeast genome is rather small.&lt;br /&gt;
&lt;br /&gt;
Assuming reads have been stored in files &amp;lt;code&amp;gt;SRR8552464_1.fastq.gz&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;SRR8552464_2.fastq.gz&amp;lt;/code&amp;gt;, we run STAR with the following command&lt;br /&gt;
&lt;br /&gt;
 STAR --genomeDir yeast_index --readFilesIn SRR8552464_1.fastq.gz SRR8552464_2.fastq.gz --readFilesCommand gunzip -c --outFileNamePrefix star/SRR8552464 --alignIntronMax 20000 --alignMatesGapMax 20000 --outSAMtype BAM SortedByCoordinate&lt;br /&gt;
&lt;br /&gt;
Here, we limit the maximum intron size to 20000, since larger introns do not exist in yeast, but STAR tends to produce spurios long-split mappings, and let STAR output an already coordinate-sorted BAM file.&lt;br /&gt;
&lt;br /&gt;
For convenience, we provide the resulting mapping file [http://www.jstacs.de/downloads/GeMoSeq/SRR8552464.bam for download].&lt;br /&gt;
&lt;br /&gt;
=== Running GeMoSeq ===&lt;br /&gt;
&lt;br /&gt;
The resulting mapping file and the reference genome used for mapping are input of GeMoSeq in the next step. For the next steps, we assume that the BAM file has been moved to a file &amp;lt;code&amp;gt;SRR8552464.bam&amp;lt;/code&amp;gt; in the working directory (or has been downloaded from the provided link).&lt;br /&gt;
&lt;br /&gt;
We leave most arguments at their defaults, calling GeMoSeq with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq g=GCF_000146045.2_R64_genomic.fna m=SRR8552464.bam s=FR_FIRST_STRAND threads=6 outdir=gemoseq&lt;br /&gt;
&lt;br /&gt;
Here, we use the parameter &amp;lt;code&amp;gt;s=FR_FIRST_STRAND&amp;lt;/code&amp;gt; to specify that this is a stranded library and set the number of threads to 6. The output directory is set to gemoseq.&lt;br /&gt;
At execution, GeMoSeq creates a temporary file with predictions in the working directory, which is later copied to the specified output directory together with a protocol of the GeMoSeq run. In the output directory, you will find the final predictions as a file &amp;lt;code&amp;gt;Transcript_Predictions.gff3&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Evaluating prediction performance ===&lt;br /&gt;
&lt;br /&gt;
To evaluate the accuracy of GeMoSeq predictions, we compare the GeMoSeq GFF against the yeast reference annotation. For this purpose, the GeMoSeq Jar file provides the [[GeMoMa]] Analyzer tool, which can be run with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar Analyzer t=GCF_000146045.2_R64_genomic.gff p=gemoseq/Transcript_Predictions.gff3&lt;br /&gt;
&lt;br /&gt;
The Analyzer tools outputs several metrics, including CDS sensitivity and precision, which are in this case 72.13 and 90.67, respectively.&lt;br /&gt;
&lt;br /&gt;
== Using multiple libraries in combination with homology-based gene prediction ==&lt;br /&gt;
&lt;br /&gt;
We use a [http://www.waterhouse-lab.com/Benth_download_2025/NbLab360.genome.fasta.gz recently published genome] of a &#039;&#039;Nicotiana benthamiana&#039;&#039; lab strain ([https://doi.org/10.1038/s41477-023-01489-8]) to illustrate how GeMoSeq can be used to re-annotate a genome based on multiple sequencing libraries and in combination with the homology-based gene prediction of [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In the [https://doi.org/10.1101/2025.02.27.640589 GeMoSeq preprint], we sampled 319 sequencing libraries for &#039;&#039;N. benthamiana&#039;&#039; for this purpose, and we provide the corresponding [https://www.ebi.ac.uk/ena/browser/home ENA] accession table [http://www.jstacs.de/downloads/GeMoSeq/N_benthamiana_datasets.xlsx for download].&lt;br /&gt;
&lt;br /&gt;
All of these libraries need to be downloaded, mapped to the genome sequence, and strandedness needs to be determined. For mapping, we follow the same procedure as described for the GeMoSeq example run above. To determine strandedness, we use [https://subread.sourceforge.net/featureCounts.html featureCounts] applied to the previous [http://www.waterhouse-lab.com/Benth_download_2025/NbLab360.v103.gff3.gz genome annotation] with flags for either strand orientation and choose the one with the larger number of assigned reads, or unstranded if both yield roughly equal numbers of assigned reads.&lt;br /&gt;
The strand orientation that has been determined by this procedure is listed in column &amp;quot;type&amp;quot; of the [http://www.jstacs.de/downloads/GeMoSeq/N_benthamiana_datasets.xlsx accession table].&lt;br /&gt;
&lt;br /&gt;
=== Applying GeMoSeq to individual libraries ===&lt;br /&gt;
&lt;br /&gt;
Assuming that the mapped reads are stored in directories named by the accession of the sequencing run, namely &amp;lt;code&amp;gt;mappings/&amp;lt;accession&amp;gt;/Aligned.sortedByCoord.out.bam&amp;lt;/code&amp;gt;, e.g., &amp;lt;code&amp;gt;mappings/DRR377420/Aligned.sortedByCoord.out.bam&amp;lt;/code&amp;gt;, we need to call GeMoSeq for each of these mapping files independently. This can be achieved by a (bash) for loop over all BAM files or in parallel on a compute cluster using a scheduling system like slurm.&lt;br /&gt;
&lt;br /&gt;
An individual GeMoSeq run would look like&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq g=NbLab360.genome.fasta m=mappings/&amp;lt;accession&amp;gt;/Aligned.sortedByCoord.out.bam s=&amp;lt;strandedness&amp;gt; threads=6 outdir=gemoseq/&amp;lt;accession&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where &amp;lt;code&amp;gt;&amp;lt;accession&amp;gt;&amp;lt;/code&amp;gt; refers to the accession and &amp;lt;code&amp;gt;&amp;lt;strandedness&amp;gt;&amp;lt;/code&amp;gt; refers to the strand orientation of the current library.&lt;br /&gt;
&lt;br /&gt;
For instance, library DRR377420 has strand orientation &amp;lt;code&amp;gt;FR_FIRST_STRAND&amp;lt;/code&amp;gt; (see above), and the corresponding GeMoSeq call would be&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq g=NbLab360.genome.fasta m=mappings/DRR377420/Aligned.sortedByCoord.out.bam s=FR_FIRST_STRAND threads=6 outdir=gemoseq/DRR377420&lt;br /&gt;
&lt;br /&gt;
where we, again, choose the name of the output directory based on the accession of the sequencing run. Within that directory, each GeMoSeq run will produce a file &amp;lt;code&amp;gt;Transcript_Predictions.gff3&amp;lt;/code&amp;gt; with the predicted gene models.&lt;br /&gt;
&lt;br /&gt;
After GeMoSeq has been run for all mapping files, the resulting prediction files are located in &amp;lt;code&amp;gt;gemoseq/&amp;lt;accession&amp;gt;/Transcript_Predictions.gff3&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Joining individual predictions ===&lt;br /&gt;
&lt;br /&gt;
To yield a joint GeMoSeq prediction across all libraries, we join the individual predictions using the [[GeMoMa-Docs#GeMoMa_Annotation_Filter| GeMoMa Annotation Filter]] (GAF) tool of [[GeMoMa]], which also comes packaged with the GeMoSeq JAR file.&lt;br /&gt;
For future merging with homology-based GeMoMa predictions, we run the GAF tool twice, once with looser and once with stricter filtering criteria.&lt;br /&gt;
&lt;br /&gt;
For the looser filtering, we specify&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar GAF p=DRR377420 g=gemoseq/DRR377420/Transcript_Predictions.gff3 ... p=SRR29507616 g=gemoseq/SRR29507616/Transcript_Predictions.gff3 f=&amp;quot;start==&#039;M&#039; and stop==&#039;*&#039; and sumWeight&amp;gt;7 and (isNaN(tie) or tie==1)&amp;quot; atf=&amp;quot;sumWeight&amp;gt;23&amp;quot; mnotpg=20 tf=true outdir=gemoseq_loose&lt;br /&gt;
&lt;br /&gt;
where &amp;lt;code&amp;gt;...&amp;lt;/code&amp;gt; indicates that the arguments &amp;lt;code&amp;gt;p&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;g&amp;lt;/code&amp;gt; need to be repeated for each of the individual predictions.&lt;br /&gt;
The filtering criteria (parameter &amp;lt;code&amp;gt;f&amp;lt;/code&amp;gt;) specify that each tranferred transcript must have a proper start and stop codon, must appear in more than 7 (of 319) individual predictions and may either be a single-exon transcript (&amp;lt;code&amp;gt;isNaN(tie)&amp;lt;/code&amp;gt;) or have perfect support for all splice sites (&amp;lt;code&amp;gt;tie==1&amp;lt;/code&amp;gt;). The parameter &amp;lt;code&amp;gt;atf&amp;lt;/code&amp;gt; defines that alternative transcripts are only transferred, if they occur in at least 24 of 319 libraries, parameter &amp;lt;code&amp;gt;mnotpg&amp;lt;/code&amp;gt; specifies the maximum number of transcripts per gene, and &amp;lt;code&amp;gt;tf=true&amp;lt;/code&amp;gt; indicates that additional features (i.e., exons + CDS) should be tranferred to the final prediction.&lt;br /&gt;
After the GAF run, the joint predictions are stored in &amp;lt;code&amp;gt;gemoseq_loose/filtered_predictions.gff&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
For the stricter filtering, we use adapted parameters&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar GAF p=DRR377420 g=gemoseq/DRR377420/Transcript_Predictions.gff3 ... p=SRR29507616 g=gemoseq/SRR29507616/Transcript_Predictions.gff3 f=&amp;quot;start==&#039;M&#039; and stop==&#039;*&#039; and sumWeight&amp;gt;30 and (isNaN(tie) or tie==1)&amp;quot; atf=&amp;quot;sumWeight&amp;gt;70&amp;quot; mnotpg=20 tf=true outdir=gemoseq_strict&lt;br /&gt;
&lt;br /&gt;
and obtain joint predictions in &amp;lt;code&amp;gt;gemoseq_strict/filtered_predictions.gff&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Homology-based gene prediction ===&lt;br /&gt;
&lt;br /&gt;
For homology-based gene prediction, we use [[GeMoMa]] for the reference species &#039;&#039;A. thaliana&#039;&#039;, &#039;&#039;N. tabacum&#039;&#039;, &#039;&#039;S. lycopersicum&#039;&#039;, and two previous &#039;&#039;N. benthamiana&#039;&#039; genome versions (1.0.1 and 2.6.1).&lt;br /&gt;
These predictions are also joined using the GAF tool.&lt;br /&gt;
&lt;br /&gt;
For details about using GeMoMa for homology-based gene prediction, please refer to [[GeMoMa-Docs]].&lt;br /&gt;
&lt;br /&gt;
Here, we assume that for the homology-based predictions, we also obtain a loosely and a strictly filtered prediction file as &amp;lt;code&amp;gt;gemoma_loose/filtered_predictions.gff&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;gemoma_strict/filtered_predictions.gff&amp;lt;/code&amp;gt;, respectively.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Merging RNA-seq-based and homology-based predictions ===&lt;br /&gt;
&lt;br /&gt;
We finally merge the four previously obtained prediction files (loose and strict for GeMoSeq and GeMoMa, respectively) using the GeMoSeq Merge tool. We call&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar merge g=gemoma_loose/filtered_predictions.gff GeMoSeq=gemoseq_loose/filtered_predictions.gff m=annotate GeMoMa-strict=gemoma_strict/filtered_predictions.gff GeMoSeq-strict=gemoseq_strict/filtered_predictions.gff l=false outdir=final&lt;br /&gt;
&lt;br /&gt;
where parameter &amp;lt;code&amp;gt;m&amp;lt;/code&amp;gt; specifies that merged predictions should be annotated with their confidence (high, medium) and &amp;lt;code&amp;gt;l=false&amp;lt;/code&amp;gt; indicates that low-confidence predictions should be excluded from the output. After running the Merge tool, final predictions can be found in &amp;lt;code&amp;gt;final/Merged_Predictions.gff&amp;lt;/code&amp;gt;.&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq-Examples&amp;diff=1223</id>
		<title>GeMoSeq-Examples</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq-Examples&amp;diff=1223"/>
		<updated>2025-11-19T14:45:41Z</updated>

		<summary type="html">&lt;p&gt;Grau: /* Using multiple libraries in combination with homology-based gene prediction */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== GeMoSeq example run ==&lt;br /&gt;
&lt;br /&gt;
We use a data set for yeast for an example run of GeMoSeq. As input of GeMoSeq, we need a reference genome and a library of reads mapped to that reference.&lt;br /&gt;
Here, we use the [https://ftp.ncbi.nlm.nih.gov/genomes/all/GCF/000/146/045/GCF_000146045.2_R64/GCF_000146045.2_R64_genomic.fna.gz &#039;&#039;S. cerevisiae&#039;&#039; S288C reference genome R64] available from NCBI. For later evaluation of GeMoSeq prediction results, we also download the [https://ftp.ncbi.nlm.nih.gov/genomes/all/GCF/000/146/045/GCF_000146045.2_R64/GCF_000146045.2_R64_genomic.gff.gz reference annotation].&lt;br /&gt;
As a sequencing library, we use the library with accession SRR8552464 available from the [https://www.ebi.ac.uk/ena/browser/home European Nucleotide archive] or [https://www.ncbi.nlm.nih.gov/sra NCBI Sequence Read Archive].&lt;br /&gt;
&lt;br /&gt;
=== Mapping ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;If you just want to test GeMoSeq, you can skip this step and proceed with the download provided at the end of this section.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Before proceeding with GeMoSeq, these reads first need to be mapped to the reference genome. For yeast and other eukaryotes, we should use a splicing-aware mapping tool. Our current favourite is [https://github.com/alexdobin/STAR STAR] also available from [http://bioconda.github.io/recipes/star/README.html bioconda].&lt;br /&gt;
&lt;br /&gt;
First, we need to index the reference genome with&lt;br /&gt;
 &lt;br /&gt;
 STAR --runMode genomeGenerate --genomeDir yeast_index --genomeFastaFiles GCF_000146045.2_R64_genomic.fna --genomeSAindexNbases 10&lt;br /&gt;
&lt;br /&gt;
Here, we specify &amp;lt;code&amp;gt;--genomeSAindexNbases 10&amp;lt;/code&amp;gt; since the yeast genome is rather small.&lt;br /&gt;
&lt;br /&gt;
Assuming reads have been stored in files &amp;lt;code&amp;gt;SRR8552464_1.fastq.gz&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;SRR8552464_2.fastq.gz&amp;lt;/code&amp;gt;, we run STAR with the following command&lt;br /&gt;
&lt;br /&gt;
 STAR --genomeDir yeast_index --readFilesIn SRR8552464_1.fastq.gz SRR8552464_2.fastq.gz --readFilesCommand gunzip -c --outFileNamePrefix star/SRR8552464 --alignIntronMax 20000 --alignMatesGapMax 20000 --outSAMtype BAM SortedByCoordinate&lt;br /&gt;
&lt;br /&gt;
Here, we limit the maximum intron size to 20000, since larger introns do not exist in yeast, but STAR tends to produce spurios long-split mappings, and let STAR output an already coordinate-sorted BAM file.&lt;br /&gt;
&lt;br /&gt;
For convenience, we provide the resulting mapping file [http://www.jstacs.de/downloads/GeMoSeq/SRR8552464.bam for download].&lt;br /&gt;
&lt;br /&gt;
=== Running GeMoSeq ===&lt;br /&gt;
&lt;br /&gt;
The resulting mapping file and the reference genome used for mapping are input of GeMoSeq in the next step. For the next steps, we assume that the BAM file has been moved to a file &amp;lt;code&amp;gt;SRR8552464.bam&amp;lt;/code&amp;gt; in the working directory (or has been downloaded from the provided link).&lt;br /&gt;
&lt;br /&gt;
We leave most arguments at their defaults, calling GeMoSeq with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq g=GCF_000146045.2_R64_genomic.fna m=SRR8552464.bam s=FR_FIRST_STRAND threads=6 outdir=gemoseq&lt;br /&gt;
&lt;br /&gt;
Here, we use the parameter &amp;lt;code&amp;gt;s=FR_FIRST_STRAND&amp;lt;/code&amp;gt; to specify that this is a stranded library and set the number of threads to 6. The output directory is set to gemoseq.&lt;br /&gt;
At execution, GeMoSeq creates a temporary file with predictions in the working directory, which is later copied to the specified output directory together with a protocol of the GeMoSeq run. In the output directory, you will find the final predictions as a file &amp;lt;code&amp;gt;Transcript_Predictions.gff3&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Evaluating prediction performance ===&lt;br /&gt;
&lt;br /&gt;
To evaluate the accuracy of GeMoSeq predictions, we compare the GeMoSeq GFF against the yeast reference annotation. For this purpose, the GeMoSeq Jar file provides the [[GeMoMa]] Analyzer tool, which can be run with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar Analyzer t=GCF_000146045.2_R64_genomic.gff p=gemoseq/Transcript_Predictions.gff3&lt;br /&gt;
&lt;br /&gt;
The Analyzer tools outputs several metrics, including CDS sensitivity and precision, which are in this case 72.13 and 90.67, respectively.&lt;br /&gt;
&lt;br /&gt;
== Using multiple libraries in combination with homology-based gene prediction ==&lt;br /&gt;
&lt;br /&gt;
We use a [http://www.waterhouse-lab.com/Benth_download_2025/NbLab360.genome.fasta.gz recently published genome] of a &#039;&#039;Nicotiana benthamiana&#039;&#039; lab strain ([https://doi.org/10.1038/s41477-023-01489-8]) to illustrate how GeMoSeq can be used to re-annotate a genome based on multiple sequencing libraries and in combination with the homology-based gene prediction of [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In the [https://doi.org/10.1101/2025.02.27.640589 GeMoSeq preprint], we sampled 319 sequencing libraries for &#039;&#039;N. benthamiana&#039;&#039; for this purpose, and we provide the corresponding [https://www.ebi.ac.uk/ena/browser/home ENA] accession table [http://www.jstacs.de/downloads/GeMoSeq/N_benthamiana_datasets.xlsx for download].&lt;br /&gt;
&lt;br /&gt;
All of these libraries need to be downloaded, mapped to the genome sequence, and strandedness needs to be determined. For mapping, we follow the same procedure as described for the GeMoSeq example run above. To determine strandedness, we use [https://subread.sourceforge.net/featureCounts.html featureCounts] applied to the previous [http://www.waterhouse-lab.com/Benth_download_2025/NbLab360.v103.gff3.gz genome annotation] with flags for either strand orientation and choose the one with the larger number of assigned reads, or unstranded if both yield roughly equal numbers of assigned reads.&lt;br /&gt;
The strand orientation that has been determined by this procedure is listed in column &amp;quot;type&amp;quot; of the [http://www.jstacs.de/downloads/GeMoSeq/N_benthamiana_datasets.xlsx accession table].&lt;br /&gt;
&lt;br /&gt;
=== Applying GeMoSeq to individual libraries ===&lt;br /&gt;
&lt;br /&gt;
Assuming that the mapped reads are stored in directories named by the accession of the sequencing run, namely &amp;lt;code&amp;gt;mappings/&amp;lt;accession&amp;gt;/Aligned.sortedByCoord.out.bam&amp;lt;/code&amp;gt;, e.g., &amp;lt;code&amp;gt;mappings/DRR377420/Aligned.sortedByCoord.out.bam&amp;lt;/code&amp;gt;, we need to call GeMoSeq for each of these mapping files independently. This can be achieved by a (bash) for loop over all BAM files or in parallel on a compute cluster using a scheduling system like slurm.&lt;br /&gt;
&lt;br /&gt;
For instance, library DRR377420 has strand orientation &amp;lt;code&amp;gt;FR_FIRST_STRAND&amp;lt;/code&amp;gt; (see above), and the corresponding GeMoSeq call would be&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq g=NbLab360.genome.fasta m=mappings/DRR377420/Aligned.sortedByCoord.out.bam s=FR_FIRST_STRAND threads=6 outdir=gemoseq/DRR377420&lt;br /&gt;
&lt;br /&gt;
where we, again, choose the name of the output directory based on the accession of the sequencing run. Within that directory, each GeMoSeq run will produce a file &amp;lt;code&amp;gt;Transcript_Predictions.gff3&amp;lt;/code&amp;gt; with the predicted gene models.&lt;br /&gt;
&lt;br /&gt;
After GeMoSeq has been run for all mapping files, the resulting prediction files are located in &amp;lt;code&amp;gt;gemoseq/&amp;lt;accession&amp;gt;/Transcript_Predictions.gff3&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Joining individual predictions ===&lt;br /&gt;
&lt;br /&gt;
To yield a joint GeMoSeq prediction across all libraries, we join the individual predictions using the [[GeMoMa-Docs#GeMoMa_Annotation_Filter| GeMoMa Annotation Filter]] (GAF) tool of [[GeMoMa]], which also comes packaged with the GeMoSeq JAR file.&lt;br /&gt;
For future merging with homology-based GeMoMa predictions, we run the GAF tool twice, once with looser and once with stricter filtering criteria.&lt;br /&gt;
&lt;br /&gt;
For the looser filtering, we specify&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar GAF p=DRR377420 g=gemoseq/DRR377420/Transcript_Predictions.gff3 ... p=SRR29507616 g=gemoseq/SRR29507616/Transcript_Predictions.gff3 f=&amp;quot;start==&#039;M&#039; and stop==&#039;*&#039; and sumWeight&amp;gt;7 and (isNaN(tie) or tie==1)&amp;quot; atf=&amp;quot;sumWeight&amp;gt;23&amp;quot; mnotpg=20 tf=true outdir=gemoseq_loose&lt;br /&gt;
&lt;br /&gt;
where &amp;lt;code&amp;gt;...&amp;lt;/code&amp;gt; indicates that the arguments &amp;lt;code&amp;gt;p&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;g&amp;lt;/code&amp;gt; need to be repeated for each of the individual predictions.&lt;br /&gt;
The filtering criteria (parameter &amp;lt;code&amp;gt;f&amp;lt;/code&amp;gt;) specify that each tranferred transcript must have a proper start and stop codon, must appear in more than 7 (of 319) individual predictions and may either be a single-exon transcript (&amp;lt;code&amp;gt;isNaN(tie)&amp;lt;/code&amp;gt;) or have perfect support for all splice sites (&amp;lt;code&amp;gt;tie==1&amp;lt;/code&amp;gt;). The parameter &amp;lt;code&amp;gt;atf&amp;lt;/code&amp;gt; defines that alternative transcripts are only transferred, if they occur in at least 24 of 319 libraries, parameter &amp;lt;code&amp;gt;mnotpg&amp;lt;/code&amp;gt; specifies the maximum number of transcripts per gene, and &amp;lt;code&amp;gt;tf=true&amp;lt;/code&amp;gt; indicates that additional features (i.e., exons + CDS) should be tranferred to the final prediction.&lt;br /&gt;
After the GAF run, the joint predictions are stored in &amp;lt;code&amp;gt;gemoseq_loose/filtered_predictions.gff&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
For the stricter filtering, we use adapted parameters&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar GAF p=DRR377420 g=gemoseq/DRR377420/Transcript_Predictions.gff3 ... p=SRR29507616 g=gemoseq/SRR29507616/Transcript_Predictions.gff3 f=&amp;quot;start==&#039;M&#039; and stop==&#039;*&#039; and sumWeight&amp;gt;30 and (isNaN(tie) or tie==1)&amp;quot; atf=&amp;quot;sumWeight&amp;gt;70&amp;quot; mnotpg=20 tf=true outdir=gemoseq_strict&lt;br /&gt;
&lt;br /&gt;
and obtain joint predictions in &amp;lt;code&amp;gt;gemoseq_strict/filtered_predictions.gff&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Homology-based gene prediction ===&lt;br /&gt;
&lt;br /&gt;
For homology-based gene prediction, we use [[GeMoMa]] for the reference species &#039;&#039;A. thaliana&#039;&#039;, &#039;&#039;N. tabacum&#039;&#039;, &#039;&#039;S. lycopersicum&#039;&#039;, and two previous &#039;&#039;N. benthamiana&#039;&#039; genome versions (1.0.1 and 2.6.1).&lt;br /&gt;
These predictions are also joined using the GAF tool.&lt;br /&gt;
&lt;br /&gt;
For details about using GeMoMa for homology-based gene prediction, please refer to [[GeMoMa-Docs]].&lt;br /&gt;
&lt;br /&gt;
Here, we assume that for the homology-based predictions, we also obtain a loosely and a strictly filtered prediction file as &amp;lt;code&amp;gt;gemoma_loose/filtered_predictions.gff&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;gemoma_strict/filtered_predictions.gff&amp;lt;/code&amp;gt;, respectively.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Merging RNA-seq-based and homology-based predictions ===&lt;br /&gt;
&lt;br /&gt;
We finally merge the four previously obtained prediction files (loose and strict for GeMoSeq and GeMoMa, respectively) using the GeMoSeq Merge tool. We call&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar merge g=gemoma_loose/filtered_predictions.gff GeMoSeq=gemoseq_loose/filtered_predictions.gff m=annotate GeMoMa-strict=gemoma_strict/filtered_predictions.gff GeMoSeq-strict=gemoseq_strict/filtered_predictions.gff l=false outdir=final&lt;br /&gt;
&lt;br /&gt;
where parameter &amp;lt;code&amp;gt;m&amp;lt;/code&amp;gt; specifies that merged predictions should be annotated with their confidence (high, medium) and &amp;lt;code&amp;gt;l=false&amp;lt;/code&amp;gt; indicates that low-confidence predictions should be excluded from the output. After running the Merge tool, final predictions can be found in &amp;lt;code&amp;gt;final/Merged_Predictions.gff&amp;lt;/code&amp;gt;.&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq-Examples&amp;diff=1222</id>
		<title>GeMoSeq-Examples</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq-Examples&amp;diff=1222"/>
		<updated>2025-11-19T14:44:06Z</updated>

		<summary type="html">&lt;p&gt;Grau: /* Running GeMoSeq */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== GeMoSeq example run ==&lt;br /&gt;
&lt;br /&gt;
We use a data set for yeast for an example run of GeMoSeq. As input of GeMoSeq, we need a reference genome and a library of reads mapped to that reference.&lt;br /&gt;
Here, we use the [https://ftp.ncbi.nlm.nih.gov/genomes/all/GCF/000/146/045/GCF_000146045.2_R64/GCF_000146045.2_R64_genomic.fna.gz &#039;&#039;S. cerevisiae&#039;&#039; S288C reference genome R64] available from NCBI. For later evaluation of GeMoSeq prediction results, we also download the [https://ftp.ncbi.nlm.nih.gov/genomes/all/GCF/000/146/045/GCF_000146045.2_R64/GCF_000146045.2_R64_genomic.gff.gz reference annotation].&lt;br /&gt;
As a sequencing library, we use the library with accession SRR8552464 available from the [https://www.ebi.ac.uk/ena/browser/home European Nucleotide archive] or [https://www.ncbi.nlm.nih.gov/sra NCBI Sequence Read Archive].&lt;br /&gt;
&lt;br /&gt;
=== Mapping ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;If you just want to test GeMoSeq, you can skip this step and proceed with the download provided at the end of this section.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Before proceeding with GeMoSeq, these reads first need to be mapped to the reference genome. For yeast and other eukaryotes, we should use a splicing-aware mapping tool. Our current favourite is [https://github.com/alexdobin/STAR STAR] also available from [http://bioconda.github.io/recipes/star/README.html bioconda].&lt;br /&gt;
&lt;br /&gt;
First, we need to index the reference genome with&lt;br /&gt;
 &lt;br /&gt;
 STAR --runMode genomeGenerate --genomeDir yeast_index --genomeFastaFiles GCF_000146045.2_R64_genomic.fna --genomeSAindexNbases 10&lt;br /&gt;
&lt;br /&gt;
Here, we specify &amp;lt;code&amp;gt;--genomeSAindexNbases 10&amp;lt;/code&amp;gt; since the yeast genome is rather small.&lt;br /&gt;
&lt;br /&gt;
Assuming reads have been stored in files &amp;lt;code&amp;gt;SRR8552464_1.fastq.gz&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;SRR8552464_2.fastq.gz&amp;lt;/code&amp;gt;, we run STAR with the following command&lt;br /&gt;
&lt;br /&gt;
 STAR --genomeDir yeast_index --readFilesIn SRR8552464_1.fastq.gz SRR8552464_2.fastq.gz --readFilesCommand gunzip -c --outFileNamePrefix star/SRR8552464 --alignIntronMax 20000 --alignMatesGapMax 20000 --outSAMtype BAM SortedByCoordinate&lt;br /&gt;
&lt;br /&gt;
Here, we limit the maximum intron size to 20000, since larger introns do not exist in yeast, but STAR tends to produce spurios long-split mappings, and let STAR output an already coordinate-sorted BAM file.&lt;br /&gt;
&lt;br /&gt;
For convenience, we provide the resulting mapping file [http://www.jstacs.de/downloads/GeMoSeq/SRR8552464.bam for download].&lt;br /&gt;
&lt;br /&gt;
=== Running GeMoSeq ===&lt;br /&gt;
&lt;br /&gt;
The resulting mapping file and the reference genome used for mapping are input of GeMoSeq in the next step. For the next steps, we assume that the BAM file has been moved to a file &amp;lt;code&amp;gt;SRR8552464.bam&amp;lt;/code&amp;gt; in the working directory (or has been downloaded from the provided link).&lt;br /&gt;
&lt;br /&gt;
We leave most arguments at their defaults, calling GeMoSeq with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq g=GCF_000146045.2_R64_genomic.fna m=SRR8552464.bam s=FR_FIRST_STRAND threads=6 outdir=gemoseq&lt;br /&gt;
&lt;br /&gt;
Here, we use the parameter &amp;lt;code&amp;gt;s=FR_FIRST_STRAND&amp;lt;/code&amp;gt; to specify that this is a stranded library and set the number of threads to 6. The output directory is set to gemoseq.&lt;br /&gt;
At execution, GeMoSeq creates a temporary file with predictions in the working directory, which is later copied to the specified output directory together with a protocol of the GeMoSeq run. In the output directory, you will find the final predictions as a file &amp;lt;code&amp;gt;Transcript_Predictions.gff3&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Evaluating prediction performance ===&lt;br /&gt;
&lt;br /&gt;
To evaluate the accuracy of GeMoSeq predictions, we compare the GeMoSeq GFF against the yeast reference annotation. For this purpose, the GeMoSeq Jar file provides the [[GeMoMa]] Analyzer tool, which can be run with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar Analyzer t=GCF_000146045.2_R64_genomic.gff p=gemoseq/Transcript_Predictions.gff3&lt;br /&gt;
&lt;br /&gt;
The Analyzer tools outputs several metrics, including CDS sensitivity and precision, which are in this case 72.13 and 90.67, respectively.&lt;br /&gt;
&lt;br /&gt;
== Using multiple libraries in combination with homology-based gene prediction ==&lt;br /&gt;
&lt;br /&gt;
We use a [https://bioweb01.qut.edu.au/N.bethamiana/NbLab360.genome.fasta.gz recently published genome] of a &#039;&#039;Nicotiana benthamiana&#039;&#039; lab strain ([https://doi.org/10.1038/s41477-023-01489-8]) to illustrate how GeMoSeq can be used to re-annotate a genome based on multiple sequencing libraries and in combination with the homology-based gene prediction of [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In the [https://doi.org/10.1101/2025.02.27.640589 GeMoSeq preprint], we sampled 319 sequencing libraries for &#039;&#039;N. benthamiana&#039;&#039; for this purpose, and we provide the corresponding [https://www.ebi.ac.uk/ena/browser/home ENA] accession table [http://www.jstacs.de/downloads/GeMoSeq/N_benthamiana_datasets.xlsx for download].&lt;br /&gt;
&lt;br /&gt;
All of these libraries need to be downloaded, mapped to the genome sequence, and strandedness needs to be determined. For mapping, we follow the same procedure as described for the GeMoSeq example run above. To determine strandedness, we use [https://subread.sourceforge.net/featureCounts.html featureCounts] applied to the previous [genome annotation] with flags for either strand orientation and choose the one with the larger number of assigned reads, or unstranded if both yield roughly equal numbers of assigned reads.&lt;br /&gt;
The strand orientation that has been determined by this procedure is listed in column &amp;quot;type&amp;quot; of the [http://www.jstacs.de/downloads/GeMoSeq/N_benthamiana_datasets.xlsx accession table].&lt;br /&gt;
&lt;br /&gt;
=== Applying GeMoSeq to individual libraries ===&lt;br /&gt;
&lt;br /&gt;
Assuming that the mapped reads are stored in directories named by the accession of the sequencing run, namely &amp;lt;code&amp;gt;mappings/&amp;lt;accession&amp;gt;/Aligned.sortedByCoord.out.bam&amp;lt;/code&amp;gt;, e.g., &amp;lt;code&amp;gt;mappings/DRR377420/Aligned.sortedByCoord.out.bam&amp;lt;/code&amp;gt;, we need to call GeMoSeq for each of these mapping files independently. This can be achieved by a (bash) for loop over all BAM files or in parallel on a compute cluster using a scheduling system like slurm.&lt;br /&gt;
&lt;br /&gt;
For instance, library DRR377420 has strand orientation &amp;lt;code&amp;gt;FR_FIRST_STRAND&amp;lt;/code&amp;gt; (see above), and the corresponding GeMoSeq call would be&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq g=NbLab360.genome.fasta m=mappings/DRR377420/Aligned.sortedByCoord.out.bam s=FR_FIRST_STRAND threads=6 outdir=gemoseq/DRR377420&lt;br /&gt;
&lt;br /&gt;
where we, again, choose the name of the output directory based on the accession of the sequencing run. Within that directory, each GeMoSeq run will produce a file &amp;lt;code&amp;gt;Transcript_Predictions.gff3&amp;lt;/code&amp;gt; with the predicted gene models.&lt;br /&gt;
&lt;br /&gt;
After GeMoSeq has been run for all mapping files, the resulting prediction files are located in &amp;lt;code&amp;gt;gemoseq/&amp;lt;accession&amp;gt;/Transcript_Predictions.gff3&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Joining individual predictions ===&lt;br /&gt;
&lt;br /&gt;
To yield a joint GeMoSeq prediction across all libraries, we join the individual predictions using the [[GeMoMa-Docs#GeMoMa_Annotation_Filter| GeMoMa Annotation Filter]] (GAF) tool of [[GeMoMa]], which also comes packaged with the GeMoSeq JAR file.&lt;br /&gt;
For future merging with homology-based GeMoMa predictions, we run the GAF tool twice, once with looser and once with stricter filtering criteria.&lt;br /&gt;
&lt;br /&gt;
For the looser filtering, we specify&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar GAF p=DRR377420 g=gemoseq/DRR377420/Transcript_Predictions.gff3 ... p=SRR29507616 g=gemoseq/SRR29507616/Transcript_Predictions.gff3 f=&amp;quot;start==&#039;M&#039; and stop==&#039;*&#039; and sumWeight&amp;gt;7 and (isNaN(tie) or tie==1)&amp;quot; atf=&amp;quot;sumWeight&amp;gt;23&amp;quot; mnotpg=20 tf=true outdir=gemoseq_loose&lt;br /&gt;
&lt;br /&gt;
where &amp;lt;code&amp;gt;...&amp;lt;/code&amp;gt; indicates that the arguments &amp;lt;code&amp;gt;p&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;g&amp;lt;/code&amp;gt; need to be repeated for each of the individual predictions.&lt;br /&gt;
The filtering criteria (parameter &amp;lt;code&amp;gt;f&amp;lt;/code&amp;gt;) specify that each tranferred transcript must have a proper start and stop codon, must appear in more than 7 (of 319) individual predictions and may either be a single-exon transcript (&amp;lt;code&amp;gt;isNaN(tie)&amp;lt;/code&amp;gt;) or have perfect support for all splice sites (&amp;lt;code&amp;gt;tie==1&amp;lt;/code&amp;gt;). The parameter &amp;lt;code&amp;gt;atf&amp;lt;/code&amp;gt; defines that alternative transcripts are only transferred, if they occur in at least 24 of 319 libraries, parameter &amp;lt;code&amp;gt;mnotpg&amp;lt;/code&amp;gt; specifies the maximum number of transcripts per gene, and &amp;lt;code&amp;gt;tf=true&amp;lt;/code&amp;gt; indicates that additional features (i.e., exons + CDS) should be tranferred to the final prediction.&lt;br /&gt;
After the GAF run, the joint predictions are stored in &amp;lt;code&amp;gt;gemoseq_loose/filtered_predictions.gff&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
For the stricter filtering, we use adapted parameters&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar GAF p=DRR377420 g=gemoseq/DRR377420/Transcript_Predictions.gff3 ... p=SRR29507616 g=gemoseq/SRR29507616/Transcript_Predictions.gff3 f=&amp;quot;start==&#039;M&#039; and stop==&#039;*&#039; and sumWeight&amp;gt;30 and (isNaN(tie) or tie==1)&amp;quot; atf=&amp;quot;sumWeight&amp;gt;70&amp;quot; mnotpg=20 tf=true outdir=gemoseq_strict&lt;br /&gt;
&lt;br /&gt;
and obtain joint predictions in &amp;lt;code&amp;gt;gemoseq_strict/filtered_predictions.gff&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Homology-based gene prediction ===&lt;br /&gt;
&lt;br /&gt;
For homology-based gene prediction, we use [[GeMoMa]] for the reference species &#039;&#039;A. thaliana&#039;&#039;, &#039;&#039;N. tabacum&#039;&#039;, &#039;&#039;S. lycopersicum&#039;&#039;, and two previous &#039;&#039;N. benthamiana&#039;&#039; genome versions (1.0.1 and 2.6.1).&lt;br /&gt;
These predictions are also joined using the GAF tool.&lt;br /&gt;
&lt;br /&gt;
For details about using GeMoMa for homology-based gene prediction, please refer to [[GeMoMa-Docs]].&lt;br /&gt;
&lt;br /&gt;
Here, we assume that for the homology-based predictions, we also obtain a loosely and a strictly filtered prediction file as &amp;lt;code&amp;gt;gemoma_loose/filtered_predictions.gff&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;gemoma_strict/filtered_predictions.gff&amp;lt;/code&amp;gt;, respectively.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Merging RNA-seq-based and homology-based predictions ===&lt;br /&gt;
&lt;br /&gt;
We finally merge the four previously obtained prediction files (loose and strict for GeMoSeq and GeMoMa, respectively) using the GeMoSeq Merge tool. We call&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar merge g=gemoma_loose/filtered_predictions.gff GeMoSeq=gemoseq_loose/filtered_predictions.gff m=annotate GeMoMa-strict=gemoma_strict/filtered_predictions.gff GeMoSeq-strict=gemoseq_strict/filtered_predictions.gff l=false outdir=final&lt;br /&gt;
&lt;br /&gt;
where parameter &amp;lt;code&amp;gt;m&amp;lt;/code&amp;gt; specifies that merged predictions should be annotated with their confidence (high, medium) and &amp;lt;code&amp;gt;l=false&amp;lt;/code&amp;gt; indicates that low-confidence predictions should be excluded from the output. After running the Merge tool, final predictions can be found in &amp;lt;code&amp;gt;final/Merged_Predictions.gff&amp;lt;/code&amp;gt;.&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq-Examples&amp;diff=1221</id>
		<title>GeMoSeq-Examples</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq-Examples&amp;diff=1221"/>
		<updated>2025-11-19T14:42:35Z</updated>

		<summary type="html">&lt;p&gt;Grau: /* GeMoSeq example run */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== GeMoSeq example run ==&lt;br /&gt;
&lt;br /&gt;
We use a data set for yeast for an example run of GeMoSeq. As input of GeMoSeq, we need a reference genome and a library of reads mapped to that reference.&lt;br /&gt;
Here, we use the [https://ftp.ncbi.nlm.nih.gov/genomes/all/GCF/000/146/045/GCF_000146045.2_R64/GCF_000146045.2_R64_genomic.fna.gz &#039;&#039;S. cerevisiae&#039;&#039; S288C reference genome R64] available from NCBI. For later evaluation of GeMoSeq prediction results, we also download the [https://ftp.ncbi.nlm.nih.gov/genomes/all/GCF/000/146/045/GCF_000146045.2_R64/GCF_000146045.2_R64_genomic.gff.gz reference annotation].&lt;br /&gt;
As a sequencing library, we use the library with accession SRR8552464 available from the [https://www.ebi.ac.uk/ena/browser/home European Nucleotide archive] or [https://www.ncbi.nlm.nih.gov/sra NCBI Sequence Read Archive].&lt;br /&gt;
&lt;br /&gt;
=== Mapping ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;If you just want to test GeMoSeq, you can skip this step and proceed with the download provided at the end of this section.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Before proceeding with GeMoSeq, these reads first need to be mapped to the reference genome. For yeast and other eukaryotes, we should use a splicing-aware mapping tool. Our current favourite is [https://github.com/alexdobin/STAR STAR] also available from [http://bioconda.github.io/recipes/star/README.html bioconda].&lt;br /&gt;
&lt;br /&gt;
First, we need to index the reference genome with&lt;br /&gt;
 &lt;br /&gt;
 STAR --runMode genomeGenerate --genomeDir yeast_index --genomeFastaFiles GCF_000146045.2_R64_genomic.fna --genomeSAindexNbases 10&lt;br /&gt;
&lt;br /&gt;
Here, we specify &amp;lt;code&amp;gt;--genomeSAindexNbases 10&amp;lt;/code&amp;gt; since the yeast genome is rather small.&lt;br /&gt;
&lt;br /&gt;
Assuming reads have been stored in files &amp;lt;code&amp;gt;SRR8552464_1.fastq.gz&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;SRR8552464_2.fastq.gz&amp;lt;/code&amp;gt;, we run STAR with the following command&lt;br /&gt;
&lt;br /&gt;
 STAR --genomeDir yeast_index --readFilesIn SRR8552464_1.fastq.gz SRR8552464_2.fastq.gz --readFilesCommand gunzip -c --outFileNamePrefix star/SRR8552464 --alignIntronMax 20000 --alignMatesGapMax 20000 --outSAMtype BAM SortedByCoordinate&lt;br /&gt;
&lt;br /&gt;
Here, we limit the maximum intron size to 20000, since larger introns do not exist in yeast, but STAR tends to produce spurios long-split mappings, and let STAR output an already coordinate-sorted BAM file.&lt;br /&gt;
&lt;br /&gt;
For convenience, we provide the resulting mapping file [http://www.jstacs.de/downloads/GeMoSeq/SRR8552464.bam for download].&lt;br /&gt;
&lt;br /&gt;
=== Running GeMoSeq ===&lt;br /&gt;
&lt;br /&gt;
The resulting mapping file and the reference genome used for mapping are input of GeMoSeq in the next step. For the next steps, we assume that the BAM file has been moved to a file &amp;lt;code&amp;gt;SRR8552464.bam&amp;lt;/code&amp;gt; in the working directory (or has been downloaded from the provided link).&lt;br /&gt;
&lt;br /&gt;
We leave most arguments at their defaults, calling GeMoSeq with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq g=GCF_000146045.2_R64_genomic.fna m=SRR8552464.bam s=FR_FIRST_STRAND threads=6 outdir=gemoseq&lt;br /&gt;
&lt;br /&gt;
Here, we use the parameter &amp;lt;code&amp;gt;s=FR_FIRST_STRAND&amp;lt;/code&amp;gt; to specify that this is a stranded library and set the number of threads to 6. The output directory is set to gemoseq.&lt;br /&gt;
At execution, GeMoSeq creates a temporary file with predictions in the working directory, which is later copied to the specified output directory together with a protocol of the GeMoSeq run. In the output directory you find the final predictions as a file &amp;lt;code&amp;gt;Transcript_Predictions.gff3&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Evaluating prediction performance ===&lt;br /&gt;
&lt;br /&gt;
To evaluate the accuracy of GeMoSeq predictions, we compare the GeMoSeq GFF against the yeast reference annotation. For this purpose, the GeMoSeq Jar file provides the [[GeMoMa]] Analyzer tool, which can be run with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar Analyzer t=GCF_000146045.2_R64_genomic.gff p=gemoseq/Transcript_Predictions.gff3&lt;br /&gt;
&lt;br /&gt;
The Analyzer tools outputs several metrics, including CDS sensitivity and precision, which are in this case 72.13 and 90.67, respectively.&lt;br /&gt;
&lt;br /&gt;
== Using multiple libraries in combination with homology-based gene prediction ==&lt;br /&gt;
&lt;br /&gt;
We use a [https://bioweb01.qut.edu.au/N.bethamiana/NbLab360.genome.fasta.gz recently published genome] of a &#039;&#039;Nicotiana benthamiana&#039;&#039; lab strain ([https://doi.org/10.1038/s41477-023-01489-8]) to illustrate how GeMoSeq can be used to re-annotate a genome based on multiple sequencing libraries and in combination with the homology-based gene prediction of [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In the [https://doi.org/10.1101/2025.02.27.640589 GeMoSeq preprint], we sampled 319 sequencing libraries for &#039;&#039;N. benthamiana&#039;&#039; for this purpose, and we provide the corresponding [https://www.ebi.ac.uk/ena/browser/home ENA] accession table [http://www.jstacs.de/downloads/GeMoSeq/N_benthamiana_datasets.xlsx for download].&lt;br /&gt;
&lt;br /&gt;
All of these libraries need to be downloaded, mapped to the genome sequence, and strandedness needs to be determined. For mapping, we follow the same procedure as described for the GeMoSeq example run above. To determine strandedness, we use [https://subread.sourceforge.net/featureCounts.html featureCounts] applied to the previous [genome annotation] with flags for either strand orientation and choose the one with the larger number of assigned reads, or unstranded if both yield roughly equal numbers of assigned reads.&lt;br /&gt;
The strand orientation that has been determined by this procedure is listed in column &amp;quot;type&amp;quot; of the [http://www.jstacs.de/downloads/GeMoSeq/N_benthamiana_datasets.xlsx accession table].&lt;br /&gt;
&lt;br /&gt;
=== Applying GeMoSeq to individual libraries ===&lt;br /&gt;
&lt;br /&gt;
Assuming that the mapped reads are stored in directories named by the accession of the sequencing run, namely &amp;lt;code&amp;gt;mappings/&amp;lt;accession&amp;gt;/Aligned.sortedByCoord.out.bam&amp;lt;/code&amp;gt;, e.g., &amp;lt;code&amp;gt;mappings/DRR377420/Aligned.sortedByCoord.out.bam&amp;lt;/code&amp;gt;, we need to call GeMoSeq for each of these mapping files independently. This can be achieved by a (bash) for loop over all BAM files or in parallel on a compute cluster using a scheduling system like slurm.&lt;br /&gt;
&lt;br /&gt;
For instance, library DRR377420 has strand orientation &amp;lt;code&amp;gt;FR_FIRST_STRAND&amp;lt;/code&amp;gt; (see above), and the corresponding GeMoSeq call would be&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq g=NbLab360.genome.fasta m=mappings/DRR377420/Aligned.sortedByCoord.out.bam s=FR_FIRST_STRAND threads=6 outdir=gemoseq/DRR377420&lt;br /&gt;
&lt;br /&gt;
where we, again, choose the name of the output directory based on the accession of the sequencing run. Within that directory, each GeMoSeq run will produce a file &amp;lt;code&amp;gt;Transcript_Predictions.gff3&amp;lt;/code&amp;gt; with the predicted gene models.&lt;br /&gt;
&lt;br /&gt;
After GeMoSeq has been run for all mapping files, the resulting prediction files are located in &amp;lt;code&amp;gt;gemoseq/&amp;lt;accession&amp;gt;/Transcript_Predictions.gff3&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Joining individual predictions ===&lt;br /&gt;
&lt;br /&gt;
To yield a joint GeMoSeq prediction across all libraries, we join the individual predictions using the [[GeMoMa-Docs#GeMoMa_Annotation_Filter| GeMoMa Annotation Filter]] (GAF) tool of [[GeMoMa]], which also comes packaged with the GeMoSeq JAR file.&lt;br /&gt;
For future merging with homology-based GeMoMa predictions, we run the GAF tool twice, once with looser and once with stricter filtering criteria.&lt;br /&gt;
&lt;br /&gt;
For the looser filtering, we specify&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar GAF p=DRR377420 g=gemoseq/DRR377420/Transcript_Predictions.gff3 ... p=SRR29507616 g=gemoseq/SRR29507616/Transcript_Predictions.gff3 f=&amp;quot;start==&#039;M&#039; and stop==&#039;*&#039; and sumWeight&amp;gt;7 and (isNaN(tie) or tie==1)&amp;quot; atf=&amp;quot;sumWeight&amp;gt;23&amp;quot; mnotpg=20 tf=true outdir=gemoseq_loose&lt;br /&gt;
&lt;br /&gt;
where &amp;lt;code&amp;gt;...&amp;lt;/code&amp;gt; indicates that the arguments &amp;lt;code&amp;gt;p&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;g&amp;lt;/code&amp;gt; need to be repeated for each of the individual predictions.&lt;br /&gt;
The filtering criteria (parameter &amp;lt;code&amp;gt;f&amp;lt;/code&amp;gt;) specify that each tranferred transcript must have a proper start and stop codon, must appear in more than 7 (of 319) individual predictions and may either be a single-exon transcript (&amp;lt;code&amp;gt;isNaN(tie)&amp;lt;/code&amp;gt;) or have perfect support for all splice sites (&amp;lt;code&amp;gt;tie==1&amp;lt;/code&amp;gt;). The parameter &amp;lt;code&amp;gt;atf&amp;lt;/code&amp;gt; defines that alternative transcripts are only transferred, if they occur in at least 24 of 319 libraries, parameter &amp;lt;code&amp;gt;mnotpg&amp;lt;/code&amp;gt; specifies the maximum number of transcripts per gene, and &amp;lt;code&amp;gt;tf=true&amp;lt;/code&amp;gt; indicates that additional features (i.e., exons + CDS) should be tranferred to the final prediction.&lt;br /&gt;
After the GAF run, the joint predictions are stored in &amp;lt;code&amp;gt;gemoseq_loose/filtered_predictions.gff&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
For the stricter filtering, we use adapted parameters&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar GAF p=DRR377420 g=gemoseq/DRR377420/Transcript_Predictions.gff3 ... p=SRR29507616 g=gemoseq/SRR29507616/Transcript_Predictions.gff3 f=&amp;quot;start==&#039;M&#039; and stop==&#039;*&#039; and sumWeight&amp;gt;30 and (isNaN(tie) or tie==1)&amp;quot; atf=&amp;quot;sumWeight&amp;gt;70&amp;quot; mnotpg=20 tf=true outdir=gemoseq_strict&lt;br /&gt;
&lt;br /&gt;
and obtain joint predictions in &amp;lt;code&amp;gt;gemoseq_strict/filtered_predictions.gff&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Homology-based gene prediction ===&lt;br /&gt;
&lt;br /&gt;
For homology-based gene prediction, we use [[GeMoMa]] for the reference species &#039;&#039;A. thaliana&#039;&#039;, &#039;&#039;N. tabacum&#039;&#039;, &#039;&#039;S. lycopersicum&#039;&#039;, and two previous &#039;&#039;N. benthamiana&#039;&#039; genome versions (1.0.1 and 2.6.1).&lt;br /&gt;
These predictions are also joined using the GAF tool.&lt;br /&gt;
&lt;br /&gt;
For details about using GeMoMa for homology-based gene prediction, please refer to [[GeMoMa-Docs]].&lt;br /&gt;
&lt;br /&gt;
Here, we assume that for the homology-based predictions, we also obtain a loosely and a strictly filtered prediction file as &amp;lt;code&amp;gt;gemoma_loose/filtered_predictions.gff&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;gemoma_strict/filtered_predictions.gff&amp;lt;/code&amp;gt;, respectively.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Merging RNA-seq-based and homology-based predictions ===&lt;br /&gt;
&lt;br /&gt;
We finally merge the four previously obtained prediction files (loose and strict for GeMoSeq and GeMoMa, respectively) using the GeMoSeq Merge tool. We call&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar merge g=gemoma_loose/filtered_predictions.gff GeMoSeq=gemoseq_loose/filtered_predictions.gff m=annotate GeMoMa-strict=gemoma_strict/filtered_predictions.gff GeMoSeq-strict=gemoseq_strict/filtered_predictions.gff l=false outdir=final&lt;br /&gt;
&lt;br /&gt;
where parameter &amp;lt;code&amp;gt;m&amp;lt;/code&amp;gt; specifies that merged predictions should be annotated with their confidence (high, medium) and &amp;lt;code&amp;gt;l=false&amp;lt;/code&amp;gt; indicates that low-confidence predictions should be excluded from the output. After running the Merge tool, final predictions can be found in &amp;lt;code&amp;gt;final/Merged_Predictions.gff&amp;lt;/code&amp;gt;.&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq-Examples&amp;diff=1220</id>
		<title>GeMoSeq-Examples</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq-Examples&amp;diff=1220"/>
		<updated>2025-11-18T16:09:25Z</updated>

		<summary type="html">&lt;p&gt;Grau: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== GeMoSeq example run ==&lt;br /&gt;
&lt;br /&gt;
We use a data set for yeast for an example run of GeMoSeq. As input of GeMoSeq, we need a reference genome and a library of reads mapped to that reference.&lt;br /&gt;
Here, we use the [https://ftp.ncbi.nlm.nih.gov/genomes/all/GCF/000/146/045/GCF_000146045.2_R64/GCF_000146045.2_R64_genomic.fna.gz &#039;&#039;S. cerevisiae&#039;&#039; S288C reference genome R64] available from NCBI. For later evaluation of GeMoSeq prediction results, we also download the [https://ftp.ncbi.nlm.nih.gov/genomes/all/GCF/000/146/045/GCF_000146045.2_R64/GCF_000146045.2_R64_genomic.gff.gz reference annotation].&lt;br /&gt;
As a sequencing library we use the library with accession SRR8552464 available from the [https://www.ebi.ac.uk/ena/browser/home European Nucleotide archive] or [https://www.ncbi.nlm.nih.gov/sra NCBI Sequence Read Archive].&lt;br /&gt;
&lt;br /&gt;
=== Mapping ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;If you just want to test GeMoSeq, you can skip this step and proceed with the download provided at the end of this section.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Before proceeding with GeMoSeq, these reads first need to be mapped to the reference genome. For yeast and other eukaryotes, we should use a splicing-aware mapping tool. Our current favourite is [https://github.com/alexdobin/STAR STAR] also available from [http://bioconda.github.io/recipes/star/README.html bioconda].&lt;br /&gt;
&lt;br /&gt;
First, we need to index the reference genome with&lt;br /&gt;
 &lt;br /&gt;
 STAR --runMode genomeGenerate --genomeDir yeast_index --genomeFastaFiles GCF_000146045.2_R64_genomic.fna --genomeSAindexNbases 10&lt;br /&gt;
&lt;br /&gt;
Here, we specify &amp;lt;code&amp;gt;--genomeSAindexNbases 10&amp;lt;/code&amp;gt; since the yeast genome is rather small.&lt;br /&gt;
&lt;br /&gt;
Assuming reads have been stored in files &amp;lt;code&amp;gt;SRR8552464_1.fastq.gz&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;SRR8552464_2.fastq.gz&amp;lt;/code&amp;gt;, we run STAR with the following command&lt;br /&gt;
&lt;br /&gt;
 STAR --genomeDir yeast_index --readFilesIn SRR8552464_1.fastq.gz SRR8552464_2.fastq.gz --readFilesCommand gunzip -c --outFileNamePrefix star/SRR8552464 --alignIntronMax 20000 --alignMatesGapMax 20000 --outSAMtype BAM SortedByCoordinate&lt;br /&gt;
&lt;br /&gt;
Here, we limit the maximum intron size to 20000, since larger introns do not exist in yeast, but STAR tends to produce spurios long-split mappings, and let STAR output an already coordinate-sorted BAM file.&lt;br /&gt;
&lt;br /&gt;
For convenience, we provide the resulting mapping file [http://www.jstacs.de/downloads/GeMoSeq/SRR8552464.bam for download].&lt;br /&gt;
&lt;br /&gt;
=== Running GeMoSeq ===&lt;br /&gt;
&lt;br /&gt;
The resulting mapping file and the reference genome used for mapping are input of GeMoSeq in the next step. For the next steps, we assume that the BAM file has been moved to a file &amp;lt;code&amp;gt;SRR8552464.bam&amp;lt;/code&amp;gt; in the working directory (or has been downloaded from the provided link).&lt;br /&gt;
&lt;br /&gt;
We leave most arguments at their defaults, calling GeMoSeq with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq g=GCF_000146045.2_R64_genomic.fna m=SRR8552464.bam s=FR_FIRST_STRAND threads=6 outdir=gemoseq&lt;br /&gt;
&lt;br /&gt;
Here, we use the parameter &amp;lt;code&amp;gt;s=FR_FIRST_STRAND&amp;lt;/code&amp;gt; to specify that this is a stranded library and set the number of threads to 6. The output directory is set to gemoseq.&lt;br /&gt;
At execution, GeMoSeq creates a temporary file with predictions in the working directory, which is later copied to the specified output directory together with a protocol of the GeMoSeq run. In the output directory you find the final predictions as a file &amp;lt;code&amp;gt;Transcript_Predictions.gff3&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Evaluating prediction performance ===&lt;br /&gt;
&lt;br /&gt;
To evaluate the accuracy of GeMoSeq predictions, we compare the GeMoSeq GFF against the yeast reference annotation. For this purpose, the GeMoSeq Jar file provides the [[GeMoMa]] Analyzer tool, which can be run with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar Analyzer t=GCF_000146045.2_R64_genomic.gff p=gemoseq/Transcript_Predictions.gff3&lt;br /&gt;
&lt;br /&gt;
The Analyzer tools outputs several metrics, including CDS sensitivity and precision, which are in this case 72.13 and 90.67, respectively.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Using multiple libraries in combination with homology-based gene prediction ==&lt;br /&gt;
&lt;br /&gt;
We use a [https://bioweb01.qut.edu.au/N.bethamiana/NbLab360.genome.fasta.gz recently published genome] of a &#039;&#039;Nicotiana benthamiana&#039;&#039; lab strain ([https://doi.org/10.1038/s41477-023-01489-8]) to illustrate how GeMoSeq can be used to re-annotate a genome based on multiple sequencing libraries and in combination with the homology-based gene prediction of [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In the [https://doi.org/10.1101/2025.02.27.640589 GeMoSeq preprint], we sampled 319 sequencing libraries for &#039;&#039;N. benthamiana&#039;&#039; for this purpose, and we provide the corresponding [https://www.ebi.ac.uk/ena/browser/home ENA] accession table [http://www.jstacs.de/downloads/GeMoSeq/N_benthamiana_datasets.xlsx for download].&lt;br /&gt;
&lt;br /&gt;
All of these libraries need to be downloaded, mapped to the genome sequence, and strandedness needs to be determined. For mapping, we follow the same procedure as described for the GeMoSeq example run above. To determine strandedness, we use [https://subread.sourceforge.net/featureCounts.html featureCounts] applied to the previous [genome annotation] with flags for either strand orientation and choose the one with the larger number of assigned reads, or unstranded if both yield roughly equal numbers of assigned reads.&lt;br /&gt;
The strand orientation that has been determined by this procedure is listed in column &amp;quot;type&amp;quot; of the [http://www.jstacs.de/downloads/GeMoSeq/N_benthamiana_datasets.xlsx accession table].&lt;br /&gt;
&lt;br /&gt;
=== Applying GeMoSeq to individual libraries ===&lt;br /&gt;
&lt;br /&gt;
Assuming that the mapped reads are stored in directories named by the accession of the sequencing run, namely &amp;lt;code&amp;gt;mappings/&amp;lt;accession&amp;gt;/Aligned.sortedByCoord.out.bam&amp;lt;/code&amp;gt;, e.g., &amp;lt;code&amp;gt;mappings/DRR377420/Aligned.sortedByCoord.out.bam&amp;lt;/code&amp;gt;, we need to call GeMoSeq for each of these mapping files independently. This can be achieved by a (bash) for loop over all BAM files or in parallel on a compute cluster using a scheduling system like slurm.&lt;br /&gt;
&lt;br /&gt;
For instance, library DRR377420 has strand orientation &amp;lt;code&amp;gt;FR_FIRST_STRAND&amp;lt;/code&amp;gt; (see above), and the corresponding GeMoSeq call would be&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq g=NbLab360.genome.fasta m=mappings/DRR377420/Aligned.sortedByCoord.out.bam s=FR_FIRST_STRAND threads=6 outdir=gemoseq/DRR377420&lt;br /&gt;
&lt;br /&gt;
where we, again, choose the name of the output directory based on the accession of the sequencing run. Within that directory, each GeMoSeq run will produce a file &amp;lt;code&amp;gt;Transcript_Predictions.gff3&amp;lt;/code&amp;gt; with the predicted gene models.&lt;br /&gt;
&lt;br /&gt;
After GeMoSeq has been run for all mapping files, the resulting prediction files are located in &amp;lt;code&amp;gt;gemoseq/&amp;lt;accession&amp;gt;/Transcript_Predictions.gff3&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Joining individual predictions ===&lt;br /&gt;
&lt;br /&gt;
To yield a joint GeMoSeq prediction across all libraries, we join the individual predictions using the [[GeMoMa-Docs#GeMoMa_Annotation_Filter| GeMoMa Annotation Filter]] (GAF) tool of [[GeMoMa]], which also comes packaged with the GeMoSeq JAR file.&lt;br /&gt;
For future merging with homology-based GeMoMa predictions, we run the GAF tool twice, once with looser and once with stricter filtering criteria.&lt;br /&gt;
&lt;br /&gt;
For the looser filtering, we specify&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar GAF p=DRR377420 g=gemoseq/DRR377420/Transcript_Predictions.gff3 ... p=SRR29507616 g=gemoseq/SRR29507616/Transcript_Predictions.gff3 f=&amp;quot;start==&#039;M&#039; and stop==&#039;*&#039; and sumWeight&amp;gt;7 and (isNaN(tie) or tie==1)&amp;quot; atf=&amp;quot;sumWeight&amp;gt;23&amp;quot; mnotpg=20 tf=true outdir=gemoseq_loose&lt;br /&gt;
&lt;br /&gt;
where &amp;lt;code&amp;gt;...&amp;lt;/code&amp;gt; indicates that the arguments &amp;lt;code&amp;gt;p&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;g&amp;lt;/code&amp;gt; need to be repeated for each of the individual predictions.&lt;br /&gt;
The filtering criteria (parameter &amp;lt;code&amp;gt;f&amp;lt;/code&amp;gt;) specify that each tranferred transcript must have a proper start and stop codon, must appear in more than 7 (of 319) individual predictions and may either be a single-exon transcript (&amp;lt;code&amp;gt;isNaN(tie)&amp;lt;/code&amp;gt;) or have perfect support for all splice sites (&amp;lt;code&amp;gt;tie==1&amp;lt;/code&amp;gt;). The parameter &amp;lt;code&amp;gt;atf&amp;lt;/code&amp;gt; defines that alternative transcripts are only transferred, if they occur in at least 24 of 319 libraries, parameter &amp;lt;code&amp;gt;mnotpg&amp;lt;/code&amp;gt; specifies the maximum number of transcripts per gene, and &amp;lt;code&amp;gt;tf=true&amp;lt;/code&amp;gt; indicates that additional features (i.e., exons + CDS) should be tranferred to the final prediction.&lt;br /&gt;
After the GAF run, the joint predictions are stored in &amp;lt;code&amp;gt;gemoseq_loose/filtered_predictions.gff&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
For the stricter filtering, we use adapted parameters&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar GAF p=DRR377420 g=gemoseq/DRR377420/Transcript_Predictions.gff3 ... p=SRR29507616 g=gemoseq/SRR29507616/Transcript_Predictions.gff3 f=&amp;quot;start==&#039;M&#039; and stop==&#039;*&#039; and sumWeight&amp;gt;30 and (isNaN(tie) or tie==1)&amp;quot; atf=&amp;quot;sumWeight&amp;gt;70&amp;quot; mnotpg=20 tf=true outdir=gemoseq_strict&lt;br /&gt;
&lt;br /&gt;
and obtain joint predictions in &amp;lt;code&amp;gt;gemoseq_strict/filtered_predictions.gff&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Homology-based gene prediction ===&lt;br /&gt;
&lt;br /&gt;
For homology-based gene prediction, we use [[GeMoMa]] for the reference species &#039;&#039;A. thaliana&#039;&#039;, &#039;&#039;N. tabacum&#039;&#039;, &#039;&#039;S. lycopersicum&#039;&#039;, and two previous &#039;&#039;N. benthamiana&#039;&#039; genome versions (1.0.1 and 2.6.1).&lt;br /&gt;
These predictions are also joined using the GAF tool.&lt;br /&gt;
&lt;br /&gt;
For details about using GeMoMa for homology-based gene prediction, please refer to [[GeMoMa-Docs]].&lt;br /&gt;
&lt;br /&gt;
Here, we assume that for the homology-based predictions, we also obtain a loosely and a strictly filtered prediction file as &amp;lt;code&amp;gt;gemoma_loose/filtered_predictions.gff&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;gemoma_strict/filtered_predictions.gff&amp;lt;/code&amp;gt;, respectively.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Merging RNA-seq-based and homology-based predictions ===&lt;br /&gt;
&lt;br /&gt;
We finally merge the four previously obtained prediction files (loose and strict for GeMoSeq and GeMoMa, respectively) using the GeMoSeq Merge tool. We call&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar merge g=gemoma_loose/filtered_predictions.gff GeMoSeq=gemoseq_loose/filtered_predictions.gff m=annotate GeMoMa-strict=gemoma_strict/filtered_predictions.gff GeMoSeq-strict=gemoseq_strict/filtered_predictions.gff l=false outdir=final&lt;br /&gt;
&lt;br /&gt;
where parameter &amp;lt;code&amp;gt;m&amp;lt;/code&amp;gt; specifies that merged predictions should be annotated with their confidence (high, medium) and &amp;lt;code&amp;gt;l=false&amp;lt;/code&amp;gt; indicates that low-confidence predictions should be excluded from the output. After running the Merge tool, final predictions can be found in &amp;lt;code&amp;gt;final/Merged_Predictions.gff&amp;lt;/code&amp;gt;.&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq-Examples&amp;diff=1219</id>
		<title>GeMoSeq-Examples</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq-Examples&amp;diff=1219"/>
		<updated>2025-11-18T16:09:13Z</updated>

		<summary type="html">&lt;p&gt;Grau: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
== GeMoSeq example run ==&lt;br /&gt;
&lt;br /&gt;
We use a data set for yeast for an example run of GeMoSeq. As input of GeMoSeq, we need a reference genome and a library of reads mapped to that reference.&lt;br /&gt;
Here, we use the [https://ftp.ncbi.nlm.nih.gov/genomes/all/GCF/000/146/045/GCF_000146045.2_R64/GCF_000146045.2_R64_genomic.fna.gz &#039;&#039;S. cerevisiae&#039;&#039; S288C reference genome R64] available from NCBI. For later evaluation of GeMoSeq prediction results, we also download the [https://ftp.ncbi.nlm.nih.gov/genomes/all/GCF/000/146/045/GCF_000146045.2_R64/GCF_000146045.2_R64_genomic.gff.gz reference annotation].&lt;br /&gt;
As a sequencing library we use the library with accession SRR8552464 available from the [https://www.ebi.ac.uk/ena/browser/home European Nucleotide archive] or [https://www.ncbi.nlm.nih.gov/sra NCBI Sequence Read Archive].&lt;br /&gt;
&lt;br /&gt;
=== Mapping ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;If you just want to test GeMoSeq, you can skip this step and proceed with the download provided at the end of this section.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Before proceeding with GeMoSeq, these reads first need to be mapped to the reference genome. For yeast and other eukaryotes, we should use a splicing-aware mapping tool. Our current favourite is [https://github.com/alexdobin/STAR STAR] also available from [http://bioconda.github.io/recipes/star/README.html bioconda].&lt;br /&gt;
&lt;br /&gt;
First, we need to index the reference genome with&lt;br /&gt;
 &lt;br /&gt;
 STAR --runMode genomeGenerate --genomeDir yeast_index --genomeFastaFiles GCF_000146045.2_R64_genomic.fna --genomeSAindexNbases 10&lt;br /&gt;
&lt;br /&gt;
Here, we specify &amp;lt;code&amp;gt;--genomeSAindexNbases 10&amp;lt;/code&amp;gt; since the yeast genome is rather small.&lt;br /&gt;
&lt;br /&gt;
Assuming reads have been stored in files &amp;lt;code&amp;gt;SRR8552464_1.fastq.gz&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;SRR8552464_2.fastq.gz&amp;lt;/code&amp;gt;, we run STAR with the following command&lt;br /&gt;
&lt;br /&gt;
 STAR --genomeDir yeast_index --readFilesIn SRR8552464_1.fastq.gz SRR8552464_2.fastq.gz --readFilesCommand gunzip -c --outFileNamePrefix star/SRR8552464 --alignIntronMax 20000 --alignMatesGapMax 20000 --outSAMtype BAM SortedByCoordinate&lt;br /&gt;
&lt;br /&gt;
Here, we limit the maximum intron size to 20000, since larger introns do not exist in yeast, but STAR tends to produce spurios long-split mappings, and let STAR output an already coordinate-sorted BAM file.&lt;br /&gt;
&lt;br /&gt;
For convenience, we provide the resulting mapping file [http://www.jstacs.de/downloads/GeMoSeq/SRR8552464.bam for download].&lt;br /&gt;
&lt;br /&gt;
=== Running GeMoSeq ===&lt;br /&gt;
&lt;br /&gt;
The resulting mapping file and the reference genome used for mapping are input of GeMoSeq in the next step. For the next steps, we assume that the BAM file has been moved to a file &amp;lt;code&amp;gt;SRR8552464.bam&amp;lt;/code&amp;gt; in the working directory (or has been downloaded from the provided link).&lt;br /&gt;
&lt;br /&gt;
We leave most arguments at their defaults, calling GeMoSeq with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq g=GCF_000146045.2_R64_genomic.fna m=SRR8552464.bam s=FR_FIRST_STRAND threads=6 outdir=gemoseq&lt;br /&gt;
&lt;br /&gt;
Here, we use the parameter &amp;lt;code&amp;gt;s=FR_FIRST_STRAND&amp;lt;/code&amp;gt; to specify that this is a stranded library and set the number of threads to 6. The output directory is set to gemoseq.&lt;br /&gt;
At execution, GeMoSeq creates a temporary file with predictions in the working directory, which is later copied to the specified output directory together with a protocol of the GeMoSeq run. In the output directory you find the final predictions as a file &amp;lt;code&amp;gt;Transcript_Predictions.gff3&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Evaluating prediction performance ===&lt;br /&gt;
&lt;br /&gt;
To evaluate the accuracy of GeMoSeq predictions, we compare the GeMoSeq GFF against the yeast reference annotation. For this purpose, the GeMoSeq Jar file provides the [[GeMoMa]] Analyzer tool, which can be run with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar Analyzer t=GCF_000146045.2_R64_genomic.gff p=gemoseq/Transcript_Predictions.gff3&lt;br /&gt;
&lt;br /&gt;
The Analyzer tools outputs several metrics, including CDS sensitivity and precision, which are in this case 72.13 and 90.67, respectively.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Using multiple libraries in combination with homology-based gene prediction ==&lt;br /&gt;
&lt;br /&gt;
We use a [https://bioweb01.qut.edu.au/N.bethamiana/NbLab360.genome.fasta.gz recently published genome] of a &#039;&#039;Nicotiana benthamiana&#039;&#039; lab strain ([https://doi.org/10.1038/s41477-023-01489-8]) to illustrate how GeMoSeq can be used to re-annotate a genome based on multiple sequencing libraries and in combination with the homology-based gene prediction of [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In the [https://doi.org/10.1101/2025.02.27.640589 GeMoSeq preprint], we sampled 319 sequencing libraries for &#039;&#039;N. benthamiana&#039;&#039; for this purpose, and we provide the corresponding [https://www.ebi.ac.uk/ena/browser/home ENA] accession table [http://www.jstacs.de/downloads/GeMoSeq/N_benthamiana_datasets.xlsx for download].&lt;br /&gt;
&lt;br /&gt;
All of these libraries need to be downloaded, mapped to the genome sequence, and strandedness needs to be determined. For mapping, we follow the same procedure as described for the GeMoSeq example run above. To determine strandedness, we use [https://subread.sourceforge.net/featureCounts.html featureCounts] applied to the previous [genome annotation] with flags for either strand orientation and choose the one with the larger number of assigned reads, or unstranded if both yield roughly equal numbers of assigned reads.&lt;br /&gt;
The strand orientation that has been determined by this procedure is listed in column &amp;quot;type&amp;quot; of the [http://www.jstacs.de/downloads/GeMoSeq/N_benthamiana_datasets.xlsx accession table].&lt;br /&gt;
&lt;br /&gt;
=== Applying GeMoSeq to individual libraries ===&lt;br /&gt;
&lt;br /&gt;
Assuming that the mapped reads are stored in directories named by the accession of the sequencing run, namely &amp;lt;code&amp;gt;mappings/&amp;lt;accession&amp;gt;/Aligned.sortedByCoord.out.bam&amp;lt;/code&amp;gt;, e.g., &amp;lt;code&amp;gt;mappings/DRR377420/Aligned.sortedByCoord.out.bam&amp;lt;/code&amp;gt;, we need to call GeMoSeq for each of these mapping files independently. This can be achieved by a (bash) for loop over all BAM files or in parallel on a compute cluster using a scheduling system like slurm.&lt;br /&gt;
&lt;br /&gt;
For instance, library DRR377420 has strand orientation &amp;lt;code&amp;gt;FR_FIRST_STRAND&amp;lt;/code&amp;gt; (see above), and the corresponding GeMoSeq call would be&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq g=NbLab360.genome.fasta m=mappings/DRR377420/Aligned.sortedByCoord.out.bam s=FR_FIRST_STRAND threads=6 outdir=gemoseq/DRR377420&lt;br /&gt;
&lt;br /&gt;
where we, again, choose the name of the output directory based on the accession of the sequencing run. Within that directory, each GeMoSeq run will produce a file &amp;lt;code&amp;gt;Transcript_Predictions.gff3&amp;lt;/code&amp;gt; with the predicted gene models.&lt;br /&gt;
&lt;br /&gt;
After GeMoSeq has been run for all mapping files, the resulting prediction files are located in &amp;lt;code&amp;gt;gemoseq/&amp;lt;accession&amp;gt;/Transcript_Predictions.gff3&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Joining individual predictions ===&lt;br /&gt;
&lt;br /&gt;
To yield a joint GeMoSeq prediction across all libraries, we join the individual predictions using the [[GeMoMa-Docs#GeMoMa_Annotation_Filter| GeMoMa Annotation Filter]] (GAF) tool of [[GeMoMa]], which also comes packaged with the GeMoSeq JAR file.&lt;br /&gt;
For future merging with homology-based GeMoMa predictions, we run the GAF tool twice, once with looser and once with stricter filtering criteria.&lt;br /&gt;
&lt;br /&gt;
For the looser filtering, we specify&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar GAF p=DRR377420 g=gemoseq/DRR377420/Transcript_Predictions.gff3 ... p=SRR29507616 g=gemoseq/SRR29507616/Transcript_Predictions.gff3 f=&amp;quot;start==&#039;M&#039; and stop==&#039;*&#039; and sumWeight&amp;gt;7 and (isNaN(tie) or tie==1)&amp;quot; atf=&amp;quot;sumWeight&amp;gt;23&amp;quot; mnotpg=20 tf=true outdir=gemoseq_loose&lt;br /&gt;
&lt;br /&gt;
where &amp;lt;code&amp;gt;...&amp;lt;/code&amp;gt; indicates that the arguments &amp;lt;code&amp;gt;p&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;g&amp;lt;/code&amp;gt; need to be repeated for each of the individual predictions.&lt;br /&gt;
The filtering criteria (parameter &amp;lt;code&amp;gt;f&amp;lt;/code&amp;gt;) specify that each tranferred transcript must have a proper start and stop codon, must appear in more than 7 (of 319) individual predictions and may either be a single-exon transcript (&amp;lt;code&amp;gt;isNaN(tie)&amp;lt;/code&amp;gt;) or have perfect support for all splice sites (&amp;lt;code&amp;gt;tie==1&amp;lt;/code&amp;gt;). The parameter &amp;lt;code&amp;gt;atf&amp;lt;/code&amp;gt; defines that alternative transcripts are only transferred, if they occur in at least 24 of 319 libraries, parameter &amp;lt;code&amp;gt;mnotpg&amp;lt;/code&amp;gt; specifies the maximum number of transcripts per gene, and &amp;lt;code&amp;gt;tf=true&amp;lt;/code&amp;gt; indicates that additional features (i.e., exons + CDS) should be tranferred to the final prediction.&lt;br /&gt;
After the GAF run, the joint predictions are stored in &amp;lt;code&amp;gt;gemoseq_loose/filtered_predictions.gff&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
For the stricter filtering, we use adapted parameters&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar GAF p=DRR377420 g=gemoseq/DRR377420/Transcript_Predictions.gff3 ... p=SRR29507616 g=gemoseq/SRR29507616/Transcript_Predictions.gff3 f=&amp;quot;start==&#039;M&#039; and stop==&#039;*&#039; and sumWeight&amp;gt;30 and (isNaN(tie) or tie==1)&amp;quot; atf=&amp;quot;sumWeight&amp;gt;70&amp;quot; mnotpg=20 tf=true outdir=gemoseq_strict&lt;br /&gt;
&lt;br /&gt;
and obtain joint predictions in &amp;lt;code&amp;gt;gemoseq_strict/filtered_predictions.gff&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Homology-based gene prediction ===&lt;br /&gt;
&lt;br /&gt;
For homology-based gene prediction, we use [[GeMoMa]] for the reference species &#039;&#039;A. thaliana&#039;&#039;, &#039;&#039;N. tabacum&#039;&#039;, &#039;&#039;S. lycopersicum&#039;&#039;, and two previous &#039;&#039;N. benthamiana&#039;&#039; genome versions (1.0.1 and 2.6.1).&lt;br /&gt;
These predictions are also joined using the GAF tool.&lt;br /&gt;
&lt;br /&gt;
For details about using GeMoMa for homology-based gene prediction, please refer to [[GeMoMa-Docs]].&lt;br /&gt;
&lt;br /&gt;
Here, we assume that for the homology-based predictions, we also obtain a loosely and a strictly filtered prediction file as &amp;lt;code&amp;gt;gemoma_loose/filtered_predictions.gff&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;gemoma_strict/filtered_predictions.gff&amp;lt;/code&amp;gt;, respectively.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Merging RNA-seq-based and homology-based predictions ===&lt;br /&gt;
&lt;br /&gt;
We finally merge the four previously obtained prediction files (loose and strict for GeMoSeq and GeMoMa, respectively) using the GeMoSeq Merge tool. We call&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar merge g=gemoma_loose/filtered_predictions.gff GeMoSeq=gemoseq_loose/filtered_predictions.gff m=annotate GeMoMa-strict=gemoma_strict/filtered_predictions.gff GeMoSeq-strict=gemoseq_strict/filtered_predictions.gff l=false outdir=final&lt;br /&gt;
&lt;br /&gt;
where parameter &amp;lt;code&amp;gt;m&amp;lt;/code&amp;gt; specifies that merged predictions should be annotated with their confidence (high, medium) and &amp;lt;code&amp;gt;l=false&amp;lt;/code&amp;gt; indicates that low-confidence predictions should be excluded from the output. After running the Merge tool, final predictions can be found in &amp;lt;code&amp;gt;final/Merged_Predictions.gff&amp;lt;/code&amp;gt;.&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1218</id>
		<title>GeMoSeq</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1218"/>
		<updated>2025-11-18T16:08:56Z</updated>

		<summary type="html">&lt;p&gt;Grau: /* Examples */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GeMoSeq reconstructs genes and transcript models from mapped RNA-seq reads (in coordinate-sorted BAM format) and reports these in GFF format.&lt;br /&gt;
&lt;br /&gt;
It is intended as a companion for the homology-based gene prediction program [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In a typical workflow, predictions of transcript models may be obtained from GeMoSeq for a collection of BAM files individually and subsequently merged using the [[GeMoMa]] Annotation Filter (GAF). Optionally, homology-based gene prediction may be performed using [[GeMoMa]] and the resulting GFF files may be merged using the [[#Merge|Merge]] tool of GeMoSeq.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Command line tool ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoSeq is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
GeMoSeq and auxiliary tools are packaged in one [http://www.jstacs.de/downloads/GeMoSeq-1.2.3.jar runnable JAR] that may be run from the command line with&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar&lt;br /&gt;
&lt;br /&gt;
which lists the tools available and usage information&lt;br /&gt;
&lt;br /&gt;
 Available tools:&lt;br /&gt;
 &lt;br /&gt;
 	gemoseq - GeMoSeq&lt;br /&gt;
 	predictCDS - Predict CDS from GFF&lt;br /&gt;
 	GAF - GeMoMa Annotation Filter&lt;br /&gt;
 	Analyzer - Analyzer&lt;br /&gt;
 	merge - Merge&lt;br /&gt;
 &lt;br /&gt;
 Syntax: java -jar GeMoSeq-1.2.3.jar &amp;lt;toolname&amp;gt; [&amp;lt;parameter=value&amp;gt; ...]&lt;br /&gt;
 &lt;br /&gt;
 Further info about the tools is given with&lt;br /&gt;
 	java -jar GeMoSeq-1.2.3.jar &amp;lt;toolname&amp;gt; info&lt;br /&gt;
 &lt;br /&gt;
 For tests of individual tools:&lt;br /&gt;
 	java -jar GeMoSeq-1.2.3.jar &amp;lt;toolname&amp;gt; test [&amp;lt;verbose&amp;gt;]&lt;br /&gt;
 &lt;br /&gt;
 Tool parameters are listed with&lt;br /&gt;
 	java -jar GeMoSeq-1.2.3.jar &amp;lt;toolname&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You get a list of the tool parameters by calling GeMoSeq-1.2.3.jar with the corresponding tool name, e.g.,&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq&lt;br /&gt;
&lt;br /&gt;
The meaning of the individual tool parameters is described below.&lt;br /&gt;
For convenience, we also include the [[GeMoMa]] tools Analyzer and GAF.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
&lt;br /&gt;
The source code of GeMoSeq is available from the [https://github.com/Jstacs/Jstacs/tree/master/projects/gemoseq Jstacs GitHub repository].&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
We give examples for applying GeMoSeq to a single sequencing library and for a larger-scale, integrated genome annotation together with GeMoMa [[GeMoSeq-Examples|on a separate wiki page]].&lt;br /&gt;
&lt;br /&gt;
== GeMoSeq ==&lt;br /&gt;
&lt;br /&gt;
Prediction of transcript models using GeMoSeq.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoSeq&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna,fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mapped reads (Mapped Reads in BAM format, coordinate sorted, type = bam)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;s&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Stranded (Library strandedness, range={FR_UNSTRANDED, FR_FIRST_STRAND, FR_SECOND_STRAND}, default = FR_UNSTRANDED)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Longest intron length (Length of the longest intron reported, default = 100000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sil&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Shortest intron length (Length of the shortest intron considered, default = 10)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;lr&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Long reads (Long-read mode, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of reads (Minimum number of reads required for an edge in the read graph, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of reads (Minimum fraction of reads relative to adjacent exons that must support an intron in the enumeration, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of intron reads (Minimum number of reads required for an intron, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of intron reads (Minimum fraction of reads relative to adjacent exons for an intron to be considered, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent explained (Percent of abundance that must be explained by transcript models after quantification, default = 0.9)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpg&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per gene (Minimum abundance required for a gene to be reported, default = 40.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpt&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per transcript (Minimum abundance required for a transcript to be reported, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;pa&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent abundance (Minimum relative abundance required for a transcript to be reported, default = 0.05)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sf&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Successive fraction (Factor of the drop in abundance between successive transcript models, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region length (Maximum length of a region considered before it is split, default = 750000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrc&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region coverage (Maximum coverage in a region before reads are down-sampled, valid range = [0.0, Infinity], default = 100.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfgl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum filled gap length (Maximum length of a gap filled by dummy reads, default = 50)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;q&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Quality filter (Minimum mapping quality required for a read to be considered, default = 40)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mpl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gp&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene prefix (Prefix to add to all gene names, default = G)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gnwc&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene names with chromosome (If true, gene names will be constructed as &amp;lt;Gene prefix&amp;gt;&amp;lt;chr&amp;gt;.&amp;lt;geneNumber&amp;gt;. Gene numbers will be assigned successively across all chromosomes., default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;threads&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The number of threads used for the tool, defaults to 1. Currently, I/O of GeMoSeq runs on a single thread and runtime is limited by I/O performance. Hence, running GeMoSeq with a large number of threads is not recommended. On our infrastructure, a number of 6 threads has been the sweet spot.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq g=&amp;amp;lt;Genome&amp;amp;gt; m=&amp;amp;lt;Mapped_reads&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Predict CDS from GFF ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Predict CDS from GFF&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar predictCDS&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna.fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (&amp;quot;GFF or GTF file containing the predicted annotation&amp;quot;, type = gff,gff3,gff.gz,gff3.gz,gtf,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar predictCDS g=&amp;amp;lt;Genome&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Merge ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Merge&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar merge&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa (GeMoMa predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoSeq&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoSeq (GeMoSeq predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mode (, range={intersect, union, intermediate, annotate}, default = intersect)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;intersect&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;union&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;intermediate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoSeq-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoSeq-strict (GeMoSeq predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;annotate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoSeq-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoSeq-strict (GeMoSeq predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Low-confidence (include low-confidence predictions, default = true)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar merge g=&amp;amp;lt;GeMoMa&amp;amp;gt; GeMoSeq=&amp;amp;lt;GeMoSeq&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Version history ==&lt;br /&gt;
&lt;br /&gt;
* Version 1.2.3 (2025/11/11): Renamed the tool to GeMoSeq and improved prediction from long-read data&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.2.1.jar Version 1.2.1] (2025/05/28): improved handling of exceptions in multi-thread mode&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.2.jar Version 1.2] (2025/05/12): changes in the following tools&lt;br /&gt;
** gemorna: fixed a problem where (incomplete) CDS would be predicted in transcripts without any proper stop codon&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.1.jar Version 1.1] (2025/04/15): changes in the following tools&lt;br /&gt;
** merge: include flag if low-confidence predictions will be included in &amp;quot;annotate&amp;quot; mode&lt;br /&gt;
** gemorna: allow to provide custom prefix for gene names and to include the chromosome into the gene names&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.0.jar Version 1.0]: initial version of GeMoRNA&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq-Examples&amp;diff=1217</id>
		<title>GeMoSeq-Examples</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq-Examples&amp;diff=1217"/>
		<updated>2025-11-18T16:08:39Z</updated>

		<summary type="html">&lt;p&gt;Grau: /* Joining individual predictions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== GeMoSeq example run ==&lt;br /&gt;
&lt;br /&gt;
We use a data set for yeast for an example run of GeMoSeq. As input of GeMoSeq, we need a reference genome and a library of reads mapped to that reference.&lt;br /&gt;
Here, we use the [https://ftp.ncbi.nlm.nih.gov/genomes/all/GCF/000/146/045/GCF_000146045.2_R64/GCF_000146045.2_R64_genomic.fna.gz &#039;&#039;S. cerevisiae&#039;&#039; S288C reference genome R64] available from NCBI. For later evaluation of GeMoSeq prediction results, we also download the [https://ftp.ncbi.nlm.nih.gov/genomes/all/GCF/000/146/045/GCF_000146045.2_R64/GCF_000146045.2_R64_genomic.gff.gz reference annotation].&lt;br /&gt;
As a sequencing library we use the library with accession SRR8552464 available from the [https://www.ebi.ac.uk/ena/browser/home European Nucleotide archive] or [https://www.ncbi.nlm.nih.gov/sra NCBI Sequence Read Archive].&lt;br /&gt;
&lt;br /&gt;
=== Mapping ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;If you just want to test GeMoSeq, you can skip this step and proceed with the download provided at the end of this section.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Before proceeding with GeMoSeq, these reads first need to be mapped to the reference genome. For yeast and other eukaryotes, we should use a splicing-aware mapping tool. Our current favourite is [https://github.com/alexdobin/STAR STAR] also available from [http://bioconda.github.io/recipes/star/README.html bioconda].&lt;br /&gt;
&lt;br /&gt;
First, we need to index the reference genome with&lt;br /&gt;
 &lt;br /&gt;
 STAR --runMode genomeGenerate --genomeDir yeast_index --genomeFastaFiles GCF_000146045.2_R64_genomic.fna --genomeSAindexNbases 10&lt;br /&gt;
&lt;br /&gt;
Here, we specify &amp;lt;code&amp;gt;--genomeSAindexNbases 10&amp;lt;/code&amp;gt; since the yeast genome is rather small.&lt;br /&gt;
&lt;br /&gt;
Assuming reads have been stored in files &amp;lt;code&amp;gt;SRR8552464_1.fastq.gz&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;SRR8552464_2.fastq.gz&amp;lt;/code&amp;gt;, we run STAR with the following command&lt;br /&gt;
&lt;br /&gt;
 STAR --genomeDir yeast_index --readFilesIn SRR8552464_1.fastq.gz SRR8552464_2.fastq.gz --readFilesCommand gunzip -c --outFileNamePrefix star/SRR8552464 --alignIntronMax 20000 --alignMatesGapMax 20000 --outSAMtype BAM SortedByCoordinate&lt;br /&gt;
&lt;br /&gt;
Here, we limit the maximum intron size to 20000, since larger introns do not exist in yeast, but STAR tends to produce spurios long-split mappings, and let STAR output an already coordinate-sorted BAM file.&lt;br /&gt;
&lt;br /&gt;
For convenience, we provide the resulting mapping file [http://www.jstacs.de/downloads/GeMoSeq/SRR8552464.bam for download].&lt;br /&gt;
&lt;br /&gt;
=== Running GeMoSeq ===&lt;br /&gt;
&lt;br /&gt;
The resulting mapping file and the reference genome used for mapping are input of GeMoSeq in the next step. For the next steps, we assume that the BAM file has been moved to a file &amp;lt;code&amp;gt;SRR8552464.bam&amp;lt;/code&amp;gt; in the working directory (or has been downloaded from the provided link).&lt;br /&gt;
&lt;br /&gt;
We leave most arguments at their defaults, calling GeMoSeq with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq g=GCF_000146045.2_R64_genomic.fna m=SRR8552464.bam s=FR_FIRST_STRAND threads=6 outdir=gemoseq&lt;br /&gt;
&lt;br /&gt;
Here, we use the parameter &amp;lt;code&amp;gt;s=FR_FIRST_STRAND&amp;lt;/code&amp;gt; to specify that this is a stranded library and set the number of threads to 6. The output directory is set to gemoseq.&lt;br /&gt;
At execution, GeMoSeq creates a temporary file with predictions in the working directory, which is later copied to the specified output directory together with a protocol of the GeMoSeq run. In the output directory you find the final predictions as a file &amp;lt;code&amp;gt;Transcript_Predictions.gff3&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Evaluating prediction performance ===&lt;br /&gt;
&lt;br /&gt;
To evaluate the accuracy of GeMoSeq predictions, we compare the GeMoSeq GFF against the yeast reference annotation. For this purpose, the GeMoSeq Jar file provides the [[GeMoMa]] Analyzer tool, which can be run with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar Analyzer t=GCF_000146045.2_R64_genomic.gff p=gemoseq/Transcript_Predictions.gff3&lt;br /&gt;
&lt;br /&gt;
The Analyzer tools outputs several metrics, including CDS sensitivity and precision, which are in this case 72.13 and 90.67, respectively.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Using multiple libraries in combination with homology-based gene prediction ==&lt;br /&gt;
&lt;br /&gt;
We use a [https://bioweb01.qut.edu.au/N.bethamiana/NbLab360.genome.fasta.gz recently published genome] of a &#039;&#039;Nicotiana benthamiana&#039;&#039; lab strain ([https://doi.org/10.1038/s41477-023-01489-8]) to illustrate how GeMoSeq can be used to re-annotate a genome based on multiple sequencing libraries and in combination with the homology-based gene prediction of [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In the [https://doi.org/10.1101/2025.02.27.640589 GeMoSeq preprint], we sampled 319 sequencing libraries for &#039;&#039;N. benthamiana&#039;&#039; for this purpose, and we provide the corresponding [https://www.ebi.ac.uk/ena/browser/home ENA] accession table [http://www.jstacs.de/downloads/GeMoSeq/N_benthamiana_datasets.xlsx for download].&lt;br /&gt;
&lt;br /&gt;
All of these libraries need to be downloaded, mapped to the genome sequence, and strandedness needs to be determined. For mapping, we follow the same procedure as described for the GeMoSeq example run above. To determine strandedness, we use [https://subread.sourceforge.net/featureCounts.html featureCounts] applied to the previous [genome annotation] with flags for either strand orientation and choose the one with the larger number of assigned reads, or unstranded if both yield roughly equal numbers of assigned reads.&lt;br /&gt;
The strand orientation that has been determined by this procedure is listed in column &amp;quot;type&amp;quot; of the [http://www.jstacs.de/downloads/GeMoSeq/N_benthamiana_datasets.xlsx accession table].&lt;br /&gt;
&lt;br /&gt;
=== Applying GeMoSeq to individual libraries ===&lt;br /&gt;
&lt;br /&gt;
Assuming that the mapped reads are stored in directories named by the accession of the sequencing run, namely &amp;lt;code&amp;gt;mappings/&amp;lt;accession&amp;gt;/Aligned.sortedByCoord.out.bam&amp;lt;/code&amp;gt;, e.g., &amp;lt;code&amp;gt;mappings/DRR377420/Aligned.sortedByCoord.out.bam&amp;lt;/code&amp;gt;, we need to call GeMoSeq for each of these mapping files independently. This can be achieved by a (bash) for loop over all BAM files or in parallel on a compute cluster using a scheduling system like slurm.&lt;br /&gt;
&lt;br /&gt;
For instance, library DRR377420 has strand orientation &amp;lt;code&amp;gt;FR_FIRST_STRAND&amp;lt;/code&amp;gt; (see above), and the corresponding GeMoSeq call would be&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq g=NbLab360.genome.fasta m=mappings/DRR377420/Aligned.sortedByCoord.out.bam s=FR_FIRST_STRAND threads=6 outdir=gemoseq/DRR377420&lt;br /&gt;
&lt;br /&gt;
where we, again, choose the name of the output directory based on the accession of the sequencing run. Within that directory, each GeMoSeq run will produce a file &amp;lt;code&amp;gt;Transcript_Predictions.gff3&amp;lt;/code&amp;gt; with the predicted gene models.&lt;br /&gt;
&lt;br /&gt;
After GeMoSeq has been run for all mapping files, the resulting prediction files are located in &amp;lt;code&amp;gt;gemoseq/&amp;lt;accession&amp;gt;/Transcript_Predictions.gff3&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Joining individual predictions ===&lt;br /&gt;
&lt;br /&gt;
To yield a joint GeMoSeq prediction across all libraries, we join the individual predictions using the [[GeMoMa-Docs#GeMoMa_Annotation_Filter| GeMoMa Annotation Filter]] (GAF) tool of [[GeMoMa]], which also comes packaged with the GeMoSeq JAR file.&lt;br /&gt;
For future merging with homology-based GeMoMa predictions, we run the GAF tool twice, once with looser and once with stricter filtering criteria.&lt;br /&gt;
&lt;br /&gt;
For the looser filtering, we specify&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar GAF p=DRR377420 g=gemoseq/DRR377420/Transcript_Predictions.gff3 ... p=SRR29507616 g=gemoseq/SRR29507616/Transcript_Predictions.gff3 f=&amp;quot;start==&#039;M&#039; and stop==&#039;*&#039; and sumWeight&amp;gt;7 and (isNaN(tie) or tie==1)&amp;quot; atf=&amp;quot;sumWeight&amp;gt;23&amp;quot; mnotpg=20 tf=true outdir=gemoseq_loose&lt;br /&gt;
&lt;br /&gt;
where &amp;lt;code&amp;gt;...&amp;lt;/code&amp;gt; indicates that the arguments &amp;lt;code&amp;gt;p&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;g&amp;lt;/code&amp;gt; need to be repeated for each of the individual predictions.&lt;br /&gt;
The filtering criteria (parameter &amp;lt;code&amp;gt;f&amp;lt;/code&amp;gt;) specify that each tranferred transcript must have a proper start and stop codon, must appear in more than 7 (of 319) individual predictions and may either be a single-exon transcript (&amp;lt;code&amp;gt;isNaN(tie)&amp;lt;/code&amp;gt;) or have perfect support for all splice sites (&amp;lt;code&amp;gt;tie==1&amp;lt;/code&amp;gt;). The parameter &amp;lt;code&amp;gt;atf&amp;lt;/code&amp;gt; defines that alternative transcripts are only transferred, if they occur in at least 24 of 319 libraries, parameter &amp;lt;code&amp;gt;mnotpg&amp;lt;/code&amp;gt; specifies the maximum number of transcripts per gene, and &amp;lt;code&amp;gt;tf=true&amp;lt;/code&amp;gt; indicates that additional features (i.e., exons + CDS) should be tranferred to the final prediction.&lt;br /&gt;
After the GAF run, the joint predictions are stored in &amp;lt;code&amp;gt;gemoseq_loose/filtered_predictions.gff&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
For the stricter filtering, we use adapted parameters&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar GAF p=DRR377420 g=gemoseq/DRR377420/Transcript_Predictions.gff3 ... p=SRR29507616 g=gemoseq/SRR29507616/Transcript_Predictions.gff3 f=&amp;quot;start==&#039;M&#039; and stop==&#039;*&#039; and sumWeight&amp;gt;30 and (isNaN(tie) or tie==1)&amp;quot; atf=&amp;quot;sumWeight&amp;gt;70&amp;quot; mnotpg=20 tf=true outdir=gemoseq_strict&lt;br /&gt;
&lt;br /&gt;
and obtain joint predictions in &amp;lt;code&amp;gt;gemoseq_strict/filtered_predictions.gff&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Homology-based gene prediction ===&lt;br /&gt;
&lt;br /&gt;
For homology-based gene prediction, we use [[GeMoMa]] for the reference species &#039;&#039;A. thaliana&#039;&#039;, &#039;&#039;N. tabacum&#039;&#039;, &#039;&#039;S. lycopersicum&#039;&#039;, and two previous &#039;&#039;N. benthamiana&#039;&#039; genome versions (1.0.1 and 2.6.1).&lt;br /&gt;
These predictions are also joined using the GAF tool.&lt;br /&gt;
&lt;br /&gt;
For details about using GeMoMa for homology-based gene prediction, please refer to [[GeMoMa-Docs]].&lt;br /&gt;
&lt;br /&gt;
Here, we assume that for the homology-based predictions, we also obtain a loosely and a strictly filtered prediction file as &amp;lt;code&amp;gt;gemoma_loose/filtered_predictions.gff&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;gemoma_strict/filtered_predictions.gff&amp;lt;/code&amp;gt;, respectively.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Merging RNA-seq-based and homology-based predictions ===&lt;br /&gt;
&lt;br /&gt;
We finally merge the four previously obtained prediction files (loose and strict for GeMoSeq and GeMoMa, respectively) using the GeMoSeq Merge tool. We call&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar merge g=gemoma_loose/filtered_predictions.gff GeMoSeq=gemoseq_loose/filtered_predictions.gff m=annotate GeMoMa-strict=gemoma_strict/filtered_predictions.gff GeMoSeq-strict=gemoseq_strict/filtered_predictions.gff l=false outdir=final&lt;br /&gt;
&lt;br /&gt;
where parameter &amp;lt;code&amp;gt;m&amp;lt;/code&amp;gt; specifies that merged predictions should be annotated with their confidence (high, medium) and &amp;lt;code&amp;gt;l=false&amp;lt;/code&amp;gt; indicates that low-confidence predictions should be excluded from the output. After running the Merge tool, final predictions can be found in &amp;lt;code&amp;gt;final/Merged_Predictions.gff&amp;lt;/code&amp;gt;.&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1216</id>
		<title>GeMoSeq</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1216"/>
		<updated>2025-11-18T16:06:59Z</updated>

		<summary type="html">&lt;p&gt;Grau: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GeMoSeq reconstructs genes and transcript models from mapped RNA-seq reads (in coordinate-sorted BAM format) and reports these in GFF format.&lt;br /&gt;
&lt;br /&gt;
It is intended as a companion for the homology-based gene prediction program [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In a typical workflow, predictions of transcript models may be obtained from GeMoSeq for a collection of BAM files individually and subsequently merged using the [[GeMoMa]] Annotation Filter (GAF). Optionally, homology-based gene prediction may be performed using [[GeMoMa]] and the resulting GFF files may be merged using the [[#Merge|Merge]] tool of GeMoSeq.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Command line tool ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoSeq is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
GeMoSeq and auxiliary tools are packaged in one [http://www.jstacs.de/downloads/GeMoSeq-1.2.3.jar runnable JAR] that may be run from the command line with&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar&lt;br /&gt;
&lt;br /&gt;
which lists the tools available and usage information&lt;br /&gt;
&lt;br /&gt;
 Available tools:&lt;br /&gt;
 &lt;br /&gt;
 	gemoseq - GeMoSeq&lt;br /&gt;
 	predictCDS - Predict CDS from GFF&lt;br /&gt;
 	GAF - GeMoMa Annotation Filter&lt;br /&gt;
 	Analyzer - Analyzer&lt;br /&gt;
 	merge - Merge&lt;br /&gt;
 &lt;br /&gt;
 Syntax: java -jar GeMoSeq-1.2.3.jar &amp;lt;toolname&amp;gt; [&amp;lt;parameter=value&amp;gt; ...]&lt;br /&gt;
 &lt;br /&gt;
 Further info about the tools is given with&lt;br /&gt;
 	java -jar GeMoSeq-1.2.3.jar &amp;lt;toolname&amp;gt; info&lt;br /&gt;
 &lt;br /&gt;
 For tests of individual tools:&lt;br /&gt;
 	java -jar GeMoSeq-1.2.3.jar &amp;lt;toolname&amp;gt; test [&amp;lt;verbose&amp;gt;]&lt;br /&gt;
 &lt;br /&gt;
 Tool parameters are listed with&lt;br /&gt;
 	java -jar GeMoSeq-1.2.3.jar &amp;lt;toolname&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You get a list of the tool parameters by calling GeMoSeq-1.2.3.jar with the corresponding tool name, e.g.,&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq&lt;br /&gt;
&lt;br /&gt;
The meaning of the individual tool parameters is described below.&lt;br /&gt;
For convenience, we also include the [[GeMoMa]] tools Analyzer and GAF.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
&lt;br /&gt;
The source code of GeMoSeq is available from the [https://github.com/Jstacs/Jstacs/tree/master/projects/gemoseq Jstacs GitHub repository].&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
We give examples for applying GeMoSeq to a single sequencing library and for a larger-scale, integrated genome annotation together with GeMoMa [[GeMoSeq-Examples on a separate wiki page]].&lt;br /&gt;
&lt;br /&gt;
== GeMoSeq ==&lt;br /&gt;
&lt;br /&gt;
Prediction of transcript models using GeMoSeq.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoSeq&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna,fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mapped reads (Mapped Reads in BAM format, coordinate sorted, type = bam)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;s&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Stranded (Library strandedness, range={FR_UNSTRANDED, FR_FIRST_STRAND, FR_SECOND_STRAND}, default = FR_UNSTRANDED)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Longest intron length (Length of the longest intron reported, default = 100000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sil&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Shortest intron length (Length of the shortest intron considered, default = 10)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;lr&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Long reads (Long-read mode, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of reads (Minimum number of reads required for an edge in the read graph, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of reads (Minimum fraction of reads relative to adjacent exons that must support an intron in the enumeration, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of intron reads (Minimum number of reads required for an intron, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of intron reads (Minimum fraction of reads relative to adjacent exons for an intron to be considered, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent explained (Percent of abundance that must be explained by transcript models after quantification, default = 0.9)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpg&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per gene (Minimum abundance required for a gene to be reported, default = 40.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpt&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per transcript (Minimum abundance required for a transcript to be reported, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;pa&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent abundance (Minimum relative abundance required for a transcript to be reported, default = 0.05)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sf&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Successive fraction (Factor of the drop in abundance between successive transcript models, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region length (Maximum length of a region considered before it is split, default = 750000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrc&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region coverage (Maximum coverage in a region before reads are down-sampled, valid range = [0.0, Infinity], default = 100.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfgl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum filled gap length (Maximum length of a gap filled by dummy reads, default = 50)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;q&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Quality filter (Minimum mapping quality required for a read to be considered, default = 40)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mpl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gp&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene prefix (Prefix to add to all gene names, default = G)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gnwc&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene names with chromosome (If true, gene names will be constructed as &amp;lt;Gene prefix&amp;gt;&amp;lt;chr&amp;gt;.&amp;lt;geneNumber&amp;gt;. Gene numbers will be assigned successively across all chromosomes., default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;threads&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The number of threads used for the tool, defaults to 1. Currently, I/O of GeMoSeq runs on a single thread and runtime is limited by I/O performance. Hence, running GeMoSeq with a large number of threads is not recommended. On our infrastructure, a number of 6 threads has been the sweet spot.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq g=&amp;amp;lt;Genome&amp;amp;gt; m=&amp;amp;lt;Mapped_reads&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Predict CDS from GFF ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Predict CDS from GFF&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar predictCDS&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna.fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (&amp;quot;GFF or GTF file containing the predicted annotation&amp;quot;, type = gff,gff3,gff.gz,gff3.gz,gtf,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar predictCDS g=&amp;amp;lt;Genome&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Merge ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Merge&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar merge&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa (GeMoMa predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoSeq&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoSeq (GeMoSeq predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mode (, range={intersect, union, intermediate, annotate}, default = intersect)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;intersect&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;union&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;intermediate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoSeq-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoSeq-strict (GeMoSeq predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;annotate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoSeq-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoSeq-strict (GeMoSeq predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Low-confidence (include low-confidence predictions, default = true)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar merge g=&amp;amp;lt;GeMoMa&amp;amp;gt; GeMoSeq=&amp;amp;lt;GeMoSeq&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Version history ==&lt;br /&gt;
&lt;br /&gt;
* Version 1.2.3 (2025/11/11): Renamed the tool to GeMoSeq and improved prediction from long-read data&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.2.1.jar Version 1.2.1] (2025/05/28): improved handling of exceptions in multi-thread mode&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.2.jar Version 1.2] (2025/05/12): changes in the following tools&lt;br /&gt;
** gemorna: fixed a problem where (incomplete) CDS would be predicted in transcripts without any proper stop codon&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.1.jar Version 1.1] (2025/04/15): changes in the following tools&lt;br /&gt;
** merge: include flag if low-confidence predictions will be included in &amp;quot;annotate&amp;quot; mode&lt;br /&gt;
** gemorna: allow to provide custom prefix for gene names and to include the chromosome into the gene names&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.0.jar Version 1.0]: initial version of GeMoRNA&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq-Examples&amp;diff=1215</id>
		<title>GeMoSeq-Examples</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq-Examples&amp;diff=1215"/>
		<updated>2025-11-18T16:05:01Z</updated>

		<summary type="html">&lt;p&gt;Grau: Created page with &amp;quot; == GeMoSeq example run ==  We use a data set for yeast for an example run of GeMoSeq. As input of GeMoSeq, we need a reference genome and a library of reads mapped to that reference. Here, we use the [https://ftp.ncbi.nlm.nih.gov/genomes/all/GCF/000/146/045/GCF_000146045.2_R64/GCF_000146045.2_R64_genomic.fna.gz &amp;#039;&amp;#039;S. cerevisiae&amp;#039;&amp;#039; S288C reference genome R64] available from NCBI. For later evaluation of GeMoSeq prediction results, we also download the [https://ftp.ncbi.nlm...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== GeMoSeq example run ==&lt;br /&gt;
&lt;br /&gt;
We use a data set for yeast for an example run of GeMoSeq. As input of GeMoSeq, we need a reference genome and a library of reads mapped to that reference.&lt;br /&gt;
Here, we use the [https://ftp.ncbi.nlm.nih.gov/genomes/all/GCF/000/146/045/GCF_000146045.2_R64/GCF_000146045.2_R64_genomic.fna.gz &#039;&#039;S. cerevisiae&#039;&#039; S288C reference genome R64] available from NCBI. For later evaluation of GeMoSeq prediction results, we also download the [https://ftp.ncbi.nlm.nih.gov/genomes/all/GCF/000/146/045/GCF_000146045.2_R64/GCF_000146045.2_R64_genomic.gff.gz reference annotation].&lt;br /&gt;
As a sequencing library we use the library with accession SRR8552464 available from the [https://www.ebi.ac.uk/ena/browser/home European Nucleotide archive] or [https://www.ncbi.nlm.nih.gov/sra NCBI Sequence Read Archive].&lt;br /&gt;
&lt;br /&gt;
=== Mapping ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;If you just want to test GeMoSeq, you can skip this step and proceed with the download provided at the end of this section.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Before proceeding with GeMoSeq, these reads first need to be mapped to the reference genome. For yeast and other eukaryotes, we should use a splicing-aware mapping tool. Our current favourite is [https://github.com/alexdobin/STAR STAR] also available from [http://bioconda.github.io/recipes/star/README.html bioconda].&lt;br /&gt;
&lt;br /&gt;
First, we need to index the reference genome with&lt;br /&gt;
 &lt;br /&gt;
 STAR --runMode genomeGenerate --genomeDir yeast_index --genomeFastaFiles GCF_000146045.2_R64_genomic.fna --genomeSAindexNbases 10&lt;br /&gt;
&lt;br /&gt;
Here, we specify &amp;lt;code&amp;gt;--genomeSAindexNbases 10&amp;lt;/code&amp;gt; since the yeast genome is rather small.&lt;br /&gt;
&lt;br /&gt;
Assuming reads have been stored in files &amp;lt;code&amp;gt;SRR8552464_1.fastq.gz&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;SRR8552464_2.fastq.gz&amp;lt;/code&amp;gt;, we run STAR with the following command&lt;br /&gt;
&lt;br /&gt;
 STAR --genomeDir yeast_index --readFilesIn SRR8552464_1.fastq.gz SRR8552464_2.fastq.gz --readFilesCommand gunzip -c --outFileNamePrefix star/SRR8552464 --alignIntronMax 20000 --alignMatesGapMax 20000 --outSAMtype BAM SortedByCoordinate&lt;br /&gt;
&lt;br /&gt;
Here, we limit the maximum intron size to 20000, since larger introns do not exist in yeast, but STAR tends to produce spurios long-split mappings, and let STAR output an already coordinate-sorted BAM file.&lt;br /&gt;
&lt;br /&gt;
For convenience, we provide the resulting mapping file [http://www.jstacs.de/downloads/GeMoSeq/SRR8552464.bam for download].&lt;br /&gt;
&lt;br /&gt;
=== Running GeMoSeq ===&lt;br /&gt;
&lt;br /&gt;
The resulting mapping file and the reference genome used for mapping are input of GeMoSeq in the next step. For the next steps, we assume that the BAM file has been moved to a file &amp;lt;code&amp;gt;SRR8552464.bam&amp;lt;/code&amp;gt; in the working directory (or has been downloaded from the provided link).&lt;br /&gt;
&lt;br /&gt;
We leave most arguments at their defaults, calling GeMoSeq with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq g=GCF_000146045.2_R64_genomic.fna m=SRR8552464.bam s=FR_FIRST_STRAND threads=6 outdir=gemoseq&lt;br /&gt;
&lt;br /&gt;
Here, we use the parameter &amp;lt;code&amp;gt;s=FR_FIRST_STRAND&amp;lt;/code&amp;gt; to specify that this is a stranded library and set the number of threads to 6. The output directory is set to gemoseq.&lt;br /&gt;
At execution, GeMoSeq creates a temporary file with predictions in the working directory, which is later copied to the specified output directory together with a protocol of the GeMoSeq run. In the output directory you find the final predictions as a file &amp;lt;code&amp;gt;Transcript_Predictions.gff3&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Evaluating prediction performance ===&lt;br /&gt;
&lt;br /&gt;
To evaluate the accuracy of GeMoSeq predictions, we compare the GeMoSeq GFF against the yeast reference annotation. For this purpose, the GeMoSeq Jar file provides the [[GeMoMa]] Analyzer tool, which can be run with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar Analyzer t=GCF_000146045.2_R64_genomic.gff p=gemoseq/Transcript_Predictions.gff3&lt;br /&gt;
&lt;br /&gt;
The Analyzer tools outputs several metrics, including CDS sensitivity and precision, which are in this case 72.13 and 90.67, respectively.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Using multiple libraries in combination with homology-based gene prediction ==&lt;br /&gt;
&lt;br /&gt;
We use a [https://bioweb01.qut.edu.au/N.bethamiana/NbLab360.genome.fasta.gz recently published genome] of a &#039;&#039;Nicotiana benthamiana&#039;&#039; lab strain ([https://doi.org/10.1038/s41477-023-01489-8]) to illustrate how GeMoSeq can be used to re-annotate a genome based on multiple sequencing libraries and in combination with the homology-based gene prediction of [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In the [https://doi.org/10.1101/2025.02.27.640589 GeMoSeq preprint], we sampled 319 sequencing libraries for &#039;&#039;N. benthamiana&#039;&#039; for this purpose, and we provide the corresponding [https://www.ebi.ac.uk/ena/browser/home ENA] accession table [http://www.jstacs.de/downloads/GeMoSeq/N_benthamiana_datasets.xlsx for download].&lt;br /&gt;
&lt;br /&gt;
All of these libraries need to be downloaded, mapped to the genome sequence, and strandedness needs to be determined. For mapping, we follow the same procedure as described for the GeMoSeq example run above. To determine strandedness, we use [https://subread.sourceforge.net/featureCounts.html featureCounts] applied to the previous [genome annotation] with flags for either strand orientation and choose the one with the larger number of assigned reads, or unstranded if both yield roughly equal numbers of assigned reads.&lt;br /&gt;
The strand orientation that has been determined by this procedure is listed in column &amp;quot;type&amp;quot; of the [http://www.jstacs.de/downloads/GeMoSeq/N_benthamiana_datasets.xlsx accession table].&lt;br /&gt;
&lt;br /&gt;
=== Applying GeMoSeq to individual libraries ===&lt;br /&gt;
&lt;br /&gt;
Assuming that the mapped reads are stored in directories named by the accession of the sequencing run, namely &amp;lt;code&amp;gt;mappings/&amp;lt;accession&amp;gt;/Aligned.sortedByCoord.out.bam&amp;lt;/code&amp;gt;, e.g., &amp;lt;code&amp;gt;mappings/DRR377420/Aligned.sortedByCoord.out.bam&amp;lt;/code&amp;gt;, we need to call GeMoSeq for each of these mapping files independently. This can be achieved by a (bash) for loop over all BAM files or in parallel on a compute cluster using a scheduling system like slurm.&lt;br /&gt;
&lt;br /&gt;
For instance, library DRR377420 has strand orientation &amp;lt;code&amp;gt;FR_FIRST_STRAND&amp;lt;/code&amp;gt; (see above), and the corresponding GeMoSeq call would be&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq g=NbLab360.genome.fasta m=mappings/DRR377420/Aligned.sortedByCoord.out.bam s=FR_FIRST_STRAND threads=6 outdir=gemoseq/DRR377420&lt;br /&gt;
&lt;br /&gt;
where we, again, choose the name of the output directory based on the accession of the sequencing run. Within that directory, each GeMoSeq run will produce a file &amp;lt;code&amp;gt;Transcript_Predictions.gff3&amp;lt;/code&amp;gt; with the predicted gene models.&lt;br /&gt;
&lt;br /&gt;
After GeMoSeq has been run for all mapping files, the resulting prediction files are located in &amp;lt;code&amp;gt;gemoseq/&amp;lt;accession&amp;gt;/Transcript_Predictions.gff3&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Joining individual predictions ===&lt;br /&gt;
&lt;br /&gt;
To yield a joint GeMoSeq prediction across all libraries, we join the individual predictions using the [[GeMoMa-Docs#GeMoMa_Annotation_Filter GeMoMa Annotation Filter]] (GAF) tool of [[GeMoMa]], which also comes packaged with the GeMoSeq JAR file.&lt;br /&gt;
For future merging with homology-based GeMoMa predictions, we run the GAF tool twice, once with looser and once with stricter filtering criteria.&lt;br /&gt;
&lt;br /&gt;
For the looser filtering, we specify&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar GAF p=DRR377420 g=gemoseq/DRR377420/Transcript_Predictions.gff3 ... p=SRR29507616 g=gemoseq/SRR29507616/Transcript_Predictions.gff3 f=&amp;quot;start==&#039;M&#039; and stop==&#039;*&#039; and sumWeight&amp;gt;7 and (isNaN(tie) or tie==1)&amp;quot; atf=&amp;quot;sumWeight&amp;gt;23&amp;quot; mnotpg=20 tf=true outdir=gemoseq_loose&lt;br /&gt;
&lt;br /&gt;
where &amp;lt;code&amp;gt;...&amp;lt;/code&amp;gt; indicates that the arguments &amp;lt;code&amp;gt;p&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;g&amp;lt;/code&amp;gt; need to be repeated for each of the individual predictions.&lt;br /&gt;
The filtering criteria (parameter &amp;lt;code&amp;gt;f&amp;lt;/code&amp;gt;) specify that each tranferred transcript must have a proper start and stop codon, must appear in more than 7 (of 319) individual predictions and may either be a single-exon transcript (&amp;lt;code&amp;gt;isNaN(tie)&amp;lt;/code&amp;gt;) or have perfect support for all splice sites (&amp;lt;code&amp;gt;tie==1&amp;lt;/code&amp;gt;). The parameter &amp;lt;code&amp;gt;atf&amp;lt;/code&amp;gt; defines that alternative transcripts are only transferred, if they occur in at least 24 of 319 libraries, parameter &amp;lt;code&amp;gt;mnotpg&amp;lt;/code&amp;gt; specifies the maximum number of transcripts per gene, and &amp;lt;code&amp;gt;tf=true&amp;lt;/code&amp;gt; indicates that additional features (i.e., exons + CDS) should be tranferred to the final prediction.&lt;br /&gt;
After the GAF run, the joint predictions are stored in &amp;lt;code&amp;gt;gemoseq_loose/filtered_predictions.gff&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
For the stricter filtering, we use adapted parameters&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar GAF p=DRR377420 g=gemoseq/DRR377420/Transcript_Predictions.gff3 ... p=SRR29507616 g=gemoseq/SRR29507616/Transcript_Predictions.gff3 f=&amp;quot;start==&#039;M&#039; and stop==&#039;*&#039; and sumWeight&amp;gt;30 and (isNaN(tie) or tie==1)&amp;quot; atf=&amp;quot;sumWeight&amp;gt;70&amp;quot; mnotpg=20 tf=true outdir=gemoseq_strict&lt;br /&gt;
&lt;br /&gt;
and obtain joint predictions in &amp;lt;code&amp;gt;gemoseq_strict/filtered_predictions.gff&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Homology-based gene prediction ===&lt;br /&gt;
&lt;br /&gt;
For homology-based gene prediction, we use [[GeMoMa]] for the reference species &#039;&#039;A. thaliana&#039;&#039;, &#039;&#039;N. tabacum&#039;&#039;, &#039;&#039;S. lycopersicum&#039;&#039;, and two previous &#039;&#039;N. benthamiana&#039;&#039; genome versions (1.0.1 and 2.6.1).&lt;br /&gt;
These predictions are also joined using the GAF tool.&lt;br /&gt;
&lt;br /&gt;
For details about using GeMoMa for homology-based gene prediction, please refer to [[GeMoMa-Docs]].&lt;br /&gt;
&lt;br /&gt;
Here, we assume that for the homology-based predictions, we also obtain a loosely and a strictly filtered prediction file as &amp;lt;code&amp;gt;gemoma_loose/filtered_predictions.gff&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;gemoma_strict/filtered_predictions.gff&amp;lt;/code&amp;gt;, respectively.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Merging RNA-seq-based and homology-based predictions ===&lt;br /&gt;
&lt;br /&gt;
We finally merge the four previously obtained prediction files (loose and strict for GeMoSeq and GeMoMa, respectively) using the GeMoSeq Merge tool. We call&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar merge g=gemoma_loose/filtered_predictions.gff GeMoSeq=gemoseq_loose/filtered_predictions.gff m=annotate GeMoMa-strict=gemoma_strict/filtered_predictions.gff GeMoSeq-strict=gemoseq_strict/filtered_predictions.gff l=false outdir=final&lt;br /&gt;
&lt;br /&gt;
where parameter &amp;lt;code&amp;gt;m&amp;lt;/code&amp;gt; specifies that merged predictions should be annotated with their confidence (high, medium) and &amp;lt;code&amp;gt;l=false&amp;lt;/code&amp;gt; indicates that low-confidence predictions should be excluded from the output. After running the Merge tool, final predictions can be found in &amp;lt;code&amp;gt;final/Merged_Predictions.gff&amp;lt;/code&amp;gt;.&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1214</id>
		<title>GeMoSeq</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1214"/>
		<updated>2025-11-11T17:17:19Z</updated>

		<summary type="html">&lt;p&gt;Grau: /* GeMoSeq */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GeMoSeq reconstructs genes and transcript models from mapped RNA-seq reads (in coordinate-sorted BAM format) and reports these in GFF format.&lt;br /&gt;
&lt;br /&gt;
It is intended as a companion for the homology-based gene prediction program [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In a typical workflow, predictions of transcript models may be obtained from GeMoSeq for a collection of BAM files individually and subsequently merged using the [[GeMoMa]] Annotation Filter (GAF). Optionally, homology-based gene prediction may be performed using [[GeMoMa]] and the resulting GFF files may be merged using the [[#Merge|Merge]] tool of GeMoSeq.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Command line tool ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoSeq is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
GeMoSeq and auxiliary tools are packaged in one [http://www.jstacs.de/downloads/GeMoSeq-1.2.3.jar runnable JAR] that may be run from the command line with&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar&lt;br /&gt;
&lt;br /&gt;
which lists the tools available and usage information&lt;br /&gt;
&lt;br /&gt;
 Available tools:&lt;br /&gt;
 &lt;br /&gt;
 	gemoseq - GeMoSeq&lt;br /&gt;
 	predictCDS - Predict CDS from GFF&lt;br /&gt;
 	GAF - GeMoMa Annotation Filter&lt;br /&gt;
 	Analyzer - Analyzer&lt;br /&gt;
 	merge - Merge&lt;br /&gt;
 &lt;br /&gt;
 Syntax: java -jar GeMoSeq-1.2.3.jar &amp;lt;toolname&amp;gt; [&amp;lt;parameter=value&amp;gt; ...]&lt;br /&gt;
 &lt;br /&gt;
 Further info about the tools is given with&lt;br /&gt;
 	java -jar GeMoSeq-1.2.3.jar &amp;lt;toolname&amp;gt; info&lt;br /&gt;
 &lt;br /&gt;
 For tests of individual tools:&lt;br /&gt;
 	java -jar GeMoSeq-1.2.3.jar &amp;lt;toolname&amp;gt; test [&amp;lt;verbose&amp;gt;]&lt;br /&gt;
 &lt;br /&gt;
 Tool parameters are listed with&lt;br /&gt;
 	java -jar GeMoSeq-1.2.3.jar &amp;lt;toolname&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You get a list of the tool parameters by calling GeMoSeq-1.2.3.jar with the corresponding tool name, e.g.,&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq&lt;br /&gt;
&lt;br /&gt;
The meaning of the individual tool parameters is described below.&lt;br /&gt;
For convenience, we also include the [[GeMoMa]] tools Analyzer and GAF.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
&lt;br /&gt;
The source code of GeMoSeq is available from the [https://github.com/Jstacs/Jstacs/tree/master/projects/gemoseq Jstacs GitHub repository].&lt;br /&gt;
&lt;br /&gt;
== GeMoSeq ==&lt;br /&gt;
&lt;br /&gt;
Prediction of transcript models using GeMoSeq.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoSeq&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna,fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mapped reads (Mapped Reads in BAM format, coordinate sorted, type = bam)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;s&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Stranded (Library strandedness, range={FR_UNSTRANDED, FR_FIRST_STRAND, FR_SECOND_STRAND}, default = FR_UNSTRANDED)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Longest intron length (Length of the longest intron reported, default = 100000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sil&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Shortest intron length (Length of the shortest intron considered, default = 10)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;lr&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Long reads (Long-read mode, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of reads (Minimum number of reads required for an edge in the read graph, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of reads (Minimum fraction of reads relative to adjacent exons that must support an intron in the enumeration, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of intron reads (Minimum number of reads required for an intron, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of intron reads (Minimum fraction of reads relative to adjacent exons for an intron to be considered, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent explained (Percent of abundance that must be explained by transcript models after quantification, default = 0.9)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpg&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per gene (Minimum abundance required for a gene to be reported, default = 40.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpt&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per transcript (Minimum abundance required for a transcript to be reported, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;pa&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent abundance (Minimum relative abundance required for a transcript to be reported, default = 0.05)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sf&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Successive fraction (Factor of the drop in abundance between successive transcript models, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region length (Maximum length of a region considered before it is split, default = 750000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrc&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region coverage (Maximum coverage in a region before reads are down-sampled, valid range = [0.0, Infinity], default = 100.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfgl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum filled gap length (Maximum length of a gap filled by dummy reads, default = 50)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;q&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Quality filter (Minimum mapping quality required for a read to be considered, default = 40)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mpl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gp&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene prefix (Prefix to add to all gene names, default = G)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gnwc&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene names with chromosome (If true, gene names will be constructed as &amp;lt;Gene prefix&amp;gt;&amp;lt;chr&amp;gt;.&amp;lt;geneNumber&amp;gt;. Gene numbers will be assigned successively across all chromosomes., default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;threads&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The number of threads used for the tool, defaults to 1. Currently, I/O of GeMoSeq runs on a single thread and runtime is limited by I/O performance. Hence, running GeMoSeq with a large number of threads is not recommended. On our infrastructure, a number of 6 threads has been the sweet spot.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq g=&amp;amp;lt;Genome&amp;amp;gt; m=&amp;amp;lt;Mapped_reads&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Predict CDS from GFF ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Predict CDS from GFF&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar predictCDS&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna.fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (&amp;quot;GFF or GTF file containing the predicted annotation&amp;quot;, type = gff,gff3,gff.gz,gff3.gz,gtf,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar predictCDS g=&amp;amp;lt;Genome&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Merge ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Merge&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar merge&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa (GeMoMa predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoSeq&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoSeq (GeMoSeq predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mode (, range={intersect, union, intermediate, annotate}, default = intersect)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;intersect&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;union&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;intermediate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoSeq-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoSeq-strict (GeMoSeq predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;annotate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoSeq-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoSeq-strict (GeMoSeq predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Low-confidence (include low-confidence predictions, default = true)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar merge g=&amp;amp;lt;GeMoMa&amp;amp;gt; GeMoSeq=&amp;amp;lt;GeMoSeq&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Version history ==&lt;br /&gt;
&lt;br /&gt;
* Version 1.2.3 (2025/11/11): Renamed the tool to GeMoSeq and improved prediction from long-read data&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.2.1.jar Version 1.2.1] (2025/05/28): improved handling of exceptions in multi-thread mode&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.2.jar Version 1.2] (2025/05/12): changes in the following tools&lt;br /&gt;
** gemorna: fixed a problem where (incomplete) CDS would be predicted in transcripts without any proper stop codon&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.1.jar Version 1.1] (2025/04/15): changes in the following tools&lt;br /&gt;
** merge: include flag if low-confidence predictions will be included in &amp;quot;annotate&amp;quot; mode&lt;br /&gt;
** gemorna: allow to provide custom prefix for gene names and to include the chromosome into the gene names&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.0.jar Version 1.0]: initial version of GeMoRNA&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1213</id>
		<title>GeMoSeq</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1213"/>
		<updated>2025-11-11T17:15:04Z</updated>

		<summary type="html">&lt;p&gt;Grau: /* GeMoSeq */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GeMoSeq reconstructs genes and transcript models from mapped RNA-seq reads (in coordinate-sorted BAM format) and reports these in GFF format.&lt;br /&gt;
&lt;br /&gt;
It is intended as a companion for the homology-based gene prediction program [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In a typical workflow, predictions of transcript models may be obtained from GeMoSeq for a collection of BAM files individually and subsequently merged using the [[GeMoMa]] Annotation Filter (GAF). Optionally, homology-based gene prediction may be performed using [[GeMoMa]] and the resulting GFF files may be merged using the [[#Merge|Merge]] tool of GeMoSeq.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Command line tool ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoSeq is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
GeMoSeq and auxiliary tools are packaged in one [http://www.jstacs.de/downloads/GeMoSeq-1.2.3.jar runnable JAR] that may be run from the command line with&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar&lt;br /&gt;
&lt;br /&gt;
which lists the tools available and usage information&lt;br /&gt;
&lt;br /&gt;
 Available tools:&lt;br /&gt;
 &lt;br /&gt;
 	gemoseq - GeMoSeq&lt;br /&gt;
 	predictCDS - Predict CDS from GFF&lt;br /&gt;
 	GAF - GeMoMa Annotation Filter&lt;br /&gt;
 	Analyzer - Analyzer&lt;br /&gt;
 	merge - Merge&lt;br /&gt;
 &lt;br /&gt;
 Syntax: java -jar GeMoSeq-1.2.3.jar &amp;lt;toolname&amp;gt; [&amp;lt;parameter=value&amp;gt; ...]&lt;br /&gt;
 &lt;br /&gt;
 Further info about the tools is given with&lt;br /&gt;
 	java -jar GeMoSeq-1.2.3.jar &amp;lt;toolname&amp;gt; info&lt;br /&gt;
 &lt;br /&gt;
 For tests of individual tools:&lt;br /&gt;
 	java -jar GeMoSeq-1.2.3.jar &amp;lt;toolname&amp;gt; test [&amp;lt;verbose&amp;gt;]&lt;br /&gt;
 &lt;br /&gt;
 Tool parameters are listed with&lt;br /&gt;
 	java -jar GeMoSeq-1.2.3.jar &amp;lt;toolname&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You get a list of the tool parameters by calling GeMoSeq-1.2.3.jar with the corresponding tool name, e.g.,&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq&lt;br /&gt;
&lt;br /&gt;
The meaning of the individual tool parameters is described below.&lt;br /&gt;
For convenience, we also include the [[GeMoMa]] tools Analyzer and GAF.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
&lt;br /&gt;
The source code of GeMoSeq is available from the [https://github.com/Jstacs/Jstacs/tree/master/projects/gemoseq Jstacs GitHub repository].&lt;br /&gt;
&lt;br /&gt;
== GeMoSeq ==&lt;br /&gt;
&lt;br /&gt;
Prediction of transcript models using GeMoSeq.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoSeq&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna,fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mapped reads (Mapped Reads in BAM format, coordinate sorted, type = bam)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;s&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Stranded (Library strandedness, range={FR_UNSTRANDED, FR_FIRST_STRAND, FR_SECOND_STRAND}, default = FR_UNSTRANDED)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Longest intron length (Length of the longest intron reported, default = 100000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sil&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Shortest intron length (Length of the shortest intron considered, default = 10)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;lr&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Long reads (Long-read mode, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of reads (Minimum number of reads required for an edge in the read graph, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of reads (Minimum fraction of reads relative to adjacent exons that must support an intron in the enumeration, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of intron reads (Minimum number of reads required for an intron, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of intron reads (Minimum fraction of reads relative to adjacent exons for an intron to be considered, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent explained (Percent of abundance that must be explained by transcript models after quantification, default = 0.9)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpg&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per gene (Minimum abundance required for a gene to be reported, default = 40.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpt&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per transcript (Minimum abundance required for a transcript to be reported, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;pa&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent abundance (Minimum relative abundance required for a transcript to be reported, default = 0.05)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sf&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Successive fraction (Factor of the drop in abundance between successive transcript models, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region length (Maximum length of a region considered before it is split, default = 750000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrc&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region coverage (Maximum coverage in a region before reads are down-sampled, valid range = [0.0, Infinity], default = 100.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfgl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum filled gap length (Maximum length of a gap filled by dummy reads, default = 50)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;q&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Quality filter (Minimum mapping quality required for a read to be considered, default = 40)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mpl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gp&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene prefix (Prefix to add to all gene names, default = G)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gnwc&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene names with chromosome (If true, gene names will be constructed as &amp;lt;Gene prefix&amp;gt;&amp;lt;chr&amp;gt;.&amp;lt;geneNumber&amp;gt;. Gene numbers will be assigned successively across all chromosomes., default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;threads&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The number of threads used for the tool, defaults to 1&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq g=&amp;amp;lt;Genome&amp;amp;gt; m=&amp;amp;lt;Mapped_reads&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Predict CDS from GFF ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Predict CDS from GFF&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar predictCDS&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna.fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (&amp;quot;GFF or GTF file containing the predicted annotation&amp;quot;, type = gff,gff3,gff.gz,gff3.gz,gtf,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar predictCDS g=&amp;amp;lt;Genome&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Merge ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Merge&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar merge&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa (GeMoMa predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoSeq&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoSeq (GeMoSeq predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mode (, range={intersect, union, intermediate, annotate}, default = intersect)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;intersect&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;union&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;intermediate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoSeq-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoSeq-strict (GeMoSeq predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;annotate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoSeq-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoSeq-strict (GeMoSeq predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Low-confidence (include low-confidence predictions, default = true)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar merge g=&amp;amp;lt;GeMoMa&amp;amp;gt; GeMoSeq=&amp;amp;lt;GeMoSeq&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Version history ==&lt;br /&gt;
&lt;br /&gt;
* Version 1.2.3 (2025/11/11): Renamed the tool to GeMoSeq and improved prediction from long-read data&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.2.1.jar Version 1.2.1] (2025/05/28): improved handling of exceptions in multi-thread mode&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.2.jar Version 1.2] (2025/05/12): changes in the following tools&lt;br /&gt;
** gemorna: fixed a problem where (incomplete) CDS would be predicted in transcripts without any proper stop codon&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.1.jar Version 1.1] (2025/04/15): changes in the following tools&lt;br /&gt;
** merge: include flag if low-confidence predictions will be included in &amp;quot;annotate&amp;quot; mode&lt;br /&gt;
** gemorna: allow to provide custom prefix for gene names and to include the chromosome into the gene names&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.0.jar Version 1.0]: initial version of GeMoRNA&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1212</id>
		<title>GeMoSeq</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1212"/>
		<updated>2025-11-11T16:46:31Z</updated>

		<summary type="html">&lt;p&gt;Grau: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GeMoSeq reconstructs genes and transcript models from mapped RNA-seq reads (in coordinate-sorted BAM format) and reports these in GFF format.&lt;br /&gt;
&lt;br /&gt;
It is intended as a companion for the homology-based gene prediction program [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In a typical workflow, predictions of transcript models may be obtained from GeMoSeq for a collection of BAM files individually and subsequently merged using the [[GeMoMa]] Annotation Filter (GAF). Optionally, homology-based gene prediction may be performed using [[GeMoMa]] and the resulting GFF files may be merged using the [[#Merge|Merge]] tool of GeMoSeq.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Command line tool ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoSeq is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
GeMoSeq and auxiliary tools are packaged in one [http://www.jstacs.de/downloads/GeMoSeq-1.2.3.jar runnable JAR] that may be run from the command line with&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar&lt;br /&gt;
&lt;br /&gt;
which lists the tools available and usage information&lt;br /&gt;
&lt;br /&gt;
 Available tools:&lt;br /&gt;
 &lt;br /&gt;
 	gemoseq - GeMoSeq&lt;br /&gt;
 	predictCDS - Predict CDS from GFF&lt;br /&gt;
 	GAF - GeMoMa Annotation Filter&lt;br /&gt;
 	Analyzer - Analyzer&lt;br /&gt;
 	merge - Merge&lt;br /&gt;
 &lt;br /&gt;
 Syntax: java -jar GeMoSeq-1.2.3.jar &amp;lt;toolname&amp;gt; [&amp;lt;parameter=value&amp;gt; ...]&lt;br /&gt;
 &lt;br /&gt;
 Further info about the tools is given with&lt;br /&gt;
 	java -jar GeMoSeq-1.2.3.jar &amp;lt;toolname&amp;gt; info&lt;br /&gt;
 &lt;br /&gt;
 For tests of individual tools:&lt;br /&gt;
 	java -jar GeMoSeq-1.2.3.jar &amp;lt;toolname&amp;gt; test [&amp;lt;verbose&amp;gt;]&lt;br /&gt;
 &lt;br /&gt;
 Tool parameters are listed with&lt;br /&gt;
 	java -jar GeMoSeq-1.2.3.jar &amp;lt;toolname&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You get a list of the tool parameters by calling GeMoSeq-1.2.3.jar with the corresponding tool name, e.g.,&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq&lt;br /&gt;
&lt;br /&gt;
The meaning of the individual tool parameters is described below.&lt;br /&gt;
For convenience, we also include the [[GeMoMa]] tools Analyzer and GAF.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
&lt;br /&gt;
The source code of GeMoSeq is available from the [https://github.com/Jstacs/Jstacs/tree/master/projects/gemoseq Jstacs GitHub repository].&lt;br /&gt;
&lt;br /&gt;
== GeMoSeq ==&lt;br /&gt;
&lt;br /&gt;
Prediction of transcript models using GeMoSeq.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoSeq&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna,fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mapped reads (Mapped Reads in BAM format, coordinate sorted, type = bam)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;s&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Stranded (Library strandedness, range={FR_UNSTRANDED, FR_FIRST_STRAND, FR_SECOND_STRAND}, default = FR_UNSTRANDED)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Longest intron length (Length of the longest intron reported, default = 100000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sil&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Shortest intron length (Length of the shortest intron considered, default = 10)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;lr&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Long reads (Long-read mode, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of reads (Minimum number of reads required for an edge in the read graph, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of reads (Minimum fraction of reads relative to adjacent exons that must support an intron in the enumeration, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of intron reads (Minimum number of reads required for an intron, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of intron reads (Minimum fraction of reads relative to adjacent exons for an intron to be considered, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent explained (Percent of abundance that must be explained by transcript models after quantification, default = 0.9)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpg&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per gene (Minimum abundance required for a gene to be reported, default = 40.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpt&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per transcript (Minimum abundance required for a transcript to be reported, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;pa&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent abundance (Minimum relative abundance required for a transcript to be reported, default = 0.05)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sf&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Successive fraction (Factor of the drop in abundance between successive transcript models, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region length (Maximum length of a region considered before it is split, default = 750000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfgl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum filled gap length (Maximum length of a gap filled by dummy reads, default = 50)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;q&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Quality filter (Minimum mapping quality required for a read to be considered, default = 40)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mpl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gp&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene prefix (Prefix to add to all gene names, default = G)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gnwc&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene names with chromosome (If true, gene names will be constructed as &amp;lt;Gene prefix&amp;gt;&amp;lt;chr&amp;gt;.&amp;lt;geneNumber&amp;gt;. Gene numbers will be assigned successively across all chromosomes., default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;threads&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The number of threads used for the tool, defaults to 1&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar gemoseq g=&amp;amp;lt;Genome&amp;amp;gt; m=&amp;amp;lt;Mapped_reads&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Predict CDS from GFF ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Predict CDS from GFF&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar predictCDS&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna.fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (&amp;quot;GFF or GTF file containing the predicted annotation&amp;quot;, type = gff,gff3,gff.gz,gff3.gz,gtf,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar predictCDS g=&amp;amp;lt;Genome&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Merge ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Merge&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar merge&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa (GeMoMa predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoSeq&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoSeq (GeMoSeq predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mode (, range={intersect, union, intermediate, annotate}, default = intersect)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;intersect&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;union&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;intermediate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoSeq-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoSeq-strict (GeMoSeq predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;annotate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoSeq-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoSeq-strict (GeMoSeq predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Low-confidence (include low-confidence predictions, default = true)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoSeq-1.2.3.jar merge g=&amp;amp;lt;GeMoMa&amp;amp;gt; GeMoSeq=&amp;amp;lt;GeMoSeq&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Version history ==&lt;br /&gt;
&lt;br /&gt;
* Version 1.2.3 (2025/11/11): Renamed the tool to GeMoSeq and improved prediction from long-read data&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.2.1.jar Version 1.2.1] (2025/05/28): improved handling of exceptions in multi-thread mode&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.2.jar Version 1.2] (2025/05/12): changes in the following tools&lt;br /&gt;
** gemorna: fixed a problem where (incomplete) CDS would be predicted in transcripts without any proper stop codon&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.1.jar Version 1.1] (2025/04/15): changes in the following tools&lt;br /&gt;
** merge: include flag if low-confidence predictions will be included in &amp;quot;annotate&amp;quot; mode&lt;br /&gt;
** gemorna: allow to provide custom prefix for gene names and to include the chromosome into the gene names&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.0.jar Version 1.0]: initial version of GeMoRNA&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoRNA&amp;diff=1211</id>
		<title>GeMoRNA</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoRNA&amp;diff=1211"/>
		<updated>2025-11-11T16:00:50Z</updated>

		<summary type="html">&lt;p&gt;Grau: Grau moved page GeMoRNA to GeMoSeq&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[GeMoSeq]]&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1210</id>
		<title>GeMoSeq</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1210"/>
		<updated>2025-11-11T16:00:50Z</updated>

		<summary type="html">&lt;p&gt;Grau: Grau moved page GeMoRNA to GeMoSeq&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GeMoRNA reconstructs genes and transcript models from mapped RNA-seq reads (in coordinate-sorted BAM format) and reports these in GFF format.&lt;br /&gt;
&lt;br /&gt;
It is intended as a companion for the homology-based gene prediction program [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In a typical workflow, predictions of transcript models may be obtained from GeMoRNA for a collection of BAM files individually and subsequently merged using the [[GeMoMa]] Annotation Filter (GAF). Optionally, homology-based gene prediction may be performed using [[GeMoMa]] and the resulting GFF files may be merged using the [[#Merge|Merge]] tool of GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Command line tool ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
GeMoRNA and auxiliary tools are packaged in one [http://www.jstacs.de/downloads/GeMoRNA-1.2.1.jar runnable JAR] that may be run from the command line with&lt;br /&gt;
 java -jar GeMoRNA-1.2.1.jar&lt;br /&gt;
&lt;br /&gt;
which lists the tools available and usage information&lt;br /&gt;
&lt;br /&gt;
  Available tools:&lt;br /&gt;
 &lt;br /&gt;
 	gemorna - GeMoRNA&lt;br /&gt;
 	predictCDS - Predict CDS from GFF&lt;br /&gt;
 	GAF - GeMoMa Annotation Filter&lt;br /&gt;
 	Analyzer - Analyzer&lt;br /&gt;
 	merge - Merge&lt;br /&gt;
 &lt;br /&gt;
 Syntax: java -jar GeMoRNA-1.2.1.jar &amp;lt;toolname&amp;gt; [&amp;lt;parameter=value&amp;gt; ...]&lt;br /&gt;
 &lt;br /&gt;
 Further info about the tools is given with&lt;br /&gt;
 	java -jar GeMoRNA-1.2.1.jar &amp;lt;toolname&amp;gt; info&lt;br /&gt;
 &lt;br /&gt;
 For tests of individual tools:&lt;br /&gt;
 	java -jar GeMoRNA-1.2.1.jar &amp;lt;toolname&amp;gt; test [&amp;lt;verbose&amp;gt;]&lt;br /&gt;
 &lt;br /&gt;
 Tool parameters are listed with&lt;br /&gt;
 	java -jar GeMoRNA-1.2.1.jar &amp;lt;toolname&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You get a list of the tool parameters by calling GeMoRNA-1.2.1.jar with the corresponding tool name, e.g.,&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.1.jar gemorna&lt;br /&gt;
&lt;br /&gt;
The meaning of the individual tool parameters is described below.&lt;br /&gt;
For convenience, we also include the [[GeMoMa]] tools Analyzer and GAF.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
&lt;br /&gt;
The source code of GeMoRNA is available from the [https://github.com/Jstacs/Jstacs/tree/master/projects/gemorna Jstacs GitHub repository].&lt;br /&gt;
&lt;br /&gt;
== GeMoRNA ==&lt;br /&gt;
&lt;br /&gt;
Prediction of transcript models using GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.1.jar gemorna&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna,fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mapped reads (Mapped Reads in BAM format, coordinate sorted, type = bam)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;s&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Stranded (Library strandedness, range={FR_UNSTRANDED, FR_FIRST_STRAND, FR_SECOND_STRAND}, default = FR_UNSTRANDED)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Longest intron length (Length of the longest intron reported, default = 100000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sil&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Shortest intron length (Length of the shortest intron considered, default = 10)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;lr&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Long reads (Long-read mode, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of reads (Minimum number of reads required for an edge in the read graph, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of reads (Minimum fraction of reads relative to adjacent exons that must support an intron in the enumeration, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of intron reads (Minimum number of reads required for an intron, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of intron reads (Minimum fraction of reads relative to adjacent exons for an intron to be considered, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent explained (Percent of abundance that must be explained by transcript models after quantification, default = 0.9)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpg&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per gene (Minimum abundance required for a gene to be reported, default = 40.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpt&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per transcript (Minimum abundance required for a transcript to be reported, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;pa&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent abundance (Minimum relative abundance required for a transcript to be reported, default = 0.05)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sf&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Successive fraction (Factor of the drop in abundance between successive transcript models, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region length (Maximum length of a region considered before it is split, default = 750000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfgl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum filled gap length (Maximum length of a gap filled by dummy reads, default = 50)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;q&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Quality filter (Minimum mapping quality required for a read to be considered, default = 40)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mpl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gp&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene prefix (Prefix to add to all gene names, default = G)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gnwc&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene names with chromosome (If true, gene names will be constructed as &amp;lt;Gene prefix&amp;gt;&amp;lt;chr&amp;gt;.&amp;lt;geneNumber&amp;gt;. Gene numbers will be assigned successively across all chromosomes., default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;threads&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The number of threads used for the tool, defaults to 1. Currently, I/O of GeMoRNA runs on a single thread and runtime is limited by I/O performance. Hence, running GeMoRNA with a large number of threads is not recommended. On our infrastructure, a number of 6 threads has been the sweet spot.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.1.jar gemorna g=&amp;amp;lt;Genome&amp;amp;gt; m=&amp;amp;lt;Mapped_reads&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Predict CDS from GFF ==&lt;br /&gt;
&lt;br /&gt;
Prediction of CDSs using the longest-ORF heuristic based on an existing GFF or GTF file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Predict CDS from GFF&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.1.jar predictCDS&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna.fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (&amp;quot;GFF or GTF file containing the predicted annotation&amp;quot;, type = gff,gff3,gff.gz,gff3.gz,gtf,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.1.jar predictCDS g=&amp;amp;lt;Genome&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Merge ==&lt;br /&gt;
&lt;br /&gt;
Merging GeMoRNA and GeMoMa predictions.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Merge&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.1.jar merge&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa (GeMoMa predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA (GeMoRNA predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mode (, range={intersect, union, intermediate, annotate}, default = intersect)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;intersect&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;union&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;intermediate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;annotate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Low-confidence (include low-confidence predictions, default = true)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.1.jar merge g=&amp;amp;lt;GeMoMa&amp;amp;gt; GeMoRNA=&amp;amp;lt;GeMoRNA&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Version history ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.0.jar Version 1.0]: initial version of GeMoRNA&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.1.jar Version 1.1] (2025/04/15): changes in the following tools&lt;br /&gt;
** merge: include flag if low-confidence predictions will be included in &amp;quot;annotate&amp;quot; mode&lt;br /&gt;
** gemorna: allow to provide custom prefix for gene names and to include the chromosome into the gene names&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.2.jar Version 1.2] (2025/05/12): changes in the following tools&lt;br /&gt;
** gemorna: fixed a problem where (incomplete) CDS would be predicted in transcripts without any proper stop codon&lt;br /&gt;
* Version 1.2.1 (2025/05/28): improved handling of exceptions in multi-thread mode&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=AnnoTALE&amp;diff=1209</id>
		<title>AnnoTALE</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=AnnoTALE&amp;diff=1209"/>
		<updated>2025-09-03T15:11:14Z</updated>

		<summary type="html">&lt;p&gt;Grau: /* Class Builders */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:AnnoTALE.png|130px|left]]&lt;br /&gt;
Transcription activator-like effectors (TALEs) are virulence factors of plant-pathogenic Xanthomonas spp. that function as gene activators inside plant host cells.&lt;br /&gt;
&lt;br /&gt;
AnnoTALE is a suite of applications for identifying and analysing TALEs in Xanthomonas genomes, for clustering TALEs into classes by their RVD sequences, for assigning novel TALEs to existing classes, for proposing TALE names using a unified nomenclature, and for predicting targets of individual TALEs and TALE classes.&lt;br /&gt;
&lt;br /&gt;
AnnoTALE is available as a JavaFX-based stand-alone application with graphical user interface for interactive analysis sessions. &lt;br /&gt;
In addition, we provide a command line application that may be integrated into other pipelines. &lt;br /&gt;
Both use identical code for the actual analysis, ensuring consistent results between both versions.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you use AnnoTALE, please cite:&lt;br /&gt;
&lt;br /&gt;
Jan Grau, Maik Reschke, Annett Erkes, Jana Streubel, Richard D. Morgan, Geoffrey G. Wilson, Ralf Koebnik and Jens Boch. [http://www.nature.com/articles/srep21077 AnnoTALE: bioinformatics tools for identification, annotation, and nomenclature of TALEs from &#039;&#039;Xanthomonas&#039;&#039; genomic sequences]. Scientific Reports 6:21077, DOI: 10.1038/srep21077, 2016.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For evolution-related studies using the comparative features of AnnoTALE, please also cite:&lt;br /&gt;
&lt;br /&gt;
Annett Erkes, Maik Reschke, Jens Boch, and Jan Grau. [https://doi.org/10.1093/gbe/evx108 Evolution of transcription activator-like effectors in Xanthomonas oryzae]. Genome Biology and Evolution, 9(6):1599–1615, 2017.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you use PrediTALE for predicting TALE targets, please also cite:&lt;br /&gt;
&lt;br /&gt;
Annett Erkes, Stefanie Mücke, Maik Reschke, Jens Boch, and Jan Grau. [https://doi.org/10.1371/journal.pcbi.1007206 PrediTALE: A novel model learned from quantitative data allows for new perspectives on TALE targeting]. PLOS Computational Biology, 15(7):1–31, 2019.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; If you would like to use the unified nomenclature of AnnoTALE in one of your publications including new TALEs or sequenced genomes, please contact us (grau@informatik.uni-halle.de) to organize the inclusion of your TALEs into the official class definition of AnnoTALE and to create stable TALE names that are unique to your TALEs.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== AnnoTALE with GUI ==&lt;br /&gt;
&lt;br /&gt;
[[File:AnnoTALEscreenshot.jpg]]&lt;br /&gt;
&lt;br /&gt;
AnnoTALE is based on the implementation of JavaFX in Java &amp;gt;=8.&lt;br /&gt;
&lt;br /&gt;
We provide AnnoTALE as a runnable JAR file for those with a current version of Java 8 (at least update 45) on their machine.&lt;br /&gt;
&lt;br /&gt;
For user&#039;s convenience, we also provide pre-packaged versions of AnnoTALE, which also include Java in the required version, for Mac OS X and Windows. Each of these versions is available two version with different memory requirements (2GB and 6GB). As long as the main memory (RAM) of your machine is sufficient, we recommend to use the 6GB version of AnnoTALE.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Download ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;AnnoTALE is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* [http://www.jstacs.de/downloads/AnnoTALE-1.5.jar Runnable Jar] (requires installed Java &amp;gt;= 8, update 45), may be run under Linux, macOS and Windows&lt;br /&gt;
* macOS app: [http://www.jstacs.de/downloads/AnnoTALE-1.5.app-2GB.zip 2GB version], [http://www.jstacs.de/downloads/AnnoTALE-1.5.app-6GB.zip 6GB version], ZIP archive containing a macOS app including AnnoTALE and all required Java modules. For running this app, it might be required to explicitly give it running permissions in &amp;quot;System Preferences&amp;quot; -&amp;gt; &amp;quot;Security &amp;amp; Privacy&amp;quot; -&amp;gt; &amp;quot;General&amp;quot;, which should list AnnoTALE after the first (possibly unsuccessful) starting attempt. Approve opening AnnoTALE by clicking on the button &amp;quot;Open Anyway&amp;quot; next to it.&lt;br /&gt;
* Windows installer of AnnoTALE including Java: [http://www.jstacs.de/downloads/AnnoTALE-1.5-2GB.exe 2GB version, 64bit Java], [http://www.jstacs.de/downloads/AnnoTALE-1.5-6GB.exe 6GB version, 64bit Java]&lt;br /&gt;
* Windows version without installer: [http://www.jstacs.de/downloads/AnnoTALE-1.5-win.zip 6GB version, 64bit Java], ZIP archive containing AnnoTALE, all required Java modules, and a Windows batch file. For starting AnnoTALE, double-click AnnoTALE.bat.&lt;br /&gt;
&lt;br /&gt;
=== Source code ===&lt;br /&gt;
&lt;br /&gt;
The AnnoTALE source code is available from [https://github.com/Jstacs/Jstacs/tree/master/projects/xanthogenomes github].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== User Guide ===&lt;br /&gt;
&lt;br /&gt;
We provide an [http://www.jstacs.de/downloads/AnnoTALE-UserGuide-1.0.pdf AnnoTALE User Guide] in PDF format, including a detailed description of all AnnoTALE tools and installation instructions.&lt;br /&gt;
&lt;br /&gt;
== AnnoTALE command line application ==&lt;br /&gt;
&lt;br /&gt;
The AnnoTALE command line application is available as a [http://www.jstacs.de/downloads/AnnoTALEcli-1.5.jar runnable Jar]. For running the program and a quick help, type&lt;br /&gt;
&lt;br /&gt;
 java -jar AnnoTALEcli-1.5.jar&lt;br /&gt;
&lt;br /&gt;
For larger analyes, it might be necessary to increase the memory allocated by the JavaVM using the &amp;lt;code&amp;gt;-Xms&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;-Xmx&amp;lt;/code&amp;gt; parameters, for instance&lt;br /&gt;
 java -Xms512M -Xmx6G -jar AnnoTALEcli-1.5.jar&lt;br /&gt;
&lt;br /&gt;
There is no separate User Guide for the AnnoTALE command line application, but the [http://www.jstacs.de/downloads/AnnoTALE-UserGuide-1.0.pdf User Guide for the GUI version] describes all AnnoTALE tools, their parameters and outputs, and those of the CLI version are identical.&lt;br /&gt;
&lt;br /&gt;
You obtain a list of all AnnoTALE tools by calling&lt;br /&gt;
&lt;br /&gt;
 java -jar AnnoTALEcli-1.5.jar&lt;br /&gt;
&lt;br /&gt;
Output:&lt;br /&gt;
&lt;br /&gt;
 Available tools:&lt;br /&gt;
 &lt;br /&gt;
 	predict - TALE Prediction&lt;br /&gt;
 	analyze - TALE Analysis&lt;br /&gt;
 	build - TALE Class Builder&lt;br /&gt;
 	loadAndView - Load and View TALE Classes&lt;br /&gt;
 	assign - TALE Class Assignment&lt;br /&gt;
 	rename - Rename TALEs in File&lt;br /&gt;
 	targets - Predict and Intersect Targets&lt;br /&gt;
 	presence - TALE Class Presence&lt;br /&gt;
 	repdiff - TALE Repeat Differences&lt;br /&gt;
 	preditale - PrediTALE&lt;br /&gt;
 	dertale - DerTALE&lt;br /&gt;
 &lt;br /&gt;
 Syntax: java -jar AnnoTALEcli-1.5.jar &amp;lt;toolname&amp;gt; [&amp;lt;parameter=value&amp;gt; ...]&lt;br /&gt;
 &lt;br /&gt;
 Further info about the tools is given with&lt;br /&gt;
 	java -jar AnnoTALEcli-1.5.jar &amp;lt;toolname&amp;gt; info&lt;br /&gt;
 &lt;br /&gt;
 Tool parameters are listed with&lt;br /&gt;
 	java -jar AnnoTALEcli-1.5.jar &amp;lt;toolname&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
You get a list of input parameters by calling AnnoTALEcli-1.5.jar with the corresponding tool name, e.g.,&lt;br /&gt;
&lt;br /&gt;
 java -jar AnnoTALEcli-1.5.jar predict&lt;br /&gt;
&lt;br /&gt;
Output:&lt;br /&gt;
&lt;br /&gt;
 At least one parameter has not been set (correctly):&lt;br /&gt;
 &lt;br /&gt;
 Parameters of tool &amp;quot;TALE Prediction&amp;quot; (predict):&lt;br /&gt;
 g - Genome (The input Xanthomonas genome in FastA or Genbank format)	= null&lt;br /&gt;
 s - Strain (The name of the strain, will be used for annotated TALEs, OPTIONAL)	= null&lt;br /&gt;
 outdir - The output directory, defaults to the current working directory (.)	= .&lt;br /&gt;
&lt;br /&gt;
You get a description of each tool by calling AnnoTALEcli-1.5.jar with the corresponding tool name and keyword &amp;quot;info&amp;quot;, e.g.,&lt;br /&gt;
&lt;br /&gt;
 java -jar AnnoTALEcli-1.5.jar predict info&lt;br /&gt;
&lt;br /&gt;
Output:&lt;br /&gt;
 A detailed description of all tools is available in the AnnoTALE User Guide (http://www.jstacs.de/downloads/AnnoTALE-UserGuide-1.0.pdf).&lt;br /&gt;
&lt;br /&gt;
 *TALE Prediction* predicts transcription activator-like effector (TALE) genes in an input sequence, typically a &#039;Xanthomonas&#039; genome.&lt;br /&gt;
 &lt;br /&gt;
 &#039;TALE Prediction&#039; is based in HMMer nucleotide HMM models that describe N-terminus, repeat region, and C-terminus of TALEs.&lt;br /&gt;
 &lt;br /&gt;
 The input &#039;Genome&#039; may be provided in FastA or Genbank format. &lt;br /&gt;
 Optionally, you may provide a strain name that will be used in the temporary TALE names and names of output files.&lt;br /&gt;
 &lt;br /&gt;
 Regardless of the input format, &#039;TALE Prediction&#039; generates output in Genbank format containing the annotations of TALE genes. If the original input has already been a Genbank file, TALE annotations are added to the existing ones.&lt;br /&gt;
 In addition, &#039;TALE Prediction&#039; generates annotations in GFF format, and also outputs the DNA and AS sequences of the predicted TALEs in FastA format.&lt;br /&gt;
 &lt;br /&gt;
 &#039;TALE Prediction&#039; tries hard to make the CDS annotation a proper gene model, starting from a start codon and ending with a Stop. If either start or stop codon are located within the originally predicted region that is homologous to TALE genes, this original hit region is still reported as mRNA.&lt;br /&gt;
 Putative pseudo genes, e.g., with premature stop codons, are marked accordingly.&lt;br /&gt;
 &lt;br /&gt;
 The TALE DNA sequences output of &#039;TALE Prediction&#039; may serve as input of the &#039;TALE Analysis&#039;, &#039;TALE Class Builder&#039;, and &#039;TALE Class Assignment&#039; tools.&lt;br /&gt;
 &lt;br /&gt;
 If you experience problems using &#039;TALE Prediction&#039;, please contact us.&lt;br /&gt;
&lt;br /&gt;
=== Standard pipeline ===&lt;br /&gt;
&lt;br /&gt;
Assuming that your current working directory contains the AnnoTALEcli Jar file, a genome of interest (of a hypothetical &#039;Xoo&#039; strain PXO999 with accesion CP1234567) in a FastA file &amp;quot;genome.fa&amp;quot;, all rice promoters in a FastA file &amp;quot;Rice-promoters.fa&amp;quot;, and a directory &amp;quot;out&amp;quot; designated to hold all output files, a typical AnnoTALE pipeline could look like&lt;br /&gt;
&lt;br /&gt;
 java -jar AnnoTALEcli-1.5.jar predict g=genome.fa outdir=out&lt;br /&gt;
 &lt;br /&gt;
 java -jar AnnoTALEcli-1.5.jar analyze t=out/TALE_DNA_sequences.fasta outdir=out&lt;br /&gt;
 &lt;br /&gt;
 java -jar AnnoTALEcli-1.5.jar loadAndView outdir=out&lt;br /&gt;
 &lt;br /&gt;
 java -jar AnnoTALEcli-1.5.jar assign c=out/Class_builder_download.xml t=out/TALE_DNA_parts.fasta s=&amp;quot;Xoo PXO999&amp;quot; a=&amp;quot;CP1234567&amp;quot; outdir=out&lt;br /&gt;
 &lt;br /&gt;
 java -jar AnnoTALEcli-1.5.jar rename r=out/TALE_names_\(Xoo_PXO999\).tsv i=out/Genbank__TALE_predictions.gb outdir=out&lt;br /&gt;
 &lt;br /&gt;
 java -jar AnnoTALEcli-1.5.jar targets i=Rice-promoters.fa p=&amp;quot;TALEs in class builder&amp;quot; c=out/Augmented_class_builder_\(Xoo_PXO999\).xml outdir=out&lt;br /&gt;
&lt;br /&gt;
Afterwards, you find all output files of all those tools in the directory &amp;quot;out&amp;quot;. The output files and directories are named in analogy to the names in the AnnoTALE GUI version (see [http://www.jstacs.de/downloads/AnnoTALE-UserGuide-1.0.pdf User Guide for the GUI version])&lt;br /&gt;
&lt;br /&gt;
==Version history==&lt;br /&gt;
&lt;br /&gt;
===AnnoTALE===&lt;br /&gt;
&#039;&#039;&#039;Version 1.5&#039;&#039;&#039;&lt;br /&gt;
* new &amp;quot;sensitive&amp;quot; mode of TALE Prediction tool, which may annotate TALEs in a wider range of Xanthomonas strains at the expense of an increased runtime; turned off by default&lt;br /&gt;
* significantly improved speed of TALE Class Assignment tool&lt;br /&gt;
* citation information for individual AnnoTALE tools available under a dedicated button in the GUI version and from the &amp;quot;info&amp;quot; command issued for individual tools in the command line version&lt;br /&gt;
* bugfix for TALE Prediction in rather fragmented genome assemblies, where TALE predictions may extend to the ends of contigs/sequences&lt;br /&gt;
* [http://www.jstacs.de/downloads/AnnoTALE-1.5.jar Runnable Jar] (requires installed Java &amp;gt;= 8, update 45), may be run under Linux, macOS and Windows&lt;br /&gt;
* macOS app: [http://www.jstacs.de/downloads/AnnoTALE-1.5.app-2GB.zip 2GB version], [http://www.jstacs.de/downloads/AnnoTALE-1.5.app-6GB.zip 6GB version], ZIP archive containing a macOS app including AnnoTALE and all required Java modules. For running this app, it might be required to explicitly give it running permissions in &amp;quot;System Preferences&amp;quot; -&amp;gt; &amp;quot;Security &amp;amp; Privacy&amp;quot; -&amp;gt; &amp;quot;General&amp;quot;, which should list AnnoTALE after the first (possibly unsuccessful) starting attempt.&lt;br /&gt;
* Windows installer of AnnoTALE including Java: [http://www.jstacs.de/downloads/AnnoTALE-1.5-2GB.exe 2GB version, 64bit Java], [http://www.jstacs.de/downloads/AnnoTALE-1.5-6GB.exe 6GB version, 64bit Java]&lt;br /&gt;
* Windows version without installer: [http://www.jstacs.de/downloads/AnnoTALE-1.5-win.zip 6GB version, 64bit Java], ZIP archive containing AnnoTALE, all required Java modules, and a Windows batch file. For starting AnnoTALE, double-click AnnoTALE.bat.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Version 1.4.1&#039;&#039;&#039;&lt;br /&gt;
* first version to use the updated Class Builder including a large number of recently sequence strains&lt;br /&gt;
* minor changes to the output of the &#039;Load and View TALE Classes&#039; tool, now including the accessions in the TALE sequence output&lt;br /&gt;
* changes to the Class Builder format to account for the increased size of class hierarchy, which previously resulted in unnecessarily large files&lt;br /&gt;
* 32bit/1GB Windows version no longer included&lt;br /&gt;
* [http://www.jstacs.de/downloads/AnnoTALE-1.4.1.jar Runnable Jar] (requires Java 8, update 45 or greater)&lt;br /&gt;
* Mac-DMG of AnnoTALE including Java: [http://www.jstacs.de/downloads/AnnoTALE-1.4.1-2GB.dmg 2GB version], [http://www.jstacs.de/downloads/AnnoTALE-1.4.1-6GB.dmg 6GB version]&lt;br /&gt;
* Windows installer of AnnoTALE including Java: [http://www.jstacs.de/downloads/AnnoTALE-1.4.1-2GB.exe 2GB version, 64bit Java], [http://www.jstacs.de/downloads/AnnoTALE-1.4.1-6GB.exe 6GB version, 64bit Java]&lt;br /&gt;
* [http://www.jstacs.de/downloads/AnnoTALEcli-1.4.1.jar AnnoTALE 1.4.1 command line application]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Version 1.4:&#039;&#039;&#039;&lt;br /&gt;
* first version containing [[PrediTALE]] and DerTALE tools for target site prediction&lt;br /&gt;
* [http://www.jstacs.de/downloads/AnnoTALE-1.4.jar Runnable Jar] (requires Java 8, update 45 or greater)&lt;br /&gt;
* Mac-DMG of AnnoTALE including Java: [http://www.jstacs.de/downloads/AnnoTALE-1.4-2GB.dmg 2GB version], [http://www.jstacs.de/downloads/AnnoTALE-1.4-6GB.dmg 6GB version]&lt;br /&gt;
* Windows installer of AnnoTALE including Java: [http://www.jstacs.de/downloads/AnnoTALE-1.4-2GB.exe 2GB version, 64bit Java], [http://www.jstacs.de/downloads/AnnoTALE-1.4-6GB.exe 6GB version, 64bit Java]; in addition, we provide a [http://www.jstacs.de/downloads/AnnoTALE-1.4-1GB.exe 1GB version with 32bit Java] for earlier and 32bit versions of Windows. Please use this version only if absolutely necessary, as some tools may not work due to memory restrictions.&lt;br /&gt;
* [http://www.jstacs.de/downloads/AnnoTALEcli-1.4.jar AnnoTALE 1.4 command line application]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Version 1.3:&#039;&#039;&#039;&lt;br /&gt;
* [http://www.jstacs.de/downloads/AnnoTALE-1.3.jar AnnoTALE 1.3 Runnable Jar] (requires Java 8, update 45 or greater)&lt;br /&gt;
* Mac-DMG of AnnoTALE 1.3 including Java: [http://www.jstacs.de/downloads/AnnoTALE-1.3-2GB.dmg AnnoTALE 1.3 2GB version], [http://www.jstacs.de/downloads/AnnoTALE-1.3-6GB.dmg AnnoTALE 1.3 6GB version]&lt;br /&gt;
* Windows installer of AnnoTALE 1.3 including Java: [http://www.jstacs.de/downloads/AnnoTALE-1.3-2GB.exe AnnoTALE 1.3 2GB version, 64bit Java], [http://www.jstacs.de/downloads/AnnoTALE-1.3-6GB.exe AnnoTALE 1.3 6GB version, 64bit Java]; [http://www.jstacs.de/downloads/AnnoTALE-1.3-1GB.exe AnnoTALE 1.3 1GB version with 32bit Java]&lt;br /&gt;
* [http://www.jstacs.de/downloads/AnnoTALEcli-1.3.jar AnnoTALE 1.3 command line application]&lt;br /&gt;
&lt;br /&gt;
Changes:&lt;br /&gt;
* modified format of Class Builder files allowing for faster download using the &amp;quot;Load and View TALE Classes&amp;quot; tool; old Class Builder files can still be loaded&lt;br /&gt;
* &amp;quot;TALE Class Presence&amp;quot; now also outputs a phylogenetic tree of strains based on TALEome similarities&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Version 1.2:&#039;&#039;&#039;&lt;br /&gt;
* [http://www.jstacs.de/downloads/AnnoTALE-1.2.jar AnnoTALE 1.2 Runnable Jar] (requires Java 8, update 45 or greater)&lt;br /&gt;
* Mac-DMG of AnnoTALE 1.2 including Java: [http://www.jstacs.de/downloads/AnnoTALE-1.2-2GB.dmg AnnoTALE 1.2 2GB version], [http://www.jstacs.de/downloads/AnnoTALE-1.2-6GB.dmg AnnoTALE 1.2 6GB version]&lt;br /&gt;
* Windows installer of AnnoTALE 1.2 including Java: [http://www.jstacs.de/downloads/AnnoTALE-1.2-2GB.exe AnnoTALE 1.2 2GB version, 64bit Java], [http://www.jstacs.de/downloads/AnnoTALE-1.2-6GB.exe AnnoTALE 1.2 6GB version, 64bit Java]; [http://www.jstacs.de/downloads/AnnoTALE-1.2-1GB.exe AnnoTALE 1.2 1GB version with 32bit Java]&lt;br /&gt;
* [http://www.jstacs.de/downloads/AnnoTALEcli-1.2.jar AnnoTALE 1.2 command line application]&lt;br /&gt;
&lt;br /&gt;
Changes:&lt;br /&gt;
* Results and loaded files may now be renamed in the GUI by clicking on the corresponding name in the &amp;quot;Data&amp;quot; panel&lt;br /&gt;
* Minor bugfixes and improvements of the GUI (Protocol may be erased, columns in &amp;quot;Data&amp;quot; panel renamed for clarity, consistency of paths in the open/save dialogs under Linux)&lt;br /&gt;
* Two new tools: &amp;quot;TALE Class Presence&amp;quot; and &amp;quot;TALE Repeat differences&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Version 1.1:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* [http://www.jstacs.de/downloads/AnnoTALE-1.1.jar AnnoTALE 1.1 Runnable Jar] (requires Java 8, update 45 or greater)&lt;br /&gt;
* Mac-DMG of AnnoTALE 1.1 including Java: [http://www.jstacs.de/downloads/AnnoTALE-1.1-2GB.dmg AnnoTALE 1.1 2GB version], [http://www.jstacs.de/downloads/AnnoTALE-1.1-6GB.dmg AnnoTALE 1.1 6GB version]&lt;br /&gt;
* Windows installer of AnnoTALE 1.1 including Java: [http://www.jstacs.de/downloads/AnnoTALE-1.1-2GB.exe AnnoTALE 1.1 2GB version, 64bit Java], [http://www.jstacs.de/downloads/AnnoTALE-1.1-6GB.exe AnnoTALE 1.1 6GB version, 64bit Java]; [http://www.jstacs.de/downloads/AnnoTALE-1.1-1GB.exe AnnoTALE 1.1 1GB version with 32bit Java]&lt;br /&gt;
* [http://www.jstacs.de/downloads/AnnoTALEcli-1.1.jar AnnoTALE 1.1 command line application]&lt;br /&gt;
&lt;br /&gt;
Changes:&lt;br /&gt;
* Additional output for the &amp;quot;Load and View TALE Classes&amp;quot; tool&lt;br /&gt;
* &amp;quot;TALE Class Builder&amp;quot; and &amp;quot;TALE Class Assignment&amp;quot; now also accept RVD sequences (separated by dashes) as input. However, this is not recommended and some features (e.g., highlighting of aberrant repeats) will not be available. Only complete TALE DNA sequences will be accepted for inclusion into the official Class Builder.&lt;br /&gt;
* The internal help pages now link to the PDF User Guide&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Version 1.0:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Initial AnnoTALE release&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* [http://www.jstacs.de/downloads/AnnoTALE-1.0.jar AnnoTALE 1.0 Runnable Jar] (requires Java 8, update 45 or greater)&lt;br /&gt;
* Mac-DMG of AnnoTALE including Java: [http://www.jstacs.de/downloads/AnnoTALE-1.0-2GB.dmg AnnoTALE 1.0 2GB version], [http://www.jstacs.de/downloads/AnnoTALE-1.0-6GB.dmg AnnoTALE 1.0 6GB version]&lt;br /&gt;
* Windows installer of AnnoTALE including Java: [http://www.jstacs.de/downloads/AnnoTALE-1.0-2GB.exe AnnoTALE 1.0 2GB version, 64bit Java], [http://www.jstacs.de/downloads/AnnoTALE-1.0-6GB.exe AnnoTALE 1.0 6GB version, 64bit Java]; [http://www.jstacs.de/downloads/AnnoTALE-1.0-1GB.exe AnnoTALE 1.0 1GB version with 32bit Java]&lt;br /&gt;
* [http://www.jstacs.de/downloads/AnnoTALEcli-1.0.jar AnnoTALE 1.0 command line application]&lt;br /&gt;
&lt;br /&gt;
=== Class Builders ===&lt;br /&gt;
&lt;br /&gt;
* [http://www.jstacs.de/downloads/class_definitions_01_09_2025.xml.gz Version 01/09/2025]: used for &amp;quot;Download current definition&amp;quot; in &amp;quot;Load and View TALE Classes&amp;quot; within AnnoTALE version 1.4.1 and later&lt;br /&gt;
* [http://www.jstacs.de/downloads/class_definitions_30_01_2024.xml.gz Version 30/01/2024]: compatible with AnnoTALE version 1.4.1 and later&lt;br /&gt;
* [http://www.jstacs.de/downloads/class_definitions_29_07_2022.xml.gz Version 29/07/2022]: compatible with AnnoTALE version 1.4.1 and later&lt;br /&gt;
* [http://www.jstacs.de/downloads/class_definitions_17_08_2021.xml.gz Version 17/08/2021]: compatible with AnnoTALE version 1.4.1 and later&lt;br /&gt;
* [http://www.jstacs.de/downloads/class_definitions_09_05_2021.xml.gz Version 09/05/2021]: compatible with AnnoTALE version 1.4.1 and later&lt;br /&gt;
* [http://www.jstacs.de/downloads/class_definitions_10_10_2020.xml.gz Version 10/10/2020]: compatible with AnnoTALE version 1.4.1 and later&lt;br /&gt;
* [http://www.jstacs.de/downloads/class_definitions_20_06_2019.xml.gz Version 20/06/2019]: compatible with AnnoTALE version 1.4.1 and later&lt;br /&gt;
* [http://www.jstacs.de/downloads/class_definitions_29_09_2018.xml.gz Version 29/09/2018]: used for &amp;quot;Download current definition&amp;quot; in &amp;quot;Load and View TALE Classes&amp;quot; within AnnoTALE version 1.3 and later&lt;br /&gt;
* [http://www.jstacs.de/downloads/class_definitions_09_03_2017.xml Version 09/03/2017]: used for &amp;quot;Download current definition&amp;quot; in &amp;quot;Load and View TALE Classes&amp;quot; within AnnoTALE version 1.2 and earlier&lt;br /&gt;
* [http://www.jstacs.de/downloads/class_definitions_11_03_2016.xml Version 03/11/2016]&lt;br /&gt;
* [http://www.jstacs.de/downloads/class_definitions_29_01_2016.xml Version 01/29/2016]&lt;br /&gt;
* [http://www.jstacs.de/downloads/class_definitions_19_10.xml Version 10/19/2015]: used in the AnnoTALE publication (Grau &#039;&#039;et al.&#039;&#039;, Sci Rep, 2016)&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1208</id>
		<title>GeMoSeq</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1208"/>
		<updated>2025-05-28T07:00:16Z</updated>

		<summary type="html">&lt;p&gt;Grau: /* Merge */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GeMoRNA reconstructs genes and transcript models from mapped RNA-seq reads (in coordinate-sorted BAM format) and reports these in GFF format.&lt;br /&gt;
&lt;br /&gt;
It is intended as a companion for the homology-based gene prediction program [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In a typical workflow, predictions of transcript models may be obtained from GeMoRNA for a collection of BAM files individually and subsequently merged using the [[GeMoMa]] Annotation Filter (GAF). Optionally, homology-based gene prediction may be performed using [[GeMoMa]] and the resulting GFF files may be merged using the [[#Merge|Merge]] tool of GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Command line tool ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
GeMoRNA and auxiliary tools are packaged in one [http://www.jstacs.de/downloads/GeMoRNA-1.2.1.jar runnable JAR] that may be run from the command line with&lt;br /&gt;
 java -jar GeMoRNA-1.2.1.jar&lt;br /&gt;
&lt;br /&gt;
which lists the tools available and usage information&lt;br /&gt;
&lt;br /&gt;
  Available tools:&lt;br /&gt;
 &lt;br /&gt;
 	gemorna - GeMoRNA&lt;br /&gt;
 	predictCDS - Predict CDS from GFF&lt;br /&gt;
 	GAF - GeMoMa Annotation Filter&lt;br /&gt;
 	Analyzer - Analyzer&lt;br /&gt;
 	merge - Merge&lt;br /&gt;
 &lt;br /&gt;
 Syntax: java -jar GeMoRNA-1.2.1.jar &amp;lt;toolname&amp;gt; [&amp;lt;parameter=value&amp;gt; ...]&lt;br /&gt;
 &lt;br /&gt;
 Further info about the tools is given with&lt;br /&gt;
 	java -jar GeMoRNA-1.2.1.jar &amp;lt;toolname&amp;gt; info&lt;br /&gt;
 &lt;br /&gt;
 For tests of individual tools:&lt;br /&gt;
 	java -jar GeMoRNA-1.2.1.jar &amp;lt;toolname&amp;gt; test [&amp;lt;verbose&amp;gt;]&lt;br /&gt;
 &lt;br /&gt;
 Tool parameters are listed with&lt;br /&gt;
 	java -jar GeMoRNA-1.2.1.jar &amp;lt;toolname&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You get a list of the tool parameters by calling GeMoRNA-1.2.1.jar with the corresponding tool name, e.g.,&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.1.jar gemorna&lt;br /&gt;
&lt;br /&gt;
The meaning of the individual tool parameters is described below.&lt;br /&gt;
For convenience, we also include the [[GeMoMa]] tools Analyzer and GAF.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
&lt;br /&gt;
The source code of GeMoRNA is available from the [https://github.com/Jstacs/Jstacs/tree/master/projects/gemorna Jstacs GitHub repository].&lt;br /&gt;
&lt;br /&gt;
== GeMoRNA ==&lt;br /&gt;
&lt;br /&gt;
Prediction of transcript models using GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.1.jar gemorna&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna,fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mapped reads (Mapped Reads in BAM format, coordinate sorted, type = bam)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;s&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Stranded (Library strandedness, range={FR_UNSTRANDED, FR_FIRST_STRAND, FR_SECOND_STRAND}, default = FR_UNSTRANDED)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Longest intron length (Length of the longest intron reported, default = 100000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sil&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Shortest intron length (Length of the shortest intron considered, default = 10)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;lr&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Long reads (Long-read mode, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of reads (Minimum number of reads required for an edge in the read graph, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of reads (Minimum fraction of reads relative to adjacent exons that must support an intron in the enumeration, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of intron reads (Minimum number of reads required for an intron, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of intron reads (Minimum fraction of reads relative to adjacent exons for an intron to be considered, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent explained (Percent of abundance that must be explained by transcript models after quantification, default = 0.9)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpg&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per gene (Minimum abundance required for a gene to be reported, default = 40.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpt&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per transcript (Minimum abundance required for a transcript to be reported, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;pa&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent abundance (Minimum relative abundance required for a transcript to be reported, default = 0.05)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sf&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Successive fraction (Factor of the drop in abundance between successive transcript models, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region length (Maximum length of a region considered before it is split, default = 750000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfgl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum filled gap length (Maximum length of a gap filled by dummy reads, default = 50)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;q&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Quality filter (Minimum mapping quality required for a read to be considered, default = 40)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mpl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gp&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene prefix (Prefix to add to all gene names, default = G)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gnwc&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene names with chromosome (If true, gene names will be constructed as &amp;lt;Gene prefix&amp;gt;&amp;lt;chr&amp;gt;.&amp;lt;geneNumber&amp;gt;. Gene numbers will be assigned successively across all chromosomes., default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;threads&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The number of threads used for the tool, defaults to 1. Currently, I/O of GeMoRNA runs on a single thread and runtime is limited by I/O performance. Hence, running GeMoRNA with a large number of threads is not recommended. On our infrastructure, a number of 6 threads has been the sweet spot.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.1.jar gemorna g=&amp;amp;lt;Genome&amp;amp;gt; m=&amp;amp;lt;Mapped_reads&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Predict CDS from GFF ==&lt;br /&gt;
&lt;br /&gt;
Prediction of CDSs using the longest-ORF heuristic based on an existing GFF or GTF file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Predict CDS from GFF&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.1.jar predictCDS&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna.fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (&amp;quot;GFF or GTF file containing the predicted annotation&amp;quot;, type = gff,gff3,gff.gz,gff3.gz,gtf,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.1.jar predictCDS g=&amp;amp;lt;Genome&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Merge ==&lt;br /&gt;
&lt;br /&gt;
Merging GeMoRNA and GeMoMa predictions.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Merge&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.1.jar merge&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa (GeMoMa predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA (GeMoRNA predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mode (, range={intersect, union, intermediate, annotate}, default = intersect)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;intersect&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;union&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;intermediate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;annotate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Low-confidence (include low-confidence predictions, default = true)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.1.jar merge g=&amp;amp;lt;GeMoMa&amp;amp;gt; GeMoRNA=&amp;amp;lt;GeMoRNA&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Version history ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.0.jar Version 1.0]: initial version of GeMoRNA&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.1.jar Version 1.1] (2025/04/15): changes in the following tools&lt;br /&gt;
** merge: include flag if low-confidence predictions will be included in &amp;quot;annotate&amp;quot; mode&lt;br /&gt;
** gemorna: allow to provide custom prefix for gene names and to include the chromosome into the gene names&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.2.jar Version 1.2] (2025/05/12): changes in the following tools&lt;br /&gt;
** gemorna: fixed a problem where (incomplete) CDS would be predicted in transcripts without any proper stop codon&lt;br /&gt;
* Version 1.2.1 (2025/05/28): improved handling of exceptions in multi-thread mode&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1207</id>
		<title>GeMoSeq</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1207"/>
		<updated>2025-05-28T07:00:06Z</updated>

		<summary type="html">&lt;p&gt;Grau: /* Predict CDS from GFF */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GeMoRNA reconstructs genes and transcript models from mapped RNA-seq reads (in coordinate-sorted BAM format) and reports these in GFF format.&lt;br /&gt;
&lt;br /&gt;
It is intended as a companion for the homology-based gene prediction program [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In a typical workflow, predictions of transcript models may be obtained from GeMoRNA for a collection of BAM files individually and subsequently merged using the [[GeMoMa]] Annotation Filter (GAF). Optionally, homology-based gene prediction may be performed using [[GeMoMa]] and the resulting GFF files may be merged using the [[#Merge|Merge]] tool of GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Command line tool ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
GeMoRNA and auxiliary tools are packaged in one [http://www.jstacs.de/downloads/GeMoRNA-1.2.1.jar runnable JAR] that may be run from the command line with&lt;br /&gt;
 java -jar GeMoRNA-1.2.1.jar&lt;br /&gt;
&lt;br /&gt;
which lists the tools available and usage information&lt;br /&gt;
&lt;br /&gt;
  Available tools:&lt;br /&gt;
 &lt;br /&gt;
 	gemorna - GeMoRNA&lt;br /&gt;
 	predictCDS - Predict CDS from GFF&lt;br /&gt;
 	GAF - GeMoMa Annotation Filter&lt;br /&gt;
 	Analyzer - Analyzer&lt;br /&gt;
 	merge - Merge&lt;br /&gt;
 &lt;br /&gt;
 Syntax: java -jar GeMoRNA-1.2.1.jar &amp;lt;toolname&amp;gt; [&amp;lt;parameter=value&amp;gt; ...]&lt;br /&gt;
 &lt;br /&gt;
 Further info about the tools is given with&lt;br /&gt;
 	java -jar GeMoRNA-1.2.1.jar &amp;lt;toolname&amp;gt; info&lt;br /&gt;
 &lt;br /&gt;
 For tests of individual tools:&lt;br /&gt;
 	java -jar GeMoRNA-1.2.1.jar &amp;lt;toolname&amp;gt; test [&amp;lt;verbose&amp;gt;]&lt;br /&gt;
 &lt;br /&gt;
 Tool parameters are listed with&lt;br /&gt;
 	java -jar GeMoRNA-1.2.1.jar &amp;lt;toolname&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You get a list of the tool parameters by calling GeMoRNA-1.2.1.jar with the corresponding tool name, e.g.,&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.1.jar gemorna&lt;br /&gt;
&lt;br /&gt;
The meaning of the individual tool parameters is described below.&lt;br /&gt;
For convenience, we also include the [[GeMoMa]] tools Analyzer and GAF.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
&lt;br /&gt;
The source code of GeMoRNA is available from the [https://github.com/Jstacs/Jstacs/tree/master/projects/gemorna Jstacs GitHub repository].&lt;br /&gt;
&lt;br /&gt;
== GeMoRNA ==&lt;br /&gt;
&lt;br /&gt;
Prediction of transcript models using GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.1.jar gemorna&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna,fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mapped reads (Mapped Reads in BAM format, coordinate sorted, type = bam)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;s&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Stranded (Library strandedness, range={FR_UNSTRANDED, FR_FIRST_STRAND, FR_SECOND_STRAND}, default = FR_UNSTRANDED)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Longest intron length (Length of the longest intron reported, default = 100000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sil&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Shortest intron length (Length of the shortest intron considered, default = 10)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;lr&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Long reads (Long-read mode, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of reads (Minimum number of reads required for an edge in the read graph, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of reads (Minimum fraction of reads relative to adjacent exons that must support an intron in the enumeration, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of intron reads (Minimum number of reads required for an intron, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of intron reads (Minimum fraction of reads relative to adjacent exons for an intron to be considered, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent explained (Percent of abundance that must be explained by transcript models after quantification, default = 0.9)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpg&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per gene (Minimum abundance required for a gene to be reported, default = 40.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpt&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per transcript (Minimum abundance required for a transcript to be reported, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;pa&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent abundance (Minimum relative abundance required for a transcript to be reported, default = 0.05)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sf&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Successive fraction (Factor of the drop in abundance between successive transcript models, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region length (Maximum length of a region considered before it is split, default = 750000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfgl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum filled gap length (Maximum length of a gap filled by dummy reads, default = 50)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;q&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Quality filter (Minimum mapping quality required for a read to be considered, default = 40)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mpl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gp&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene prefix (Prefix to add to all gene names, default = G)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gnwc&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene names with chromosome (If true, gene names will be constructed as &amp;lt;Gene prefix&amp;gt;&amp;lt;chr&amp;gt;.&amp;lt;geneNumber&amp;gt;. Gene numbers will be assigned successively across all chromosomes., default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;threads&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The number of threads used for the tool, defaults to 1. Currently, I/O of GeMoRNA runs on a single thread and runtime is limited by I/O performance. Hence, running GeMoRNA with a large number of threads is not recommended. On our infrastructure, a number of 6 threads has been the sweet spot.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.1.jar gemorna g=&amp;amp;lt;Genome&amp;amp;gt; m=&amp;amp;lt;Mapped_reads&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Predict CDS from GFF ==&lt;br /&gt;
&lt;br /&gt;
Prediction of CDSs using the longest-ORF heuristic based on an existing GFF or GTF file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Predict CDS from GFF&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.1.jar predictCDS&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna.fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (&amp;quot;GFF or GTF file containing the predicted annotation&amp;quot;, type = gff,gff3,gff.gz,gff3.gz,gtf,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.1.jar predictCDS g=&amp;amp;lt;Genome&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Merge ==&lt;br /&gt;
&lt;br /&gt;
Merging GeMoRNA and GeMoMa predictions.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Merge&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar merge&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa (GeMoMa predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA (GeMoRNA predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mode (, range={intersect, union, intermediate, annotate}, default = intersect)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;intersect&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;union&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;intermediate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;annotate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Low-confidence (include low-confidence predictions, default = true)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar merge g=&amp;amp;lt;GeMoMa&amp;amp;gt; GeMoRNA=&amp;amp;lt;GeMoRNA&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Version history ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.0.jar Version 1.0]: initial version of GeMoRNA&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.1.jar Version 1.1] (2025/04/15): changes in the following tools&lt;br /&gt;
** merge: include flag if low-confidence predictions will be included in &amp;quot;annotate&amp;quot; mode&lt;br /&gt;
** gemorna: allow to provide custom prefix for gene names and to include the chromosome into the gene names&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.2.jar Version 1.2] (2025/05/12): changes in the following tools&lt;br /&gt;
** gemorna: fixed a problem where (incomplete) CDS would be predicted in transcripts without any proper stop codon&lt;br /&gt;
* Version 1.2.1 (2025/05/28): improved handling of exceptions in multi-thread mode&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1206</id>
		<title>GeMoSeq</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1206"/>
		<updated>2025-05-28T06:59:51Z</updated>

		<summary type="html">&lt;p&gt;Grau: /* GeMoRNA */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GeMoRNA reconstructs genes and transcript models from mapped RNA-seq reads (in coordinate-sorted BAM format) and reports these in GFF format.&lt;br /&gt;
&lt;br /&gt;
It is intended as a companion for the homology-based gene prediction program [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In a typical workflow, predictions of transcript models may be obtained from GeMoRNA for a collection of BAM files individually and subsequently merged using the [[GeMoMa]] Annotation Filter (GAF). Optionally, homology-based gene prediction may be performed using [[GeMoMa]] and the resulting GFF files may be merged using the [[#Merge|Merge]] tool of GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Command line tool ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
GeMoRNA and auxiliary tools are packaged in one [http://www.jstacs.de/downloads/GeMoRNA-1.2.1.jar runnable JAR] that may be run from the command line with&lt;br /&gt;
 java -jar GeMoRNA-1.2.1.jar&lt;br /&gt;
&lt;br /&gt;
which lists the tools available and usage information&lt;br /&gt;
&lt;br /&gt;
  Available tools:&lt;br /&gt;
 &lt;br /&gt;
 	gemorna - GeMoRNA&lt;br /&gt;
 	predictCDS - Predict CDS from GFF&lt;br /&gt;
 	GAF - GeMoMa Annotation Filter&lt;br /&gt;
 	Analyzer - Analyzer&lt;br /&gt;
 	merge - Merge&lt;br /&gt;
 &lt;br /&gt;
 Syntax: java -jar GeMoRNA-1.2.1.jar &amp;lt;toolname&amp;gt; [&amp;lt;parameter=value&amp;gt; ...]&lt;br /&gt;
 &lt;br /&gt;
 Further info about the tools is given with&lt;br /&gt;
 	java -jar GeMoRNA-1.2.1.jar &amp;lt;toolname&amp;gt; info&lt;br /&gt;
 &lt;br /&gt;
 For tests of individual tools:&lt;br /&gt;
 	java -jar GeMoRNA-1.2.1.jar &amp;lt;toolname&amp;gt; test [&amp;lt;verbose&amp;gt;]&lt;br /&gt;
 &lt;br /&gt;
 Tool parameters are listed with&lt;br /&gt;
 	java -jar GeMoRNA-1.2.1.jar &amp;lt;toolname&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You get a list of the tool parameters by calling GeMoRNA-1.2.1.jar with the corresponding tool name, e.g.,&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.1.jar gemorna&lt;br /&gt;
&lt;br /&gt;
The meaning of the individual tool parameters is described below.&lt;br /&gt;
For convenience, we also include the [[GeMoMa]] tools Analyzer and GAF.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
&lt;br /&gt;
The source code of GeMoRNA is available from the [https://github.com/Jstacs/Jstacs/tree/master/projects/gemorna Jstacs GitHub repository].&lt;br /&gt;
&lt;br /&gt;
== GeMoRNA ==&lt;br /&gt;
&lt;br /&gt;
Prediction of transcript models using GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.1.jar gemorna&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna,fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mapped reads (Mapped Reads in BAM format, coordinate sorted, type = bam)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;s&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Stranded (Library strandedness, range={FR_UNSTRANDED, FR_FIRST_STRAND, FR_SECOND_STRAND}, default = FR_UNSTRANDED)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Longest intron length (Length of the longest intron reported, default = 100000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sil&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Shortest intron length (Length of the shortest intron considered, default = 10)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;lr&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Long reads (Long-read mode, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of reads (Minimum number of reads required for an edge in the read graph, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of reads (Minimum fraction of reads relative to adjacent exons that must support an intron in the enumeration, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of intron reads (Minimum number of reads required for an intron, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of intron reads (Minimum fraction of reads relative to adjacent exons for an intron to be considered, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent explained (Percent of abundance that must be explained by transcript models after quantification, default = 0.9)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpg&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per gene (Minimum abundance required for a gene to be reported, default = 40.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpt&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per transcript (Minimum abundance required for a transcript to be reported, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;pa&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent abundance (Minimum relative abundance required for a transcript to be reported, default = 0.05)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sf&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Successive fraction (Factor of the drop in abundance between successive transcript models, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region length (Maximum length of a region considered before it is split, default = 750000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfgl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum filled gap length (Maximum length of a gap filled by dummy reads, default = 50)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;q&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Quality filter (Minimum mapping quality required for a read to be considered, default = 40)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mpl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gp&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene prefix (Prefix to add to all gene names, default = G)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gnwc&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene names with chromosome (If true, gene names will be constructed as &amp;lt;Gene prefix&amp;gt;&amp;lt;chr&amp;gt;.&amp;lt;geneNumber&amp;gt;. Gene numbers will be assigned successively across all chromosomes., default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;threads&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The number of threads used for the tool, defaults to 1. Currently, I/O of GeMoRNA runs on a single thread and runtime is limited by I/O performance. Hence, running GeMoRNA with a large number of threads is not recommended. On our infrastructure, a number of 6 threads has been the sweet spot.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.1.jar gemorna g=&amp;amp;lt;Genome&amp;amp;gt; m=&amp;amp;lt;Mapped_reads&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Predict CDS from GFF ==&lt;br /&gt;
&lt;br /&gt;
Prediction of CDSs using the longest-ORF heuristic based on an existing GFF or GTF file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Predict CDS from GFF&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar predictCDS&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna.fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (&amp;quot;GFF or GTF file containing the predicted annotation&amp;quot;, type = gff,gff3,gff.gz,gff3.gz,gtf,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar predictCDS g=&amp;amp;lt;Genome&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Merge ==&lt;br /&gt;
&lt;br /&gt;
Merging GeMoRNA and GeMoMa predictions.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Merge&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar merge&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa (GeMoMa predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA (GeMoRNA predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mode (, range={intersect, union, intermediate, annotate}, default = intersect)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;intersect&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;union&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;intermediate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;annotate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Low-confidence (include low-confidence predictions, default = true)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar merge g=&amp;amp;lt;GeMoMa&amp;amp;gt; GeMoRNA=&amp;amp;lt;GeMoRNA&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Version history ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.0.jar Version 1.0]: initial version of GeMoRNA&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.1.jar Version 1.1] (2025/04/15): changes in the following tools&lt;br /&gt;
** merge: include flag if low-confidence predictions will be included in &amp;quot;annotate&amp;quot; mode&lt;br /&gt;
** gemorna: allow to provide custom prefix for gene names and to include the chromosome into the gene names&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.2.jar Version 1.2] (2025/05/12): changes in the following tools&lt;br /&gt;
** gemorna: fixed a problem where (incomplete) CDS would be predicted in transcripts without any proper stop codon&lt;br /&gt;
* Version 1.2.1 (2025/05/28): improved handling of exceptions in multi-thread mode&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1205</id>
		<title>GeMoSeq</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1205"/>
		<updated>2025-05-28T06:59:36Z</updated>

		<summary type="html">&lt;p&gt;Grau: /* Command line tool */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GeMoRNA reconstructs genes and transcript models from mapped RNA-seq reads (in coordinate-sorted BAM format) and reports these in GFF format.&lt;br /&gt;
&lt;br /&gt;
It is intended as a companion for the homology-based gene prediction program [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In a typical workflow, predictions of transcript models may be obtained from GeMoRNA for a collection of BAM files individually and subsequently merged using the [[GeMoMa]] Annotation Filter (GAF). Optionally, homology-based gene prediction may be performed using [[GeMoMa]] and the resulting GFF files may be merged using the [[#Merge|Merge]] tool of GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Command line tool ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
GeMoRNA and auxiliary tools are packaged in one [http://www.jstacs.de/downloads/GeMoRNA-1.2.1.jar runnable JAR] that may be run from the command line with&lt;br /&gt;
 java -jar GeMoRNA-1.2.1.jar&lt;br /&gt;
&lt;br /&gt;
which lists the tools available and usage information&lt;br /&gt;
&lt;br /&gt;
  Available tools:&lt;br /&gt;
 &lt;br /&gt;
 	gemorna - GeMoRNA&lt;br /&gt;
 	predictCDS - Predict CDS from GFF&lt;br /&gt;
 	GAF - GeMoMa Annotation Filter&lt;br /&gt;
 	Analyzer - Analyzer&lt;br /&gt;
 	merge - Merge&lt;br /&gt;
 &lt;br /&gt;
 Syntax: java -jar GeMoRNA-1.2.1.jar &amp;lt;toolname&amp;gt; [&amp;lt;parameter=value&amp;gt; ...]&lt;br /&gt;
 &lt;br /&gt;
 Further info about the tools is given with&lt;br /&gt;
 	java -jar GeMoRNA-1.2.1.jar &amp;lt;toolname&amp;gt; info&lt;br /&gt;
 &lt;br /&gt;
 For tests of individual tools:&lt;br /&gt;
 	java -jar GeMoRNA-1.2.1.jar &amp;lt;toolname&amp;gt; test [&amp;lt;verbose&amp;gt;]&lt;br /&gt;
 &lt;br /&gt;
 Tool parameters are listed with&lt;br /&gt;
 	java -jar GeMoRNA-1.2.1.jar &amp;lt;toolname&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You get a list of the tool parameters by calling GeMoRNA-1.2.1.jar with the corresponding tool name, e.g.,&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.1.jar gemorna&lt;br /&gt;
&lt;br /&gt;
The meaning of the individual tool parameters is described below.&lt;br /&gt;
For convenience, we also include the [[GeMoMa]] tools Analyzer and GAF.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
&lt;br /&gt;
The source code of GeMoRNA is available from the [https://github.com/Jstacs/Jstacs/tree/master/projects/gemorna Jstacs GitHub repository].&lt;br /&gt;
&lt;br /&gt;
== GeMoRNA ==&lt;br /&gt;
&lt;br /&gt;
Prediction of transcript models using GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar gemorna&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna,fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mapped reads (Mapped Reads in BAM format, coordinate sorted, type = bam)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;s&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Stranded (Library strandedness, range={FR_UNSTRANDED, FR_FIRST_STRAND, FR_SECOND_STRAND}, default = FR_UNSTRANDED)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Longest intron length (Length of the longest intron reported, default = 100000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sil&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Shortest intron length (Length of the shortest intron considered, default = 10)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;lr&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Long reads (Long-read mode, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of reads (Minimum number of reads required for an edge in the read graph, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of reads (Minimum fraction of reads relative to adjacent exons that must support an intron in the enumeration, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of intron reads (Minimum number of reads required for an intron, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of intron reads (Minimum fraction of reads relative to adjacent exons for an intron to be considered, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent explained (Percent of abundance that must be explained by transcript models after quantification, default = 0.9)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpg&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per gene (Minimum abundance required for a gene to be reported, default = 40.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpt&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per transcript (Minimum abundance required for a transcript to be reported, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;pa&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent abundance (Minimum relative abundance required for a transcript to be reported, default = 0.05)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sf&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Successive fraction (Factor of the drop in abundance between successive transcript models, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region length (Maximum length of a region considered before it is split, default = 750000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfgl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum filled gap length (Maximum length of a gap filled by dummy reads, default = 50)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;q&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Quality filter (Minimum mapping quality required for a read to be considered, default = 40)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mpl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gp&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene prefix (Prefix to add to all gene names, default = G)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gnwc&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene names with chromosome (If true, gene names will be constructed as &amp;lt;Gene prefix&amp;gt;&amp;lt;chr&amp;gt;.&amp;lt;geneNumber&amp;gt;. Gene numbers will be assigned successively across all chromosomes., default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;threads&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The number of threads used for the tool, defaults to 1. Currently, I/O of GeMoRNA runs on a single thread and runtime is limited by I/O performance. Hence, running GeMoRNA with a large number of threads is not recommended. On our infrastructure, a number of 6 threads has been the sweet spot.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar gemorna g=&amp;amp;lt;Genome&amp;amp;gt; m=&amp;amp;lt;Mapped_reads&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Predict CDS from GFF ==&lt;br /&gt;
&lt;br /&gt;
Prediction of CDSs using the longest-ORF heuristic based on an existing GFF or GTF file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Predict CDS from GFF&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar predictCDS&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna.fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (&amp;quot;GFF or GTF file containing the predicted annotation&amp;quot;, type = gff,gff3,gff.gz,gff3.gz,gtf,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar predictCDS g=&amp;amp;lt;Genome&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Merge ==&lt;br /&gt;
&lt;br /&gt;
Merging GeMoRNA and GeMoMa predictions.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Merge&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar merge&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa (GeMoMa predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA (GeMoRNA predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mode (, range={intersect, union, intermediate, annotate}, default = intersect)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;intersect&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;union&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;intermediate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;annotate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Low-confidence (include low-confidence predictions, default = true)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar merge g=&amp;amp;lt;GeMoMa&amp;amp;gt; GeMoRNA=&amp;amp;lt;GeMoRNA&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Version history ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.0.jar Version 1.0]: initial version of GeMoRNA&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.1.jar Version 1.1] (2025/04/15): changes in the following tools&lt;br /&gt;
** merge: include flag if low-confidence predictions will be included in &amp;quot;annotate&amp;quot; mode&lt;br /&gt;
** gemorna: allow to provide custom prefix for gene names and to include the chromosome into the gene names&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.2.jar Version 1.2] (2025/05/12): changes in the following tools&lt;br /&gt;
** gemorna: fixed a problem where (incomplete) CDS would be predicted in transcripts without any proper stop codon&lt;br /&gt;
* Version 1.2.1 (2025/05/28): improved handling of exceptions in multi-thread mode&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1204</id>
		<title>GeMoSeq</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1204"/>
		<updated>2025-05-28T06:58:43Z</updated>

		<summary type="html">&lt;p&gt;Grau: /* Version history */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GeMoRNA reconstructs genes and transcript models from mapped RNA-seq reads (in coordinate-sorted BAM format) and reports these in GFF format.&lt;br /&gt;
&lt;br /&gt;
It is intended as a companion for the homology-based gene prediction program [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In a typical workflow, predictions of transcript models may be obtained from GeMoRNA for a collection of BAM files individually and subsequently merged using the [[GeMoMa]] Annotation Filter (GAF). Optionally, homology-based gene prediction may be performed using [[GeMoMa]] and the resulting GFF files may be merged using the [[#Merge|Merge]] tool of GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Command line tool ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
GeMoRNA and auxiliary tools are packaged in one [http://www.jstacs.de/downloads/GeMoRNA-1.2.jar runnable JAR] that may be run from the command line with&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar&lt;br /&gt;
&lt;br /&gt;
which lists the tools available and usage information&lt;br /&gt;
&lt;br /&gt;
  Available tools:&lt;br /&gt;
 &lt;br /&gt;
 	gemorna - GeMoRNA&lt;br /&gt;
 	predictCDS - Predict CDS from GFF&lt;br /&gt;
 	GAF - GeMoMa Annotation Filter&lt;br /&gt;
 	Analyzer - Analyzer&lt;br /&gt;
 	merge - Merge&lt;br /&gt;
 &lt;br /&gt;
 Syntax: java -jar GeMoRNA-1.2.jar &amp;lt;toolname&amp;gt; [&amp;lt;parameter=value&amp;gt; ...]&lt;br /&gt;
 &lt;br /&gt;
 Further info about the tools is given with&lt;br /&gt;
 	java -jar GeMoRNA-1.2.jar &amp;lt;toolname&amp;gt; info&lt;br /&gt;
 &lt;br /&gt;
 For tests of individual tools:&lt;br /&gt;
 	java -jar GeMoRNA-1.2.jar &amp;lt;toolname&amp;gt; test [&amp;lt;verbose&amp;gt;]&lt;br /&gt;
 &lt;br /&gt;
 Tool parameters are listed with&lt;br /&gt;
 	java -jar GeMoRNA-1.2.jar &amp;lt;toolname&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You get a list of the tool parameters by calling GeMoRNA-1.2.jar with the corresponding tool name, e.g.,&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar gemorna&lt;br /&gt;
&lt;br /&gt;
The meaning of the individual tool parameters is described below.&lt;br /&gt;
For convenience, we also include the [[GeMoMa]] tools Analyzer and GAF.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
&lt;br /&gt;
The source code of GeMoRNA is available from the [https://github.com/Jstacs/Jstacs/tree/master/projects/gemorna Jstacs GitHub repository].&lt;br /&gt;
&lt;br /&gt;
== GeMoRNA ==&lt;br /&gt;
&lt;br /&gt;
Prediction of transcript models using GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar gemorna&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna,fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mapped reads (Mapped Reads in BAM format, coordinate sorted, type = bam)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;s&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Stranded (Library strandedness, range={FR_UNSTRANDED, FR_FIRST_STRAND, FR_SECOND_STRAND}, default = FR_UNSTRANDED)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Longest intron length (Length of the longest intron reported, default = 100000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sil&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Shortest intron length (Length of the shortest intron considered, default = 10)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;lr&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Long reads (Long-read mode, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of reads (Minimum number of reads required for an edge in the read graph, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of reads (Minimum fraction of reads relative to adjacent exons that must support an intron in the enumeration, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of intron reads (Minimum number of reads required for an intron, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of intron reads (Minimum fraction of reads relative to adjacent exons for an intron to be considered, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent explained (Percent of abundance that must be explained by transcript models after quantification, default = 0.9)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpg&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per gene (Minimum abundance required for a gene to be reported, default = 40.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpt&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per transcript (Minimum abundance required for a transcript to be reported, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;pa&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent abundance (Minimum relative abundance required for a transcript to be reported, default = 0.05)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sf&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Successive fraction (Factor of the drop in abundance between successive transcript models, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region length (Maximum length of a region considered before it is split, default = 750000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfgl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum filled gap length (Maximum length of a gap filled by dummy reads, default = 50)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;q&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Quality filter (Minimum mapping quality required for a read to be considered, default = 40)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mpl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gp&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene prefix (Prefix to add to all gene names, default = G)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gnwc&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene names with chromosome (If true, gene names will be constructed as &amp;lt;Gene prefix&amp;gt;&amp;lt;chr&amp;gt;.&amp;lt;geneNumber&amp;gt;. Gene numbers will be assigned successively across all chromosomes., default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;threads&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The number of threads used for the tool, defaults to 1. Currently, I/O of GeMoRNA runs on a single thread and runtime is limited by I/O performance. Hence, running GeMoRNA with a large number of threads is not recommended. On our infrastructure, a number of 6 threads has been the sweet spot.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar gemorna g=&amp;amp;lt;Genome&amp;amp;gt; m=&amp;amp;lt;Mapped_reads&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Predict CDS from GFF ==&lt;br /&gt;
&lt;br /&gt;
Prediction of CDSs using the longest-ORF heuristic based on an existing GFF or GTF file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Predict CDS from GFF&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar predictCDS&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna.fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (&amp;quot;GFF or GTF file containing the predicted annotation&amp;quot;, type = gff,gff3,gff.gz,gff3.gz,gtf,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar predictCDS g=&amp;amp;lt;Genome&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Merge ==&lt;br /&gt;
&lt;br /&gt;
Merging GeMoRNA and GeMoMa predictions.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Merge&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar merge&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa (GeMoMa predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA (GeMoRNA predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mode (, range={intersect, union, intermediate, annotate}, default = intersect)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;intersect&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;union&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;intermediate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;annotate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Low-confidence (include low-confidence predictions, default = true)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar merge g=&amp;amp;lt;GeMoMa&amp;amp;gt; GeMoRNA=&amp;amp;lt;GeMoRNA&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Version history ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.0.jar Version 1.0]: initial version of GeMoRNA&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.1.jar Version 1.1] (2025/04/15): changes in the following tools&lt;br /&gt;
** merge: include flag if low-confidence predictions will be included in &amp;quot;annotate&amp;quot; mode&lt;br /&gt;
** gemorna: allow to provide custom prefix for gene names and to include the chromosome into the gene names&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.2.jar Version 1.2] (2025/05/12): changes in the following tools&lt;br /&gt;
** gemorna: fixed a problem where (incomplete) CDS would be predicted in transcripts without any proper stop codon&lt;br /&gt;
* Version 1.2.1 (2025/05/28): improved handling of exceptions in multi-thread mode&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1203</id>
		<title>GeMoSeq</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1203"/>
		<updated>2025-05-12T15:02:50Z</updated>

		<summary type="html">&lt;p&gt;Grau: /* Version history */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GeMoRNA reconstructs genes and transcript models from mapped RNA-seq reads (in coordinate-sorted BAM format) and reports these in GFF format.&lt;br /&gt;
&lt;br /&gt;
It is intended as a companion for the homology-based gene prediction program [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In a typical workflow, predictions of transcript models may be obtained from GeMoRNA for a collection of BAM files individually and subsequently merged using the [[GeMoMa]] Annotation Filter (GAF). Optionally, homology-based gene prediction may be performed using [[GeMoMa]] and the resulting GFF files may be merged using the [[#Merge|Merge]] tool of GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Command line tool ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
GeMoRNA and auxiliary tools are packaged in one [http://www.jstacs.de/downloads/GeMoRNA-1.2.jar runnable JAR] that may be run from the command line with&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar&lt;br /&gt;
&lt;br /&gt;
which lists the tools available and usage information&lt;br /&gt;
&lt;br /&gt;
  Available tools:&lt;br /&gt;
 &lt;br /&gt;
 	gemorna - GeMoRNA&lt;br /&gt;
 	predictCDS - Predict CDS from GFF&lt;br /&gt;
 	GAF - GeMoMa Annotation Filter&lt;br /&gt;
 	Analyzer - Analyzer&lt;br /&gt;
 	merge - Merge&lt;br /&gt;
 &lt;br /&gt;
 Syntax: java -jar GeMoRNA-1.2.jar &amp;lt;toolname&amp;gt; [&amp;lt;parameter=value&amp;gt; ...]&lt;br /&gt;
 &lt;br /&gt;
 Further info about the tools is given with&lt;br /&gt;
 	java -jar GeMoRNA-1.2.jar &amp;lt;toolname&amp;gt; info&lt;br /&gt;
 &lt;br /&gt;
 For tests of individual tools:&lt;br /&gt;
 	java -jar GeMoRNA-1.2.jar &amp;lt;toolname&amp;gt; test [&amp;lt;verbose&amp;gt;]&lt;br /&gt;
 &lt;br /&gt;
 Tool parameters are listed with&lt;br /&gt;
 	java -jar GeMoRNA-1.2.jar &amp;lt;toolname&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You get a list of the tool parameters by calling GeMoRNA-1.2.jar with the corresponding tool name, e.g.,&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar gemorna&lt;br /&gt;
&lt;br /&gt;
The meaning of the individual tool parameters is described below.&lt;br /&gt;
For convenience, we also include the [[GeMoMa]] tools Analyzer and GAF.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
&lt;br /&gt;
The source code of GeMoRNA is available from the [https://github.com/Jstacs/Jstacs/tree/master/projects/gemorna Jstacs GitHub repository].&lt;br /&gt;
&lt;br /&gt;
== GeMoRNA ==&lt;br /&gt;
&lt;br /&gt;
Prediction of transcript models using GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar gemorna&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna,fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mapped reads (Mapped Reads in BAM format, coordinate sorted, type = bam)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;s&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Stranded (Library strandedness, range={FR_UNSTRANDED, FR_FIRST_STRAND, FR_SECOND_STRAND}, default = FR_UNSTRANDED)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Longest intron length (Length of the longest intron reported, default = 100000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sil&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Shortest intron length (Length of the shortest intron considered, default = 10)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;lr&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Long reads (Long-read mode, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of reads (Minimum number of reads required for an edge in the read graph, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of reads (Minimum fraction of reads relative to adjacent exons that must support an intron in the enumeration, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of intron reads (Minimum number of reads required for an intron, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of intron reads (Minimum fraction of reads relative to adjacent exons for an intron to be considered, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent explained (Percent of abundance that must be explained by transcript models after quantification, default = 0.9)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpg&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per gene (Minimum abundance required for a gene to be reported, default = 40.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpt&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per transcript (Minimum abundance required for a transcript to be reported, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;pa&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent abundance (Minimum relative abundance required for a transcript to be reported, default = 0.05)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sf&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Successive fraction (Factor of the drop in abundance between successive transcript models, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region length (Maximum length of a region considered before it is split, default = 750000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfgl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum filled gap length (Maximum length of a gap filled by dummy reads, default = 50)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;q&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Quality filter (Minimum mapping quality required for a read to be considered, default = 40)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mpl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gp&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene prefix (Prefix to add to all gene names, default = G)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gnwc&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene names with chromosome (If true, gene names will be constructed as &amp;lt;Gene prefix&amp;gt;&amp;lt;chr&amp;gt;.&amp;lt;geneNumber&amp;gt;. Gene numbers will be assigned successively across all chromosomes., default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;threads&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The number of threads used for the tool, defaults to 1. Currently, I/O of GeMoRNA runs on a single thread and runtime is limited by I/O performance. Hence, running GeMoRNA with a large number of threads is not recommended. On our infrastructure, a number of 6 threads has been the sweet spot.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar gemorna g=&amp;amp;lt;Genome&amp;amp;gt; m=&amp;amp;lt;Mapped_reads&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Predict CDS from GFF ==&lt;br /&gt;
&lt;br /&gt;
Prediction of CDSs using the longest-ORF heuristic based on an existing GFF or GTF file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Predict CDS from GFF&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar predictCDS&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna.fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (&amp;quot;GFF or GTF file containing the predicted annotation&amp;quot;, type = gff,gff3,gff.gz,gff3.gz,gtf,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar predictCDS g=&amp;amp;lt;Genome&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Merge ==&lt;br /&gt;
&lt;br /&gt;
Merging GeMoRNA and GeMoMa predictions.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Merge&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar merge&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa (GeMoMa predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA (GeMoRNA predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mode (, range={intersect, union, intermediate, annotate}, default = intersect)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;intersect&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;union&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;intermediate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;annotate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Low-confidence (include low-confidence predictions, default = true)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar merge g=&amp;amp;lt;GeMoMa&amp;amp;gt; GeMoRNA=&amp;amp;lt;GeMoRNA&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Version history ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.0.jar Version 1.0]: initial version of GeMoRNA&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.1.jar Version 1.1] (2025/04/15): changes in the following tools&lt;br /&gt;
** merge: include flag if low-confidence predictions will be included in &amp;quot;annotate&amp;quot; mode&lt;br /&gt;
** gemorna: allow to provide custom prefix for gene names and to include the chromosome into the gene names&lt;br /&gt;
* Version 1.2 (2025/05/12): changes in the following tools&lt;br /&gt;
** gemorna: fixed a problem where (incomplete) CDS would be predicted in transcripts without any proper stop codon&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1202</id>
		<title>GeMoSeq</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1202"/>
		<updated>2025-05-12T14:59:18Z</updated>

		<summary type="html">&lt;p&gt;Grau: /* Merge */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GeMoRNA reconstructs genes and transcript models from mapped RNA-seq reads (in coordinate-sorted BAM format) and reports these in GFF format.&lt;br /&gt;
&lt;br /&gt;
It is intended as a companion for the homology-based gene prediction program [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In a typical workflow, predictions of transcript models may be obtained from GeMoRNA for a collection of BAM files individually and subsequently merged using the [[GeMoMa]] Annotation Filter (GAF). Optionally, homology-based gene prediction may be performed using [[GeMoMa]] and the resulting GFF files may be merged using the [[#Merge|Merge]] tool of GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Command line tool ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
GeMoRNA and auxiliary tools are packaged in one [http://www.jstacs.de/downloads/GeMoRNA-1.2.jar runnable JAR] that may be run from the command line with&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar&lt;br /&gt;
&lt;br /&gt;
which lists the tools available and usage information&lt;br /&gt;
&lt;br /&gt;
  Available tools:&lt;br /&gt;
 &lt;br /&gt;
 	gemorna - GeMoRNA&lt;br /&gt;
 	predictCDS - Predict CDS from GFF&lt;br /&gt;
 	GAF - GeMoMa Annotation Filter&lt;br /&gt;
 	Analyzer - Analyzer&lt;br /&gt;
 	merge - Merge&lt;br /&gt;
 &lt;br /&gt;
 Syntax: java -jar GeMoRNA-1.2.jar &amp;lt;toolname&amp;gt; [&amp;lt;parameter=value&amp;gt; ...]&lt;br /&gt;
 &lt;br /&gt;
 Further info about the tools is given with&lt;br /&gt;
 	java -jar GeMoRNA-1.2.jar &amp;lt;toolname&amp;gt; info&lt;br /&gt;
 &lt;br /&gt;
 For tests of individual tools:&lt;br /&gt;
 	java -jar GeMoRNA-1.2.jar &amp;lt;toolname&amp;gt; test [&amp;lt;verbose&amp;gt;]&lt;br /&gt;
 &lt;br /&gt;
 Tool parameters are listed with&lt;br /&gt;
 	java -jar GeMoRNA-1.2.jar &amp;lt;toolname&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You get a list of the tool parameters by calling GeMoRNA-1.2.jar with the corresponding tool name, e.g.,&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar gemorna&lt;br /&gt;
&lt;br /&gt;
The meaning of the individual tool parameters is described below.&lt;br /&gt;
For convenience, we also include the [[GeMoMa]] tools Analyzer and GAF.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
&lt;br /&gt;
The source code of GeMoRNA is available from the [https://github.com/Jstacs/Jstacs/tree/master/projects/gemorna Jstacs GitHub repository].&lt;br /&gt;
&lt;br /&gt;
== GeMoRNA ==&lt;br /&gt;
&lt;br /&gt;
Prediction of transcript models using GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar gemorna&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna,fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mapped reads (Mapped Reads in BAM format, coordinate sorted, type = bam)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;s&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Stranded (Library strandedness, range={FR_UNSTRANDED, FR_FIRST_STRAND, FR_SECOND_STRAND}, default = FR_UNSTRANDED)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Longest intron length (Length of the longest intron reported, default = 100000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sil&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Shortest intron length (Length of the shortest intron considered, default = 10)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;lr&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Long reads (Long-read mode, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of reads (Minimum number of reads required for an edge in the read graph, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of reads (Minimum fraction of reads relative to adjacent exons that must support an intron in the enumeration, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of intron reads (Minimum number of reads required for an intron, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of intron reads (Minimum fraction of reads relative to adjacent exons for an intron to be considered, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent explained (Percent of abundance that must be explained by transcript models after quantification, default = 0.9)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpg&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per gene (Minimum abundance required for a gene to be reported, default = 40.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpt&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per transcript (Minimum abundance required for a transcript to be reported, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;pa&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent abundance (Minimum relative abundance required for a transcript to be reported, default = 0.05)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sf&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Successive fraction (Factor of the drop in abundance between successive transcript models, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region length (Maximum length of a region considered before it is split, default = 750000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfgl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum filled gap length (Maximum length of a gap filled by dummy reads, default = 50)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;q&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Quality filter (Minimum mapping quality required for a read to be considered, default = 40)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mpl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gp&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene prefix (Prefix to add to all gene names, default = G)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gnwc&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene names with chromosome (If true, gene names will be constructed as &amp;lt;Gene prefix&amp;gt;&amp;lt;chr&amp;gt;.&amp;lt;geneNumber&amp;gt;. Gene numbers will be assigned successively across all chromosomes., default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;threads&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The number of threads used for the tool, defaults to 1. Currently, I/O of GeMoRNA runs on a single thread and runtime is limited by I/O performance. Hence, running GeMoRNA with a large number of threads is not recommended. On our infrastructure, a number of 6 threads has been the sweet spot.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar gemorna g=&amp;amp;lt;Genome&amp;amp;gt; m=&amp;amp;lt;Mapped_reads&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Predict CDS from GFF ==&lt;br /&gt;
&lt;br /&gt;
Prediction of CDSs using the longest-ORF heuristic based on an existing GFF or GTF file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Predict CDS from GFF&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar predictCDS&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna.fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (&amp;quot;GFF or GTF file containing the predicted annotation&amp;quot;, type = gff,gff3,gff.gz,gff3.gz,gtf,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar predictCDS g=&amp;amp;lt;Genome&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Merge ==&lt;br /&gt;
&lt;br /&gt;
Merging GeMoRNA and GeMoMa predictions.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Merge&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar merge&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa (GeMoMa predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA (GeMoRNA predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mode (, range={intersect, union, intermediate, annotate}, default = intersect)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;intersect&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;union&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;intermediate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;annotate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Low-confidence (include low-confidence predictions, default = true)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar merge g=&amp;amp;lt;GeMoMa&amp;amp;gt; GeMoRNA=&amp;amp;lt;GeMoRNA&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Version history ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.0.jar Version 1.0]: initial version of GeMoRNA&lt;br /&gt;
* Version 1.1 (2025/04/15): changes in the following tools&lt;br /&gt;
** merge: include flag if low-confidence predictions will be included in &amp;quot;annotate&amp;quot; mode&lt;br /&gt;
** gemorna: allow to provide custom prefix for gene names and to include the chromosome into the gene names&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1201</id>
		<title>GeMoSeq</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1201"/>
		<updated>2025-05-12T14:59:03Z</updated>

		<summary type="html">&lt;p&gt;Grau: /* Predict CDS from GFF */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GeMoRNA reconstructs genes and transcript models from mapped RNA-seq reads (in coordinate-sorted BAM format) and reports these in GFF format.&lt;br /&gt;
&lt;br /&gt;
It is intended as a companion for the homology-based gene prediction program [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In a typical workflow, predictions of transcript models may be obtained from GeMoRNA for a collection of BAM files individually and subsequently merged using the [[GeMoMa]] Annotation Filter (GAF). Optionally, homology-based gene prediction may be performed using [[GeMoMa]] and the resulting GFF files may be merged using the [[#Merge|Merge]] tool of GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Command line tool ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
GeMoRNA and auxiliary tools are packaged in one [http://www.jstacs.de/downloads/GeMoRNA-1.2.jar runnable JAR] that may be run from the command line with&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar&lt;br /&gt;
&lt;br /&gt;
which lists the tools available and usage information&lt;br /&gt;
&lt;br /&gt;
  Available tools:&lt;br /&gt;
 &lt;br /&gt;
 	gemorna - GeMoRNA&lt;br /&gt;
 	predictCDS - Predict CDS from GFF&lt;br /&gt;
 	GAF - GeMoMa Annotation Filter&lt;br /&gt;
 	Analyzer - Analyzer&lt;br /&gt;
 	merge - Merge&lt;br /&gt;
 &lt;br /&gt;
 Syntax: java -jar GeMoRNA-1.2.jar &amp;lt;toolname&amp;gt; [&amp;lt;parameter=value&amp;gt; ...]&lt;br /&gt;
 &lt;br /&gt;
 Further info about the tools is given with&lt;br /&gt;
 	java -jar GeMoRNA-1.2.jar &amp;lt;toolname&amp;gt; info&lt;br /&gt;
 &lt;br /&gt;
 For tests of individual tools:&lt;br /&gt;
 	java -jar GeMoRNA-1.2.jar &amp;lt;toolname&amp;gt; test [&amp;lt;verbose&amp;gt;]&lt;br /&gt;
 &lt;br /&gt;
 Tool parameters are listed with&lt;br /&gt;
 	java -jar GeMoRNA-1.2.jar &amp;lt;toolname&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You get a list of the tool parameters by calling GeMoRNA-1.2.jar with the corresponding tool name, e.g.,&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar gemorna&lt;br /&gt;
&lt;br /&gt;
The meaning of the individual tool parameters is described below.&lt;br /&gt;
For convenience, we also include the [[GeMoMa]] tools Analyzer and GAF.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
&lt;br /&gt;
The source code of GeMoRNA is available from the [https://github.com/Jstacs/Jstacs/tree/master/projects/gemorna Jstacs GitHub repository].&lt;br /&gt;
&lt;br /&gt;
== GeMoRNA ==&lt;br /&gt;
&lt;br /&gt;
Prediction of transcript models using GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar gemorna&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna,fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mapped reads (Mapped Reads in BAM format, coordinate sorted, type = bam)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;s&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Stranded (Library strandedness, range={FR_UNSTRANDED, FR_FIRST_STRAND, FR_SECOND_STRAND}, default = FR_UNSTRANDED)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Longest intron length (Length of the longest intron reported, default = 100000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sil&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Shortest intron length (Length of the shortest intron considered, default = 10)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;lr&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Long reads (Long-read mode, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of reads (Minimum number of reads required for an edge in the read graph, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of reads (Minimum fraction of reads relative to adjacent exons that must support an intron in the enumeration, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of intron reads (Minimum number of reads required for an intron, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of intron reads (Minimum fraction of reads relative to adjacent exons for an intron to be considered, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent explained (Percent of abundance that must be explained by transcript models after quantification, default = 0.9)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpg&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per gene (Minimum abundance required for a gene to be reported, default = 40.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpt&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per transcript (Minimum abundance required for a transcript to be reported, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;pa&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent abundance (Minimum relative abundance required for a transcript to be reported, default = 0.05)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sf&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Successive fraction (Factor of the drop in abundance between successive transcript models, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region length (Maximum length of a region considered before it is split, default = 750000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfgl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum filled gap length (Maximum length of a gap filled by dummy reads, default = 50)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;q&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Quality filter (Minimum mapping quality required for a read to be considered, default = 40)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mpl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gp&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene prefix (Prefix to add to all gene names, default = G)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gnwc&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene names with chromosome (If true, gene names will be constructed as &amp;lt;Gene prefix&amp;gt;&amp;lt;chr&amp;gt;.&amp;lt;geneNumber&amp;gt;. Gene numbers will be assigned successively across all chromosomes., default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;threads&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The number of threads used for the tool, defaults to 1. Currently, I/O of GeMoRNA runs on a single thread and runtime is limited by I/O performance. Hence, running GeMoRNA with a large number of threads is not recommended. On our infrastructure, a number of 6 threads has been the sweet spot.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar gemorna g=&amp;amp;lt;Genome&amp;amp;gt; m=&amp;amp;lt;Mapped_reads&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Predict CDS from GFF ==&lt;br /&gt;
&lt;br /&gt;
Prediction of CDSs using the longest-ORF heuristic based on an existing GFF or GTF file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Predict CDS from GFF&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar predictCDS&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna.fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (&amp;quot;GFF or GTF file containing the predicted annotation&amp;quot;, type = gff,gff3,gff.gz,gff3.gz,gtf,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar predictCDS g=&amp;amp;lt;Genome&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Merge ==&lt;br /&gt;
&lt;br /&gt;
Merging GeMoRNA and GeMoMa predictions.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Merge&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar merge&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa (GeMoMa predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA (GeMoRNA predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mode (, range={intersect, union, intermediate, annotate}, default = intersect)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;intersect&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;union&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;intermediate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;annotate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Low-confidence (include low-confidence predictions, default = true)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar merge g=&amp;amp;lt;GeMoMa&amp;amp;gt; GeMoRNA=&amp;amp;lt;GeMoRNA&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Version history ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.0.jar Version 1.0]: initial version of GeMoRNA&lt;br /&gt;
* Version 1.1 (2025/04/15): changes in the following tools&lt;br /&gt;
** merge: include flag if low-confidence predictions will be included in &amp;quot;annotate&amp;quot; mode&lt;br /&gt;
** gemorna: allow to provide custom prefix for gene names and to include the chromosome into the gene names&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1200</id>
		<title>GeMoSeq</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1200"/>
		<updated>2025-05-12T14:58:47Z</updated>

		<summary type="html">&lt;p&gt;Grau: /* GeMoRNA */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GeMoRNA reconstructs genes and transcript models from mapped RNA-seq reads (in coordinate-sorted BAM format) and reports these in GFF format.&lt;br /&gt;
&lt;br /&gt;
It is intended as a companion for the homology-based gene prediction program [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In a typical workflow, predictions of transcript models may be obtained from GeMoRNA for a collection of BAM files individually and subsequently merged using the [[GeMoMa]] Annotation Filter (GAF). Optionally, homology-based gene prediction may be performed using [[GeMoMa]] and the resulting GFF files may be merged using the [[#Merge|Merge]] tool of GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Command line tool ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
GeMoRNA and auxiliary tools are packaged in one [http://www.jstacs.de/downloads/GeMoRNA-1.2.jar runnable JAR] that may be run from the command line with&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar&lt;br /&gt;
&lt;br /&gt;
which lists the tools available and usage information&lt;br /&gt;
&lt;br /&gt;
  Available tools:&lt;br /&gt;
 &lt;br /&gt;
 	gemorna - GeMoRNA&lt;br /&gt;
 	predictCDS - Predict CDS from GFF&lt;br /&gt;
 	GAF - GeMoMa Annotation Filter&lt;br /&gt;
 	Analyzer - Analyzer&lt;br /&gt;
 	merge - Merge&lt;br /&gt;
 &lt;br /&gt;
 Syntax: java -jar GeMoRNA-1.2.jar &amp;lt;toolname&amp;gt; [&amp;lt;parameter=value&amp;gt; ...]&lt;br /&gt;
 &lt;br /&gt;
 Further info about the tools is given with&lt;br /&gt;
 	java -jar GeMoRNA-1.2.jar &amp;lt;toolname&amp;gt; info&lt;br /&gt;
 &lt;br /&gt;
 For tests of individual tools:&lt;br /&gt;
 	java -jar GeMoRNA-1.2.jar &amp;lt;toolname&amp;gt; test [&amp;lt;verbose&amp;gt;]&lt;br /&gt;
 &lt;br /&gt;
 Tool parameters are listed with&lt;br /&gt;
 	java -jar GeMoRNA-1.2.jar &amp;lt;toolname&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You get a list of the tool parameters by calling GeMoRNA-1.2.jar with the corresponding tool name, e.g.,&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar gemorna&lt;br /&gt;
&lt;br /&gt;
The meaning of the individual tool parameters is described below.&lt;br /&gt;
For convenience, we also include the [[GeMoMa]] tools Analyzer and GAF.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
&lt;br /&gt;
The source code of GeMoRNA is available from the [https://github.com/Jstacs/Jstacs/tree/master/projects/gemorna Jstacs GitHub repository].&lt;br /&gt;
&lt;br /&gt;
== GeMoRNA ==&lt;br /&gt;
&lt;br /&gt;
Prediction of transcript models using GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar gemorna&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna,fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mapped reads (Mapped Reads in BAM format, coordinate sorted, type = bam)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;s&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Stranded (Library strandedness, range={FR_UNSTRANDED, FR_FIRST_STRAND, FR_SECOND_STRAND}, default = FR_UNSTRANDED)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Longest intron length (Length of the longest intron reported, default = 100000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sil&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Shortest intron length (Length of the shortest intron considered, default = 10)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;lr&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Long reads (Long-read mode, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of reads (Minimum number of reads required for an edge in the read graph, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of reads (Minimum fraction of reads relative to adjacent exons that must support an intron in the enumeration, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of intron reads (Minimum number of reads required for an intron, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of intron reads (Minimum fraction of reads relative to adjacent exons for an intron to be considered, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent explained (Percent of abundance that must be explained by transcript models after quantification, default = 0.9)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpg&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per gene (Minimum abundance required for a gene to be reported, default = 40.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpt&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per transcript (Minimum abundance required for a transcript to be reported, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;pa&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent abundance (Minimum relative abundance required for a transcript to be reported, default = 0.05)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sf&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Successive fraction (Factor of the drop in abundance between successive transcript models, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region length (Maximum length of a region considered before it is split, default = 750000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfgl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum filled gap length (Maximum length of a gap filled by dummy reads, default = 50)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;q&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Quality filter (Minimum mapping quality required for a read to be considered, default = 40)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mpl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gp&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene prefix (Prefix to add to all gene names, default = G)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gnwc&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene names with chromosome (If true, gene names will be constructed as &amp;lt;Gene prefix&amp;gt;&amp;lt;chr&amp;gt;.&amp;lt;geneNumber&amp;gt;. Gene numbers will be assigned successively across all chromosomes., default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;threads&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The number of threads used for the tool, defaults to 1. Currently, I/O of GeMoRNA runs on a single thread and runtime is limited by I/O performance. Hence, running GeMoRNA with a large number of threads is not recommended. On our infrastructure, a number of 6 threads has been the sweet spot.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar gemorna g=&amp;amp;lt;Genome&amp;amp;gt; m=&amp;amp;lt;Mapped_reads&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Predict CDS from GFF ==&lt;br /&gt;
&lt;br /&gt;
Prediction of CDSs using the longest-ORF heuristic based on an existing GFF or GTF file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Predict CDS from GFF&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar predictCDS&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna.fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (&amp;quot;GFF or GTF file containing the predicted annotation&amp;quot;, type = gff,gff3,gff.gz,gff3.gz,gtf,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar predictCDS g=&amp;amp;lt;Genome&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Merge ==&lt;br /&gt;
&lt;br /&gt;
Merging GeMoRNA and GeMoMa predictions.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Merge&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar merge&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa (GeMoMa predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA (GeMoRNA predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mode (, range={intersect, union, intermediate, annotate}, default = intersect)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;intersect&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;union&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;intermediate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;annotate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Low-confidence (include low-confidence predictions, default = true)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar merge g=&amp;amp;lt;GeMoMa&amp;amp;gt; GeMoRNA=&amp;amp;lt;GeMoRNA&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Version history ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.0.jar Version 1.0]: initial version of GeMoRNA&lt;br /&gt;
* Version 1.1 (2025/04/15): changes in the following tools&lt;br /&gt;
** merge: include flag if low-confidence predictions will be included in &amp;quot;annotate&amp;quot; mode&lt;br /&gt;
** gemorna: allow to provide custom prefix for gene names and to include the chromosome into the gene names&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1199</id>
		<title>GeMoSeq</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1199"/>
		<updated>2025-05-12T14:58:30Z</updated>

		<summary type="html">&lt;p&gt;Grau: /* Command line tool */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GeMoRNA reconstructs genes and transcript models from mapped RNA-seq reads (in coordinate-sorted BAM format) and reports these in GFF format.&lt;br /&gt;
&lt;br /&gt;
It is intended as a companion for the homology-based gene prediction program [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In a typical workflow, predictions of transcript models may be obtained from GeMoRNA for a collection of BAM files individually and subsequently merged using the [[GeMoMa]] Annotation Filter (GAF). Optionally, homology-based gene prediction may be performed using [[GeMoMa]] and the resulting GFF files may be merged using the [[#Merge|Merge]] tool of GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Command line tool ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
GeMoRNA and auxiliary tools are packaged in one [http://www.jstacs.de/downloads/GeMoRNA-1.2.jar runnable JAR] that may be run from the command line with&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar&lt;br /&gt;
&lt;br /&gt;
which lists the tools available and usage information&lt;br /&gt;
&lt;br /&gt;
  Available tools:&lt;br /&gt;
 &lt;br /&gt;
 	gemorna - GeMoRNA&lt;br /&gt;
 	predictCDS - Predict CDS from GFF&lt;br /&gt;
 	GAF - GeMoMa Annotation Filter&lt;br /&gt;
 	Analyzer - Analyzer&lt;br /&gt;
 	merge - Merge&lt;br /&gt;
 &lt;br /&gt;
 Syntax: java -jar GeMoRNA-1.2.jar &amp;lt;toolname&amp;gt; [&amp;lt;parameter=value&amp;gt; ...]&lt;br /&gt;
 &lt;br /&gt;
 Further info about the tools is given with&lt;br /&gt;
 	java -jar GeMoRNA-1.2.jar &amp;lt;toolname&amp;gt; info&lt;br /&gt;
 &lt;br /&gt;
 For tests of individual tools:&lt;br /&gt;
 	java -jar GeMoRNA-1.2.jar &amp;lt;toolname&amp;gt; test [&amp;lt;verbose&amp;gt;]&lt;br /&gt;
 &lt;br /&gt;
 Tool parameters are listed with&lt;br /&gt;
 	java -jar GeMoRNA-1.2.jar &amp;lt;toolname&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You get a list of the tool parameters by calling GeMoRNA-1.2.jar with the corresponding tool name, e.g.,&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.2.jar gemorna&lt;br /&gt;
&lt;br /&gt;
The meaning of the individual tool parameters is described below.&lt;br /&gt;
For convenience, we also include the [[GeMoMa]] tools Analyzer and GAF.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
&lt;br /&gt;
The source code of GeMoRNA is available from the [https://github.com/Jstacs/Jstacs/tree/master/projects/gemorna Jstacs GitHub repository].&lt;br /&gt;
&lt;br /&gt;
== GeMoRNA ==&lt;br /&gt;
&lt;br /&gt;
Prediction of transcript models using GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar gemorna&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna,fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mapped reads (Mapped Reads in BAM format, coordinate sorted, type = bam)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;s&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Stranded (Library strandedness, range={FR_UNSTRANDED, FR_FIRST_STRAND, FR_SECOND_STRAND}, default = FR_UNSTRANDED)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Longest intron length (Length of the longest intron reported, default = 100000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sil&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Shortest intron length (Length of the shortest intron considered, default = 10)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;lr&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Long reads (Long-read mode, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of reads (Minimum number of reads required for an edge in the read graph, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of reads (Minimum fraction of reads relative to adjacent exons that must support an intron in the enumeration, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of intron reads (Minimum number of reads required for an intron, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of intron reads (Minimum fraction of reads relative to adjacent exons for an intron to be considered, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent explained (Percent of abundance that must be explained by transcript models after quantification, default = 0.9)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpg&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per gene (Minimum abundance required for a gene to be reported, default = 40.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpt&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per transcript (Minimum abundance required for a transcript to be reported, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;pa&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent abundance (Minimum relative abundance required for a transcript to be reported, default = 0.05)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sf&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Successive fraction (Factor of the drop in abundance between successive transcript models, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region length (Maximum length of a region considered before it is split, default = 750000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfgl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum filled gap length (Maximum length of a gap filled by dummy reads, default = 50)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;q&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Quality filter (Minimum mapping quality required for a read to be considered, default = 40)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mpl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gp&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene prefix (Prefix to add to all gene names, default = G)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gnwc&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene names with chromosome (If true, gene names will be constructed as &amp;lt;Gene prefix&amp;gt;&amp;lt;chr&amp;gt;.&amp;lt;geneNumber&amp;gt;. Gene numbers will be assigned successively across all chromosomes., default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;threads&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The number of threads used for the tool, defaults to 1. Currently, I/O of GeMoRNA runs on a single thread and runtime is limited by I/O performance. Hence, running GeMoRNA with a large number of threads is not recommended. On our infrastructure, a number of 6 threads has been the sweet spot.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar gemorna g=&amp;amp;lt;Genome&amp;amp;gt; m=&amp;amp;lt;Mapped_reads&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Predict CDS from GFF ==&lt;br /&gt;
&lt;br /&gt;
Prediction of CDSs using the longest-ORF heuristic based on an existing GFF or GTF file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Predict CDS from GFF&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar predictCDS&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna.fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (&amp;quot;GFF or GTF file containing the predicted annotation&amp;quot;, type = gff,gff3,gff.gz,gff3.gz,gtf,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar predictCDS g=&amp;amp;lt;Genome&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Merge ==&lt;br /&gt;
&lt;br /&gt;
Merging GeMoRNA and GeMoMa predictions.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Merge&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar merge&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa (GeMoMa predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA (GeMoRNA predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mode (, range={intersect, union, intermediate, annotate}, default = intersect)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;intersect&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;union&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;intermediate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;annotate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Low-confidence (include low-confidence predictions, default = true)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar merge g=&amp;amp;lt;GeMoMa&amp;amp;gt; GeMoRNA=&amp;amp;lt;GeMoRNA&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Version history ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.0.jar Version 1.0]: initial version of GeMoRNA&lt;br /&gt;
* Version 1.1 (2025/04/15): changes in the following tools&lt;br /&gt;
** merge: include flag if low-confidence predictions will be included in &amp;quot;annotate&amp;quot; mode&lt;br /&gt;
** gemorna: allow to provide custom prefix for gene names and to include the chromosome into the gene names&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=AnnoTALE&amp;diff=1198</id>
		<title>AnnoTALE</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=AnnoTALE&amp;diff=1198"/>
		<updated>2025-05-05T16:20:43Z</updated>

		<summary type="html">&lt;p&gt;Grau: /* Class Builders */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:AnnoTALE.png|130px|left]]&lt;br /&gt;
Transcription activator-like effectors (TALEs) are virulence factors of plant-pathogenic Xanthomonas spp. that function as gene activators inside plant host cells.&lt;br /&gt;
&lt;br /&gt;
AnnoTALE is a suite of applications for identifying and analysing TALEs in Xanthomonas genomes, for clustering TALEs into classes by their RVD sequences, for assigning novel TALEs to existing classes, for proposing TALE names using a unified nomenclature, and for predicting targets of individual TALEs and TALE classes.&lt;br /&gt;
&lt;br /&gt;
AnnoTALE is available as a JavaFX-based stand-alone application with graphical user interface for interactive analysis sessions. &lt;br /&gt;
In addition, we provide a command line application that may be integrated into other pipelines. &lt;br /&gt;
Both use identical code for the actual analysis, ensuring consistent results between both versions.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you use AnnoTALE, please cite:&lt;br /&gt;
&lt;br /&gt;
Jan Grau, Maik Reschke, Annett Erkes, Jana Streubel, Richard D. Morgan, Geoffrey G. Wilson, Ralf Koebnik and Jens Boch. [http://www.nature.com/articles/srep21077 AnnoTALE: bioinformatics tools for identification, annotation, and nomenclature of TALEs from &#039;&#039;Xanthomonas&#039;&#039; genomic sequences]. Scientific Reports 6:21077, DOI: 10.1038/srep21077, 2016.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For evolution-related studies using the comparative features of AnnoTALE, please also cite:&lt;br /&gt;
&lt;br /&gt;
Annett Erkes, Maik Reschke, Jens Boch, and Jan Grau. [https://doi.org/10.1093/gbe/evx108 Evolution of transcription activator-like effectors in Xanthomonas oryzae]. Genome Biology and Evolution, 9(6):1599–1615, 2017.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you use PrediTALE for predicting TALE targets, please also cite:&lt;br /&gt;
&lt;br /&gt;
Annett Erkes, Stefanie Mücke, Maik Reschke, Jens Boch, and Jan Grau. [https://doi.org/10.1371/journal.pcbi.1007206 PrediTALE: A novel model learned from quantitative data allows for new perspectives on TALE targeting]. PLOS Computational Biology, 15(7):1–31, 2019.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; If you would like to use the unified nomenclature of AnnoTALE in one of your publications including new TALEs or sequenced genomes, please contact us (grau@informatik.uni-halle.de) to organize the inclusion of your TALEs into the official class definition of AnnoTALE and to create stable TALE names that are unique to your TALEs.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== AnnoTALE with GUI ==&lt;br /&gt;
&lt;br /&gt;
[[File:AnnoTALEscreenshot.jpg]]&lt;br /&gt;
&lt;br /&gt;
AnnoTALE is based on the implementation of JavaFX in Java &amp;gt;=8.&lt;br /&gt;
&lt;br /&gt;
We provide AnnoTALE as a runnable JAR file for those with a current version of Java 8 (at least update 45) on their machine.&lt;br /&gt;
&lt;br /&gt;
For user&#039;s convenience, we also provide pre-packaged versions of AnnoTALE, which also include Java in the required version, for Mac OS X and Windows. Each of these versions is available two version with different memory requirements (2GB and 6GB). As long as the main memory (RAM) of your machine is sufficient, we recommend to use the 6GB version of AnnoTALE.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Download ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;AnnoTALE is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* [http://www.jstacs.de/downloads/AnnoTALE-1.5.jar Runnable Jar] (requires installed Java &amp;gt;= 8, update 45), may be run under Linux, macOS and Windows&lt;br /&gt;
* macOS app: [http://www.jstacs.de/downloads/AnnoTALE-1.5.app-2GB.zip 2GB version], [http://www.jstacs.de/downloads/AnnoTALE-1.5.app-6GB.zip 6GB version], ZIP archive containing a macOS app including AnnoTALE and all required Java modules. For running this app, it might be required to explicitly give it running permissions in &amp;quot;System Preferences&amp;quot; -&amp;gt; &amp;quot;Security &amp;amp; Privacy&amp;quot; -&amp;gt; &amp;quot;General&amp;quot;, which should list AnnoTALE after the first (possibly unsuccessful) starting attempt. Approve opening AnnoTALE by clicking on the button &amp;quot;Open Anyway&amp;quot; next to it.&lt;br /&gt;
* Windows installer of AnnoTALE including Java: [http://www.jstacs.de/downloads/AnnoTALE-1.5-2GB.exe 2GB version, 64bit Java], [http://www.jstacs.de/downloads/AnnoTALE-1.5-6GB.exe 6GB version, 64bit Java]&lt;br /&gt;
* Windows version without installer: [http://www.jstacs.de/downloads/AnnoTALE-1.5-win.zip 6GB version, 64bit Java], ZIP archive containing AnnoTALE, all required Java modules, and a Windows batch file. For starting AnnoTALE, double-click AnnoTALE.bat.&lt;br /&gt;
&lt;br /&gt;
=== Source code ===&lt;br /&gt;
&lt;br /&gt;
The AnnoTALE source code is available from [https://github.com/Jstacs/Jstacs/tree/master/projects/xanthogenomes github].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== User Guide ===&lt;br /&gt;
&lt;br /&gt;
We provide an [http://www.jstacs.de/downloads/AnnoTALE-UserGuide-1.0.pdf AnnoTALE User Guide] in PDF format, including a detailed description of all AnnoTALE tools and installation instructions.&lt;br /&gt;
&lt;br /&gt;
== AnnoTALE command line application ==&lt;br /&gt;
&lt;br /&gt;
The AnnoTALE command line application is available as a [http://www.jstacs.de/downloads/AnnoTALEcli-1.5.jar runnable Jar]. For running the program and a quick help, type&lt;br /&gt;
&lt;br /&gt;
 java -jar AnnoTALEcli-1.5.jar&lt;br /&gt;
&lt;br /&gt;
For larger analyes, it might be necessary to increase the memory allocated by the JavaVM using the &amp;lt;code&amp;gt;-Xms&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;-Xmx&amp;lt;/code&amp;gt; parameters, for instance&lt;br /&gt;
 java -Xms512M -Xmx6G -jar AnnoTALEcli-1.5.jar&lt;br /&gt;
&lt;br /&gt;
There is no separate User Guide for the AnnoTALE command line application, but the [http://www.jstacs.de/downloads/AnnoTALE-UserGuide-1.0.pdf User Guide for the GUI version] describes all AnnoTALE tools, their parameters and outputs, and those of the CLI version are identical.&lt;br /&gt;
&lt;br /&gt;
You obtain a list of all AnnoTALE tools by calling&lt;br /&gt;
&lt;br /&gt;
 java -jar AnnoTALEcli-1.5.jar&lt;br /&gt;
&lt;br /&gt;
Output:&lt;br /&gt;
&lt;br /&gt;
 Available tools:&lt;br /&gt;
 &lt;br /&gt;
 	predict - TALE Prediction&lt;br /&gt;
 	analyze - TALE Analysis&lt;br /&gt;
 	build - TALE Class Builder&lt;br /&gt;
 	loadAndView - Load and View TALE Classes&lt;br /&gt;
 	assign - TALE Class Assignment&lt;br /&gt;
 	rename - Rename TALEs in File&lt;br /&gt;
 	targets - Predict and Intersect Targets&lt;br /&gt;
 	presence - TALE Class Presence&lt;br /&gt;
 	repdiff - TALE Repeat Differences&lt;br /&gt;
 	preditale - PrediTALE&lt;br /&gt;
 	dertale - DerTALE&lt;br /&gt;
 &lt;br /&gt;
 Syntax: java -jar AnnoTALEcli-1.5.jar &amp;lt;toolname&amp;gt; [&amp;lt;parameter=value&amp;gt; ...]&lt;br /&gt;
 &lt;br /&gt;
 Further info about the tools is given with&lt;br /&gt;
 	java -jar AnnoTALEcli-1.5.jar &amp;lt;toolname&amp;gt; info&lt;br /&gt;
 &lt;br /&gt;
 Tool parameters are listed with&lt;br /&gt;
 	java -jar AnnoTALEcli-1.5.jar &amp;lt;toolname&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
You get a list of input parameters by calling AnnoTALEcli-1.5.jar with the corresponding tool name, e.g.,&lt;br /&gt;
&lt;br /&gt;
 java -jar AnnoTALEcli-1.5.jar predict&lt;br /&gt;
&lt;br /&gt;
Output:&lt;br /&gt;
&lt;br /&gt;
 At least one parameter has not been set (correctly):&lt;br /&gt;
 &lt;br /&gt;
 Parameters of tool &amp;quot;TALE Prediction&amp;quot; (predict):&lt;br /&gt;
 g - Genome (The input Xanthomonas genome in FastA or Genbank format)	= null&lt;br /&gt;
 s - Strain (The name of the strain, will be used for annotated TALEs, OPTIONAL)	= null&lt;br /&gt;
 outdir - The output directory, defaults to the current working directory (.)	= .&lt;br /&gt;
&lt;br /&gt;
You get a description of each tool by calling AnnoTALEcli-1.5.jar with the corresponding tool name and keyword &amp;quot;info&amp;quot;, e.g.,&lt;br /&gt;
&lt;br /&gt;
 java -jar AnnoTALEcli-1.5.jar predict info&lt;br /&gt;
&lt;br /&gt;
Output:&lt;br /&gt;
 A detailed description of all tools is available in the AnnoTALE User Guide (http://www.jstacs.de/downloads/AnnoTALE-UserGuide-1.0.pdf).&lt;br /&gt;
&lt;br /&gt;
 *TALE Prediction* predicts transcription activator-like effector (TALE) genes in an input sequence, typically a &#039;Xanthomonas&#039; genome.&lt;br /&gt;
 &lt;br /&gt;
 &#039;TALE Prediction&#039; is based in HMMer nucleotide HMM models that describe N-terminus, repeat region, and C-terminus of TALEs.&lt;br /&gt;
 &lt;br /&gt;
 The input &#039;Genome&#039; may be provided in FastA or Genbank format. &lt;br /&gt;
 Optionally, you may provide a strain name that will be used in the temporary TALE names and names of output files.&lt;br /&gt;
 &lt;br /&gt;
 Regardless of the input format, &#039;TALE Prediction&#039; generates output in Genbank format containing the annotations of TALE genes. If the original input has already been a Genbank file, TALE annotations are added to the existing ones.&lt;br /&gt;
 In addition, &#039;TALE Prediction&#039; generates annotations in GFF format, and also outputs the DNA and AS sequences of the predicted TALEs in FastA format.&lt;br /&gt;
 &lt;br /&gt;
 &#039;TALE Prediction&#039; tries hard to make the CDS annotation a proper gene model, starting from a start codon and ending with a Stop. If either start or stop codon are located within the originally predicted region that is homologous to TALE genes, this original hit region is still reported as mRNA.&lt;br /&gt;
 Putative pseudo genes, e.g., with premature stop codons, are marked accordingly.&lt;br /&gt;
 &lt;br /&gt;
 The TALE DNA sequences output of &#039;TALE Prediction&#039; may serve as input of the &#039;TALE Analysis&#039;, &#039;TALE Class Builder&#039;, and &#039;TALE Class Assignment&#039; tools.&lt;br /&gt;
 &lt;br /&gt;
 If you experience problems using &#039;TALE Prediction&#039;, please contact us.&lt;br /&gt;
&lt;br /&gt;
=== Standard pipeline ===&lt;br /&gt;
&lt;br /&gt;
Assuming that your current working directory contains the AnnoTALEcli Jar file, a genome of interest (of a hypothetical &#039;Xoo&#039; strain PXO999 with accesion CP1234567) in a FastA file &amp;quot;genome.fa&amp;quot;, all rice promoters in a FastA file &amp;quot;Rice-promoters.fa&amp;quot;, and a directory &amp;quot;out&amp;quot; designated to hold all output files, a typical AnnoTALE pipeline could look like&lt;br /&gt;
&lt;br /&gt;
 java -jar AnnoTALEcli-1.5.jar predict g=genome.fa outdir=out&lt;br /&gt;
 &lt;br /&gt;
 java -jar AnnoTALEcli-1.5.jar analyze t=out/TALE_DNA_sequences.fasta outdir=out&lt;br /&gt;
 &lt;br /&gt;
 java -jar AnnoTALEcli-1.5.jar loadAndView outdir=out&lt;br /&gt;
 &lt;br /&gt;
 java -jar AnnoTALEcli-1.5.jar assign c=out/Class_builder_download.xml t=out/TALE_DNA_parts.fasta s=&amp;quot;Xoo PXO999&amp;quot; a=&amp;quot;CP1234567&amp;quot; outdir=out&lt;br /&gt;
 &lt;br /&gt;
 java -jar AnnoTALEcli-1.5.jar rename r=out/TALE_names_\(Xoo_PXO999\).tsv i=out/Genbank__TALE_predictions.gb outdir=out&lt;br /&gt;
 &lt;br /&gt;
 java -jar AnnoTALEcli-1.5.jar targets i=Rice-promoters.fa p=&amp;quot;TALEs in class builder&amp;quot; c=out/Augmented_class_builder_\(Xoo_PXO999\).xml outdir=out&lt;br /&gt;
&lt;br /&gt;
Afterwards, you find all output files of all those tools in the directory &amp;quot;out&amp;quot;. The output files and directories are named in analogy to the names in the AnnoTALE GUI version (see [http://www.jstacs.de/downloads/AnnoTALE-UserGuide-1.0.pdf User Guide for the GUI version])&lt;br /&gt;
&lt;br /&gt;
==Version history==&lt;br /&gt;
&lt;br /&gt;
===AnnoTALE===&lt;br /&gt;
&#039;&#039;&#039;Version 1.5&#039;&#039;&#039;&lt;br /&gt;
* new &amp;quot;sensitive&amp;quot; mode of TALE Prediction tool, which may annotate TALEs in a wider range of Xanthomonas strains at the expense of an increased runtime; turned off by default&lt;br /&gt;
* significantly improved speed of TALE Class Assignment tool&lt;br /&gt;
* citation information for individual AnnoTALE tools available under a dedicated button in the GUI version and from the &amp;quot;info&amp;quot; command issued for individual tools in the command line version&lt;br /&gt;
* bugfix for TALE Prediction in rather fragmented genome assemblies, where TALE predictions may extend to the ends of contigs/sequences&lt;br /&gt;
* [http://www.jstacs.de/downloads/AnnoTALE-1.5.jar Runnable Jar] (requires installed Java &amp;gt;= 8, update 45), may be run under Linux, macOS and Windows&lt;br /&gt;
* macOS app: [http://www.jstacs.de/downloads/AnnoTALE-1.5.app-2GB.zip 2GB version], [http://www.jstacs.de/downloads/AnnoTALE-1.5.app-6GB.zip 6GB version], ZIP archive containing a macOS app including AnnoTALE and all required Java modules. For running this app, it might be required to explicitly give it running permissions in &amp;quot;System Preferences&amp;quot; -&amp;gt; &amp;quot;Security &amp;amp; Privacy&amp;quot; -&amp;gt; &amp;quot;General&amp;quot;, which should list AnnoTALE after the first (possibly unsuccessful) starting attempt.&lt;br /&gt;
* Windows installer of AnnoTALE including Java: [http://www.jstacs.de/downloads/AnnoTALE-1.5-2GB.exe 2GB version, 64bit Java], [http://www.jstacs.de/downloads/AnnoTALE-1.5-6GB.exe 6GB version, 64bit Java]&lt;br /&gt;
* Windows version without installer: [http://www.jstacs.de/downloads/AnnoTALE-1.5-win.zip 6GB version, 64bit Java], ZIP archive containing AnnoTALE, all required Java modules, and a Windows batch file. For starting AnnoTALE, double-click AnnoTALE.bat.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Version 1.4.1&#039;&#039;&#039;&lt;br /&gt;
* first version to use the updated Class Builder including a large number of recently sequence strains&lt;br /&gt;
* minor changes to the output of the &#039;Load and View TALE Classes&#039; tool, now including the accessions in the TALE sequence output&lt;br /&gt;
* changes to the Class Builder format to account for the increased size of class hierarchy, which previously resulted in unnecessarily large files&lt;br /&gt;
* 32bit/1GB Windows version no longer included&lt;br /&gt;
* [http://www.jstacs.de/downloads/AnnoTALE-1.4.1.jar Runnable Jar] (requires Java 8, update 45 or greater)&lt;br /&gt;
* Mac-DMG of AnnoTALE including Java: [http://www.jstacs.de/downloads/AnnoTALE-1.4.1-2GB.dmg 2GB version], [http://www.jstacs.de/downloads/AnnoTALE-1.4.1-6GB.dmg 6GB version]&lt;br /&gt;
* Windows installer of AnnoTALE including Java: [http://www.jstacs.de/downloads/AnnoTALE-1.4.1-2GB.exe 2GB version, 64bit Java], [http://www.jstacs.de/downloads/AnnoTALE-1.4.1-6GB.exe 6GB version, 64bit Java]&lt;br /&gt;
* [http://www.jstacs.de/downloads/AnnoTALEcli-1.4.1.jar AnnoTALE 1.4.1 command line application]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Version 1.4:&#039;&#039;&#039;&lt;br /&gt;
* first version containing [[PrediTALE]] and DerTALE tools for target site prediction&lt;br /&gt;
* [http://www.jstacs.de/downloads/AnnoTALE-1.4.jar Runnable Jar] (requires Java 8, update 45 or greater)&lt;br /&gt;
* Mac-DMG of AnnoTALE including Java: [http://www.jstacs.de/downloads/AnnoTALE-1.4-2GB.dmg 2GB version], [http://www.jstacs.de/downloads/AnnoTALE-1.4-6GB.dmg 6GB version]&lt;br /&gt;
* Windows installer of AnnoTALE including Java: [http://www.jstacs.de/downloads/AnnoTALE-1.4-2GB.exe 2GB version, 64bit Java], [http://www.jstacs.de/downloads/AnnoTALE-1.4-6GB.exe 6GB version, 64bit Java]; in addition, we provide a [http://www.jstacs.de/downloads/AnnoTALE-1.4-1GB.exe 1GB version with 32bit Java] for earlier and 32bit versions of Windows. Please use this version only if absolutely necessary, as some tools may not work due to memory restrictions.&lt;br /&gt;
* [http://www.jstacs.de/downloads/AnnoTALEcli-1.4.jar AnnoTALE 1.4 command line application]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Version 1.3:&#039;&#039;&#039;&lt;br /&gt;
* [http://www.jstacs.de/downloads/AnnoTALE-1.3.jar AnnoTALE 1.3 Runnable Jar] (requires Java 8, update 45 or greater)&lt;br /&gt;
* Mac-DMG of AnnoTALE 1.3 including Java: [http://www.jstacs.de/downloads/AnnoTALE-1.3-2GB.dmg AnnoTALE 1.3 2GB version], [http://www.jstacs.de/downloads/AnnoTALE-1.3-6GB.dmg AnnoTALE 1.3 6GB version]&lt;br /&gt;
* Windows installer of AnnoTALE 1.3 including Java: [http://www.jstacs.de/downloads/AnnoTALE-1.3-2GB.exe AnnoTALE 1.3 2GB version, 64bit Java], [http://www.jstacs.de/downloads/AnnoTALE-1.3-6GB.exe AnnoTALE 1.3 6GB version, 64bit Java]; [http://www.jstacs.de/downloads/AnnoTALE-1.3-1GB.exe AnnoTALE 1.3 1GB version with 32bit Java]&lt;br /&gt;
* [http://www.jstacs.de/downloads/AnnoTALEcli-1.3.jar AnnoTALE 1.3 command line application]&lt;br /&gt;
&lt;br /&gt;
Changes:&lt;br /&gt;
* modified format of Class Builder files allowing for faster download using the &amp;quot;Load and View TALE Classes&amp;quot; tool; old Class Builder files can still be loaded&lt;br /&gt;
* &amp;quot;TALE Class Presence&amp;quot; now also outputs a phylogenetic tree of strains based on TALEome similarities&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Version 1.2:&#039;&#039;&#039;&lt;br /&gt;
* [http://www.jstacs.de/downloads/AnnoTALE-1.2.jar AnnoTALE 1.2 Runnable Jar] (requires Java 8, update 45 or greater)&lt;br /&gt;
* Mac-DMG of AnnoTALE 1.2 including Java: [http://www.jstacs.de/downloads/AnnoTALE-1.2-2GB.dmg AnnoTALE 1.2 2GB version], [http://www.jstacs.de/downloads/AnnoTALE-1.2-6GB.dmg AnnoTALE 1.2 6GB version]&lt;br /&gt;
* Windows installer of AnnoTALE 1.2 including Java: [http://www.jstacs.de/downloads/AnnoTALE-1.2-2GB.exe AnnoTALE 1.2 2GB version, 64bit Java], [http://www.jstacs.de/downloads/AnnoTALE-1.2-6GB.exe AnnoTALE 1.2 6GB version, 64bit Java]; [http://www.jstacs.de/downloads/AnnoTALE-1.2-1GB.exe AnnoTALE 1.2 1GB version with 32bit Java]&lt;br /&gt;
* [http://www.jstacs.de/downloads/AnnoTALEcli-1.2.jar AnnoTALE 1.2 command line application]&lt;br /&gt;
&lt;br /&gt;
Changes:&lt;br /&gt;
* Results and loaded files may now be renamed in the GUI by clicking on the corresponding name in the &amp;quot;Data&amp;quot; panel&lt;br /&gt;
* Minor bugfixes and improvements of the GUI (Protocol may be erased, columns in &amp;quot;Data&amp;quot; panel renamed for clarity, consistency of paths in the open/save dialogs under Linux)&lt;br /&gt;
* Two new tools: &amp;quot;TALE Class Presence&amp;quot; and &amp;quot;TALE Repeat differences&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Version 1.1:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* [http://www.jstacs.de/downloads/AnnoTALE-1.1.jar AnnoTALE 1.1 Runnable Jar] (requires Java 8, update 45 or greater)&lt;br /&gt;
* Mac-DMG of AnnoTALE 1.1 including Java: [http://www.jstacs.de/downloads/AnnoTALE-1.1-2GB.dmg AnnoTALE 1.1 2GB version], [http://www.jstacs.de/downloads/AnnoTALE-1.1-6GB.dmg AnnoTALE 1.1 6GB version]&lt;br /&gt;
* Windows installer of AnnoTALE 1.1 including Java: [http://www.jstacs.de/downloads/AnnoTALE-1.1-2GB.exe AnnoTALE 1.1 2GB version, 64bit Java], [http://www.jstacs.de/downloads/AnnoTALE-1.1-6GB.exe AnnoTALE 1.1 6GB version, 64bit Java]; [http://www.jstacs.de/downloads/AnnoTALE-1.1-1GB.exe AnnoTALE 1.1 1GB version with 32bit Java]&lt;br /&gt;
* [http://www.jstacs.de/downloads/AnnoTALEcli-1.1.jar AnnoTALE 1.1 command line application]&lt;br /&gt;
&lt;br /&gt;
Changes:&lt;br /&gt;
* Additional output for the &amp;quot;Load and View TALE Classes&amp;quot; tool&lt;br /&gt;
* &amp;quot;TALE Class Builder&amp;quot; and &amp;quot;TALE Class Assignment&amp;quot; now also accept RVD sequences (separated by dashes) as input. However, this is not recommended and some features (e.g., highlighting of aberrant repeats) will not be available. Only complete TALE DNA sequences will be accepted for inclusion into the official Class Builder.&lt;br /&gt;
* The internal help pages now link to the PDF User Guide&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Version 1.0:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Initial AnnoTALE release&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* [http://www.jstacs.de/downloads/AnnoTALE-1.0.jar AnnoTALE 1.0 Runnable Jar] (requires Java 8, update 45 or greater)&lt;br /&gt;
* Mac-DMG of AnnoTALE including Java: [http://www.jstacs.de/downloads/AnnoTALE-1.0-2GB.dmg AnnoTALE 1.0 2GB version], [http://www.jstacs.de/downloads/AnnoTALE-1.0-6GB.dmg AnnoTALE 1.0 6GB version]&lt;br /&gt;
* Windows installer of AnnoTALE including Java: [http://www.jstacs.de/downloads/AnnoTALE-1.0-2GB.exe AnnoTALE 1.0 2GB version, 64bit Java], [http://www.jstacs.de/downloads/AnnoTALE-1.0-6GB.exe AnnoTALE 1.0 6GB version, 64bit Java]; [http://www.jstacs.de/downloads/AnnoTALE-1.0-1GB.exe AnnoTALE 1.0 1GB version with 32bit Java]&lt;br /&gt;
* [http://www.jstacs.de/downloads/AnnoTALEcli-1.0.jar AnnoTALE 1.0 command line application]&lt;br /&gt;
&lt;br /&gt;
=== Class Builders ===&lt;br /&gt;
&lt;br /&gt;
* [http://www.jstacs.de/downloads/class_definitions_30_01_2024.xml.gz Version 30/01/2024]: used for &amp;quot;Download current definition&amp;quot; in &amp;quot;Load and View TALE Classes&amp;quot; within AnnoTALE version 1.4.1 and later&lt;br /&gt;
* [http://www.jstacs.de/downloads/class_definitions_29_07_2022.xml.gz Version 29/07/2022]: compatible with AnnoTALE version 1.4.1 and later&lt;br /&gt;
* [http://www.jstacs.de/downloads/class_definitions_17_08_2021.xml.gz Version 17/08/2021]: compatible with AnnoTALE version 1.4.1 and later&lt;br /&gt;
* [http://www.jstacs.de/downloads/class_definitions_09_05_2021.xml.gz Version 09/05/2021]: compatible with AnnoTALE version 1.4.1 and later&lt;br /&gt;
* [http://www.jstacs.de/downloads/class_definitions_10_10_2020.xml.gz Version 10/10/2020]: compatible with AnnoTALE version 1.4.1 and later&lt;br /&gt;
* [http://www.jstacs.de/downloads/class_definitions_20_06_2019.xml.gz Version 20/06/2019]: compatible with AnnoTALE version 1.4.1 and later&lt;br /&gt;
* [http://www.jstacs.de/downloads/class_definitions_29_09_2018.xml.gz Version 29/09/2018]: used for &amp;quot;Download current definition&amp;quot; in &amp;quot;Load and View TALE Classes&amp;quot; within AnnoTALE version 1.3 and later&lt;br /&gt;
* [http://www.jstacs.de/downloads/class_definitions_09_03_2017.xml Version 09/03/2017]: used for &amp;quot;Download current definition&amp;quot; in &amp;quot;Load and View TALE Classes&amp;quot; within AnnoTALE version 1.2 and earlier&lt;br /&gt;
* [http://www.jstacs.de/downloads/class_definitions_11_03_2016.xml Version 03/11/2016]&lt;br /&gt;
* [http://www.jstacs.de/downloads/class_definitions_29_01_2016.xml Version 01/29/2016]&lt;br /&gt;
* [http://www.jstacs.de/downloads/class_definitions_19_10.xml Version 10/19/2015]: used in the AnnoTALE publication (Grau &#039;&#039;et al.&#039;&#039;, Sci Rep, 2016)&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1197</id>
		<title>GeMoSeq</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1197"/>
		<updated>2025-04-15T13:54:35Z</updated>

		<summary type="html">&lt;p&gt;Grau: /* Version history */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GeMoRNA reconstructs genes and transcript models from mapped RNA-seq reads (in coordinate-sorted BAM format) and reports these in GFF format.&lt;br /&gt;
&lt;br /&gt;
It is intended as a companion for the homology-based gene prediction program [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In a typical workflow, predictions of transcript models may be obtained from GeMoRNA for a collection of BAM files individually and subsequently merged using the [[GeMoMa]] Annotation Filter (GAF). Optionally, homology-based gene prediction may be performed using [[GeMoMa]] and the resulting GFF files may be merged using the [[#Merge|Merge]] tool of GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Command line tool ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
GeMoRNA and auxiliary tools are packaged in one [http://www.jstacs.de/downloads/GeMoRNA-1.1.jar runnable JAR] that may be run from the command line with&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar&lt;br /&gt;
&lt;br /&gt;
which lists the tools available and usage information&lt;br /&gt;
&lt;br /&gt;
  Available tools:&lt;br /&gt;
 &lt;br /&gt;
 	gemorna - GeMoRNA&lt;br /&gt;
 	predictCDS - Predict CDS from GFF&lt;br /&gt;
 	GAF - GeMoMa Annotation Filter&lt;br /&gt;
 	Analyzer - Analyzer&lt;br /&gt;
 	merge - Merge&lt;br /&gt;
 &lt;br /&gt;
 Syntax: java -jar GeMoRNA-1.1.jar &amp;lt;toolname&amp;gt; [&amp;lt;parameter=value&amp;gt; ...]&lt;br /&gt;
 &lt;br /&gt;
 Further info about the tools is given with&lt;br /&gt;
 	java -jar GeMoRNA-1.1.jar &amp;lt;toolname&amp;gt; info&lt;br /&gt;
 &lt;br /&gt;
 For tests of individual tools:&lt;br /&gt;
 	java -jar GeMoRNA-1.1.jar &amp;lt;toolname&amp;gt; test [&amp;lt;verbose&amp;gt;]&lt;br /&gt;
 &lt;br /&gt;
 Tool parameters are listed with&lt;br /&gt;
 	java -jar GeMoRNA-1.1.jar &amp;lt;toolname&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You get a list of the tool parameters by calling GeMoRNA-1.0.jar with the corresponding tool name, e.g.,&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar gemorna&lt;br /&gt;
&lt;br /&gt;
The meaning of the individual tool parameters is described below.&lt;br /&gt;
For convenience, we also include the [[GeMoMa]] tools Analyzer and GAF.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
&lt;br /&gt;
The source code of GeMoRNA is available from the [https://github.com/Jstacs/Jstacs/tree/master/projects/gemorna Jstacs GitHub repository].&lt;br /&gt;
&lt;br /&gt;
== GeMoRNA ==&lt;br /&gt;
&lt;br /&gt;
Prediction of transcript models using GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar gemorna&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna,fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mapped reads (Mapped Reads in BAM format, coordinate sorted, type = bam)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;s&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Stranded (Library strandedness, range={FR_UNSTRANDED, FR_FIRST_STRAND, FR_SECOND_STRAND}, default = FR_UNSTRANDED)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Longest intron length (Length of the longest intron reported, default = 100000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sil&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Shortest intron length (Length of the shortest intron considered, default = 10)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;lr&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Long reads (Long-read mode, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of reads (Minimum number of reads required for an edge in the read graph, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of reads (Minimum fraction of reads relative to adjacent exons that must support an intron in the enumeration, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of intron reads (Minimum number of reads required for an intron, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of intron reads (Minimum fraction of reads relative to adjacent exons for an intron to be considered, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent explained (Percent of abundance that must be explained by transcript models after quantification, default = 0.9)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpg&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per gene (Minimum abundance required for a gene to be reported, default = 40.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpt&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per transcript (Minimum abundance required for a transcript to be reported, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;pa&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent abundance (Minimum relative abundance required for a transcript to be reported, default = 0.05)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sf&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Successive fraction (Factor of the drop in abundance between successive transcript models, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region length (Maximum length of a region considered before it is split, default = 750000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfgl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum filled gap length (Maximum length of a gap filled by dummy reads, default = 50)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;q&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Quality filter (Minimum mapping quality required for a read to be considered, default = 40)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mpl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gp&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene prefix (Prefix to add to all gene names, default = G)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gnwc&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene names with chromosome (If true, gene names will be constructed as &amp;lt;Gene prefix&amp;gt;&amp;lt;chr&amp;gt;.&amp;lt;geneNumber&amp;gt;. Gene numbers will be assigned successively across all chromosomes., default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;threads&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The number of threads used for the tool, defaults to 1. Currently, I/O of GeMoRNA runs on a single thread and runtime is limited by I/O performance. Hence, running GeMoRNA with a large number of threads is not recommended. On our infrastructure, a number of 6 threads has been the sweet spot.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar gemorna g=&amp;amp;lt;Genome&amp;amp;gt; m=&amp;amp;lt;Mapped_reads&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Predict CDS from GFF ==&lt;br /&gt;
&lt;br /&gt;
Prediction of CDSs using the longest-ORF heuristic based on an existing GFF or GTF file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Predict CDS from GFF&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar predictCDS&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna.fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (&amp;quot;GFF or GTF file containing the predicted annotation&amp;quot;, type = gff,gff3,gff.gz,gff3.gz,gtf,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar predictCDS g=&amp;amp;lt;Genome&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Merge ==&lt;br /&gt;
&lt;br /&gt;
Merging GeMoRNA and GeMoMa predictions.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Merge&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar merge&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa (GeMoMa predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA (GeMoRNA predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mode (, range={intersect, union, intermediate, annotate}, default = intersect)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;intersect&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;union&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;intermediate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;annotate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Low-confidence (include low-confidence predictions, default = true)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar merge g=&amp;amp;lt;GeMoMa&amp;amp;gt; GeMoRNA=&amp;amp;lt;GeMoRNA&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Version history ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://www.jstacs.de/downloads/GeMoRNA-1.0.jar Version 1.0]: initial version of GeMoRNA&lt;br /&gt;
* Version 1.1 (2025/04/15): changes in the following tools&lt;br /&gt;
** merge: include flag if low-confidence predictions will be included in &amp;quot;annotate&amp;quot; mode&lt;br /&gt;
** gemorna: allow to provide custom prefix for gene names and to include the chromosome into the gene names&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1196</id>
		<title>GeMoSeq</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1196"/>
		<updated>2025-04-15T13:54:20Z</updated>

		<summary type="html">&lt;p&gt;Grau: /* Command line tool */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GeMoRNA reconstructs genes and transcript models from mapped RNA-seq reads (in coordinate-sorted BAM format) and reports these in GFF format.&lt;br /&gt;
&lt;br /&gt;
It is intended as a companion for the homology-based gene prediction program [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In a typical workflow, predictions of transcript models may be obtained from GeMoRNA for a collection of BAM files individually and subsequently merged using the [[GeMoMa]] Annotation Filter (GAF). Optionally, homology-based gene prediction may be performed using [[GeMoMa]] and the resulting GFF files may be merged using the [[#Merge|Merge]] tool of GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Command line tool ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
GeMoRNA and auxiliary tools are packaged in one [http://www.jstacs.de/downloads/GeMoRNA-1.1.jar runnable JAR] that may be run from the command line with&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar&lt;br /&gt;
&lt;br /&gt;
which lists the tools available and usage information&lt;br /&gt;
&lt;br /&gt;
  Available tools:&lt;br /&gt;
 &lt;br /&gt;
 	gemorna - GeMoRNA&lt;br /&gt;
 	predictCDS - Predict CDS from GFF&lt;br /&gt;
 	GAF - GeMoMa Annotation Filter&lt;br /&gt;
 	Analyzer - Analyzer&lt;br /&gt;
 	merge - Merge&lt;br /&gt;
 &lt;br /&gt;
 Syntax: java -jar GeMoRNA-1.1.jar &amp;lt;toolname&amp;gt; [&amp;lt;parameter=value&amp;gt; ...]&lt;br /&gt;
 &lt;br /&gt;
 Further info about the tools is given with&lt;br /&gt;
 	java -jar GeMoRNA-1.1.jar &amp;lt;toolname&amp;gt; info&lt;br /&gt;
 &lt;br /&gt;
 For tests of individual tools:&lt;br /&gt;
 	java -jar GeMoRNA-1.1.jar &amp;lt;toolname&amp;gt; test [&amp;lt;verbose&amp;gt;]&lt;br /&gt;
 &lt;br /&gt;
 Tool parameters are listed with&lt;br /&gt;
 	java -jar GeMoRNA-1.1.jar &amp;lt;toolname&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You get a list of the tool parameters by calling GeMoRNA-1.0.jar with the corresponding tool name, e.g.,&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar gemorna&lt;br /&gt;
&lt;br /&gt;
The meaning of the individual tool parameters is described below.&lt;br /&gt;
For convenience, we also include the [[GeMoMa]] tools Analyzer and GAF.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
&lt;br /&gt;
The source code of GeMoRNA is available from the [https://github.com/Jstacs/Jstacs/tree/master/projects/gemorna Jstacs GitHub repository].&lt;br /&gt;
&lt;br /&gt;
== GeMoRNA ==&lt;br /&gt;
&lt;br /&gt;
Prediction of transcript models using GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar gemorna&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna,fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mapped reads (Mapped Reads in BAM format, coordinate sorted, type = bam)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;s&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Stranded (Library strandedness, range={FR_UNSTRANDED, FR_FIRST_STRAND, FR_SECOND_STRAND}, default = FR_UNSTRANDED)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Longest intron length (Length of the longest intron reported, default = 100000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sil&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Shortest intron length (Length of the shortest intron considered, default = 10)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;lr&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Long reads (Long-read mode, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of reads (Minimum number of reads required for an edge in the read graph, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of reads (Minimum fraction of reads relative to adjacent exons that must support an intron in the enumeration, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of intron reads (Minimum number of reads required for an intron, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of intron reads (Minimum fraction of reads relative to adjacent exons for an intron to be considered, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent explained (Percent of abundance that must be explained by transcript models after quantification, default = 0.9)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpg&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per gene (Minimum abundance required for a gene to be reported, default = 40.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpt&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per transcript (Minimum abundance required for a transcript to be reported, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;pa&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent abundance (Minimum relative abundance required for a transcript to be reported, default = 0.05)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sf&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Successive fraction (Factor of the drop in abundance between successive transcript models, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region length (Maximum length of a region considered before it is split, default = 750000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfgl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum filled gap length (Maximum length of a gap filled by dummy reads, default = 50)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;q&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Quality filter (Minimum mapping quality required for a read to be considered, default = 40)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mpl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gp&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene prefix (Prefix to add to all gene names, default = G)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gnwc&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene names with chromosome (If true, gene names will be constructed as &amp;lt;Gene prefix&amp;gt;&amp;lt;chr&amp;gt;.&amp;lt;geneNumber&amp;gt;. Gene numbers will be assigned successively across all chromosomes., default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;threads&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The number of threads used for the tool, defaults to 1. Currently, I/O of GeMoRNA runs on a single thread and runtime is limited by I/O performance. Hence, running GeMoRNA with a large number of threads is not recommended. On our infrastructure, a number of 6 threads has been the sweet spot.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar gemorna g=&amp;amp;lt;Genome&amp;amp;gt; m=&amp;amp;lt;Mapped_reads&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Predict CDS from GFF ==&lt;br /&gt;
&lt;br /&gt;
Prediction of CDSs using the longest-ORF heuristic based on an existing GFF or GTF file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Predict CDS from GFF&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar predictCDS&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna.fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (&amp;quot;GFF or GTF file containing the predicted annotation&amp;quot;, type = gff,gff3,gff.gz,gff3.gz,gtf,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar predictCDS g=&amp;amp;lt;Genome&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Merge ==&lt;br /&gt;
&lt;br /&gt;
Merging GeMoRNA and GeMoMa predictions.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Merge&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar merge&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa (GeMoMa predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA (GeMoRNA predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mode (, range={intersect, union, intermediate, annotate}, default = intersect)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;intersect&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;union&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;intermediate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;annotate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Low-confidence (include low-confidence predictions, default = true)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar merge g=&amp;amp;lt;GeMoMa&amp;amp;gt; GeMoRNA=&amp;amp;lt;GeMoRNA&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Version history ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Version 1.0: initial version of GeMoRNA&lt;br /&gt;
* Version 1.1 (2025/04/15): changes in the following tools&lt;br /&gt;
** merge: include flag if low-confidence predictions will be included in &amp;quot;annotate&amp;quot; mode&lt;br /&gt;
** gemorna: allow to provide custom prefix for gene names and to include the chromosome into the gene names&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1195</id>
		<title>GeMoSeq</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1195"/>
		<updated>2025-04-15T13:53:45Z</updated>

		<summary type="html">&lt;p&gt;Grau: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GeMoRNA reconstructs genes and transcript models from mapped RNA-seq reads (in coordinate-sorted BAM format) and reports these in GFF format.&lt;br /&gt;
&lt;br /&gt;
It is intended as a companion for the homology-based gene prediction program [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In a typical workflow, predictions of transcript models may be obtained from GeMoRNA for a collection of BAM files individually and subsequently merged using the [[GeMoMa]] Annotation Filter (GAF). Optionally, homology-based gene prediction may be performed using [[GeMoMa]] and the resulting GFF files may be merged using the [[#Merge|Merge]] tool of GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Command line tool ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
GeMoRNA and auxiliary tools are packaged in one [http://www.jstacs.de/downloads/GeMoRNA-1.0.jar runnable JAR] that may be run from the command line with&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar&lt;br /&gt;
&lt;br /&gt;
which lists the tools available and usage information&lt;br /&gt;
&lt;br /&gt;
  Available tools:&lt;br /&gt;
 &lt;br /&gt;
 	gemorna - GeMoRNA&lt;br /&gt;
 	predictCDS - Predict CDS from GFF&lt;br /&gt;
 	GAF - GeMoMa Annotation Filter&lt;br /&gt;
 	Analyzer - Analyzer&lt;br /&gt;
 	merge - Merge&lt;br /&gt;
 &lt;br /&gt;
 Syntax: java -jar GeMoRNA-1.1.jar &amp;lt;toolname&amp;gt; [&amp;lt;parameter=value&amp;gt; ...]&lt;br /&gt;
 &lt;br /&gt;
 Further info about the tools is given with&lt;br /&gt;
 	java -jar GeMoRNA-1.1.jar &amp;lt;toolname&amp;gt; info&lt;br /&gt;
 &lt;br /&gt;
 For tests of individual tools:&lt;br /&gt;
 	java -jar GeMoRNA-1.1.jar &amp;lt;toolname&amp;gt; test [&amp;lt;verbose&amp;gt;]&lt;br /&gt;
 &lt;br /&gt;
 Tool parameters are listed with&lt;br /&gt;
 	java -jar GeMoRNA-1.1.jar &amp;lt;toolname&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You get a list of the tool parameters by calling GeMoRNA-1.0.jar with the corresponding tool name, e.g.,&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar gemorna&lt;br /&gt;
&lt;br /&gt;
The meaning of the individual tool parameters is described below.&lt;br /&gt;
For convenience, we also include the [[GeMoMa]] tools Analyzer and GAF.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
&lt;br /&gt;
The source code of GeMoRNA is available from the [https://github.com/Jstacs/Jstacs/tree/master/projects/gemorna Jstacs GitHub repository].&lt;br /&gt;
&lt;br /&gt;
== GeMoRNA ==&lt;br /&gt;
&lt;br /&gt;
Prediction of transcript models using GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar gemorna&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna,fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mapped reads (Mapped Reads in BAM format, coordinate sorted, type = bam)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;s&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Stranded (Library strandedness, range={FR_UNSTRANDED, FR_FIRST_STRAND, FR_SECOND_STRAND}, default = FR_UNSTRANDED)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Longest intron length (Length of the longest intron reported, default = 100000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sil&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Shortest intron length (Length of the shortest intron considered, default = 10)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;lr&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Long reads (Long-read mode, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of reads (Minimum number of reads required for an edge in the read graph, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of reads (Minimum fraction of reads relative to adjacent exons that must support an intron in the enumeration, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of intron reads (Minimum number of reads required for an intron, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of intron reads (Minimum fraction of reads relative to adjacent exons for an intron to be considered, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent explained (Percent of abundance that must be explained by transcript models after quantification, default = 0.9)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpg&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per gene (Minimum abundance required for a gene to be reported, default = 40.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpt&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per transcript (Minimum abundance required for a transcript to be reported, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;pa&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent abundance (Minimum relative abundance required for a transcript to be reported, default = 0.05)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sf&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Successive fraction (Factor of the drop in abundance between successive transcript models, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region length (Maximum length of a region considered before it is split, default = 750000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfgl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum filled gap length (Maximum length of a gap filled by dummy reads, default = 50)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;q&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Quality filter (Minimum mapping quality required for a read to be considered, default = 40)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mpl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gp&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene prefix (Prefix to add to all gene names, default = G)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gnwc&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene names with chromosome (If true, gene names will be constructed as &amp;lt;Gene prefix&amp;gt;&amp;lt;chr&amp;gt;.&amp;lt;geneNumber&amp;gt;. Gene numbers will be assigned successively across all chromosomes., default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;threads&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The number of threads used for the tool, defaults to 1. Currently, I/O of GeMoRNA runs on a single thread and runtime is limited by I/O performance. Hence, running GeMoRNA with a large number of threads is not recommended. On our infrastructure, a number of 6 threads has been the sweet spot.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar gemorna g=&amp;amp;lt;Genome&amp;amp;gt; m=&amp;amp;lt;Mapped_reads&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Predict CDS from GFF ==&lt;br /&gt;
&lt;br /&gt;
Prediction of CDSs using the longest-ORF heuristic based on an existing GFF or GTF file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Predict CDS from GFF&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar predictCDS&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna.fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (&amp;quot;GFF or GTF file containing the predicted annotation&amp;quot;, type = gff,gff3,gff.gz,gff3.gz,gtf,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar predictCDS g=&amp;amp;lt;Genome&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Merge ==&lt;br /&gt;
&lt;br /&gt;
Merging GeMoRNA and GeMoMa predictions.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Merge&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar merge&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa (GeMoMa predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA (GeMoRNA predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mode (, range={intersect, union, intermediate, annotate}, default = intersect)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;intersect&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;union&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;intermediate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;annotate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Low-confidence (include low-confidence predictions, default = true)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar merge g=&amp;amp;lt;GeMoMa&amp;amp;gt; GeMoRNA=&amp;amp;lt;GeMoRNA&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Version history ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Version 1.0: initial version of GeMoRNA&lt;br /&gt;
* Version 1.1 (2025/04/15): changes in the following tools&lt;br /&gt;
** merge: include flag if low-confidence predictions will be included in &amp;quot;annotate&amp;quot; mode&lt;br /&gt;
** gemorna: allow to provide custom prefix for gene names and to include the chromosome into the gene names&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1194</id>
		<title>GeMoSeq</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1194"/>
		<updated>2025-04-15T13:49:18Z</updated>

		<summary type="html">&lt;p&gt;Grau: /* Merge */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GeMoRNA reconstructs genes and transcript models from mapped RNA-seq reads (in coordinate-sorted BAM format) and reports these in GFF format.&lt;br /&gt;
&lt;br /&gt;
It is intended as a companion for the homology-based gene prediction program [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In a typical workflow, predictions of transcript models may be obtained from GeMoRNA for a collection of BAM files individually and subsequently merged using the [[GeMoMa]] Annotation Filter (GAF). Optionally, homology-based gene prediction may be performed using [[GeMoMa]] and the resulting GFF files may be merged using the [[#Merge|Merge]] tool of GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Command line tool ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
GeMoRNA and auxiliary tools are packaged in one [http://www.jstacs.de/downloads/GeMoRNA-1.0.jar runnable JAR] that may be run from the command line with&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar&lt;br /&gt;
&lt;br /&gt;
which lists the tools available and usage information&lt;br /&gt;
&lt;br /&gt;
  Available tools:&lt;br /&gt;
 &lt;br /&gt;
 	gemorna - GeMoRNA&lt;br /&gt;
 	predictCDS - Predict CDS from GFF&lt;br /&gt;
 	GAF - GeMoMa Annotation Filter&lt;br /&gt;
 	Analyzer - Analyzer&lt;br /&gt;
 	merge - Merge&lt;br /&gt;
 &lt;br /&gt;
 Syntax: java -jar GeMoRNA-1.1.jar &amp;lt;toolname&amp;gt; [&amp;lt;parameter=value&amp;gt; ...]&lt;br /&gt;
 &lt;br /&gt;
 Further info about the tools is given with&lt;br /&gt;
 	java -jar GeMoRNA-1.1.jar &amp;lt;toolname&amp;gt; info&lt;br /&gt;
 &lt;br /&gt;
 For tests of individual tools:&lt;br /&gt;
 	java -jar GeMoRNA-1.1.jar &amp;lt;toolname&amp;gt; test [&amp;lt;verbose&amp;gt;]&lt;br /&gt;
 &lt;br /&gt;
 Tool parameters are listed with&lt;br /&gt;
 	java -jar GeMoRNA-1.1.jar &amp;lt;toolname&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You get a list of the tool parameters by calling GeMoRNA-1.0.jar with the corresponding tool name, e.g.,&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar gemorna&lt;br /&gt;
&lt;br /&gt;
The meaning of the individual tool parameters is described below.&lt;br /&gt;
For convenience, we also include the [[GeMoMa]] tools Analyzer and GAF.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
&lt;br /&gt;
The source code of GeMoRNA is available from the [https://github.com/Jstacs/Jstacs/tree/master/projects/gemorna Jstacs GitHub repository].&lt;br /&gt;
&lt;br /&gt;
== GeMoRNA ==&lt;br /&gt;
&lt;br /&gt;
Prediction of transcript models using GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar gemorna&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna,fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mapped reads (Mapped Reads in BAM format, coordinate sorted, type = bam)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;s&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Stranded (Library strandedness, range={FR_UNSTRANDED, FR_FIRST_STRAND, FR_SECOND_STRAND}, default = FR_UNSTRANDED)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Longest intron length (Length of the longest intron reported, default = 100000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sil&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Shortest intron length (Length of the shortest intron considered, default = 10)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;lr&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Long reads (Long-read mode, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of reads (Minimum number of reads required for an edge in the read graph, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of reads (Minimum fraction of reads relative to adjacent exons that must support an intron in the enumeration, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of intron reads (Minimum number of reads required for an intron, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of intron reads (Minimum fraction of reads relative to adjacent exons for an intron to be considered, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent explained (Percent of abundance that must be explained by transcript models after quantification, default = 0.9)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpg&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per gene (Minimum abundance required for a gene to be reported, default = 40.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpt&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per transcript (Minimum abundance required for a transcript to be reported, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;pa&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent abundance (Minimum relative abundance required for a transcript to be reported, default = 0.05)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sf&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Successive fraction (Factor of the drop in abundance between successive transcript models, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region length (Maximum length of a region considered before it is split, default = 750000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfgl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum filled gap length (Maximum length of a gap filled by dummy reads, default = 50)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;q&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Quality filter (Minimum mapping quality required for a read to be considered, default = 40)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mpl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gp&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene prefix (Prefix to add to all gene names, default = G)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gnwc&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene names with chromosome (If true, gene names will be constructed as &amp;lt;Gene prefix&amp;gt;&amp;lt;chr&amp;gt;.&amp;lt;geneNumber&amp;gt;. Gene numbers will be assigned successively across all chromosomes., default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;threads&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The number of threads used for the tool, defaults to 1. Currently, I/O of GeMoRNA runs on a single thread and runtime is limited by I/O performance. Hence, running GeMoRNA with a large number of threads is not recommended. On our infrastructure, a number of 6 threads has been the sweet spot.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar gemorna g=&amp;amp;lt;Genome&amp;amp;gt; m=&amp;amp;lt;Mapped_reads&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Predict CDS from GFF ==&lt;br /&gt;
&lt;br /&gt;
Prediction of CDSs using the longest-ORF heuristic based on an existing GFF or GTF file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Predict CDS from GFF&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar predictCDS&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna.fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (&amp;quot;GFF or GTF file containing the predicted annotation&amp;quot;, type = gff,gff3,gff.gz,gff3.gz,gtf,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar predictCDS g=&amp;amp;lt;Genome&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Merge ==&lt;br /&gt;
&lt;br /&gt;
Merging GeMoRNA and GeMoMa predictions.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Merge&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar merge&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa (GeMoMa predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA (GeMoRNA predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mode (, range={intersect, union, intermediate, annotate}, default = intersect)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;intersect&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;union&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;intermediate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;annotate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Low-confidence (include low-confidence predictions, default = true)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar merge g=&amp;amp;lt;GeMoMa&amp;amp;gt; GeMoRNA=&amp;amp;lt;GeMoRNA&amp;amp;gt;&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1193</id>
		<title>GeMoSeq</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1193"/>
		<updated>2025-04-15T13:48:31Z</updated>

		<summary type="html">&lt;p&gt;Grau: /* Merge */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GeMoRNA reconstructs genes and transcript models from mapped RNA-seq reads (in coordinate-sorted BAM format) and reports these in GFF format.&lt;br /&gt;
&lt;br /&gt;
It is intended as a companion for the homology-based gene prediction program [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In a typical workflow, predictions of transcript models may be obtained from GeMoRNA for a collection of BAM files individually and subsequently merged using the [[GeMoMa]] Annotation Filter (GAF). Optionally, homology-based gene prediction may be performed using [[GeMoMa]] and the resulting GFF files may be merged using the [[#Merge|Merge]] tool of GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Command line tool ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
GeMoRNA and auxiliary tools are packaged in one [http://www.jstacs.de/downloads/GeMoRNA-1.0.jar runnable JAR] that may be run from the command line with&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar&lt;br /&gt;
&lt;br /&gt;
which lists the tools available and usage information&lt;br /&gt;
&lt;br /&gt;
  Available tools:&lt;br /&gt;
 &lt;br /&gt;
 	gemorna - GeMoRNA&lt;br /&gt;
 	predictCDS - Predict CDS from GFF&lt;br /&gt;
 	GAF - GeMoMa Annotation Filter&lt;br /&gt;
 	Analyzer - Analyzer&lt;br /&gt;
 	merge - Merge&lt;br /&gt;
 &lt;br /&gt;
 Syntax: java -jar GeMoRNA-1.1.jar &amp;lt;toolname&amp;gt; [&amp;lt;parameter=value&amp;gt; ...]&lt;br /&gt;
 &lt;br /&gt;
 Further info about the tools is given with&lt;br /&gt;
 	java -jar GeMoRNA-1.1.jar &amp;lt;toolname&amp;gt; info&lt;br /&gt;
 &lt;br /&gt;
 For tests of individual tools:&lt;br /&gt;
 	java -jar GeMoRNA-1.1.jar &amp;lt;toolname&amp;gt; test [&amp;lt;verbose&amp;gt;]&lt;br /&gt;
 &lt;br /&gt;
 Tool parameters are listed with&lt;br /&gt;
 	java -jar GeMoRNA-1.1.jar &amp;lt;toolname&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You get a list of the tool parameters by calling GeMoRNA-1.0.jar with the corresponding tool name, e.g.,&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar gemorna&lt;br /&gt;
&lt;br /&gt;
The meaning of the individual tool parameters is described below.&lt;br /&gt;
For convenience, we also include the [[GeMoMa]] tools Analyzer and GAF.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
&lt;br /&gt;
The source code of GeMoRNA is available from the [https://github.com/Jstacs/Jstacs/tree/master/projects/gemorna Jstacs GitHub repository].&lt;br /&gt;
&lt;br /&gt;
== GeMoRNA ==&lt;br /&gt;
&lt;br /&gt;
Prediction of transcript models using GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar gemorna&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna,fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mapped reads (Mapped Reads in BAM format, coordinate sorted, type = bam)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;s&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Stranded (Library strandedness, range={FR_UNSTRANDED, FR_FIRST_STRAND, FR_SECOND_STRAND}, default = FR_UNSTRANDED)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Longest intron length (Length of the longest intron reported, default = 100000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sil&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Shortest intron length (Length of the shortest intron considered, default = 10)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;lr&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Long reads (Long-read mode, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of reads (Minimum number of reads required for an edge in the read graph, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of reads (Minimum fraction of reads relative to adjacent exons that must support an intron in the enumeration, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of intron reads (Minimum number of reads required for an intron, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of intron reads (Minimum fraction of reads relative to adjacent exons for an intron to be considered, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent explained (Percent of abundance that must be explained by transcript models after quantification, default = 0.9)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpg&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per gene (Minimum abundance required for a gene to be reported, default = 40.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpt&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per transcript (Minimum abundance required for a transcript to be reported, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;pa&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent abundance (Minimum relative abundance required for a transcript to be reported, default = 0.05)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sf&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Successive fraction (Factor of the drop in abundance between successive transcript models, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region length (Maximum length of a region considered before it is split, default = 750000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfgl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum filled gap length (Maximum length of a gap filled by dummy reads, default = 50)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;q&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Quality filter (Minimum mapping quality required for a read to be considered, default = 40)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mpl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gp&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene prefix (Prefix to add to all gene names, default = G)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gnwc&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene names with chromosome (If true, gene names will be constructed as &amp;lt;Gene prefix&amp;gt;&amp;lt;chr&amp;gt;.&amp;lt;geneNumber&amp;gt;. Gene numbers will be assigned successively across all chromosomes., default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;threads&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The number of threads used for the tool, defaults to 1. Currently, I/O of GeMoRNA runs on a single thread and runtime is limited by I/O performance. Hence, running GeMoRNA with a large number of threads is not recommended. On our infrastructure, a number of 6 threads has been the sweet spot.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar gemorna g=&amp;amp;lt;Genome&amp;amp;gt; m=&amp;amp;lt;Mapped_reads&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Predict CDS from GFF ==&lt;br /&gt;
&lt;br /&gt;
Prediction of CDSs using the longest-ORF heuristic based on an existing GFF or GTF file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Predict CDS from GFF&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar predictCDS&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna.fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (&amp;quot;GFF or GTF file containing the predicted annotation&amp;quot;, type = gff,gff3,gff.gz,gff3.gz,gtf,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar predictCDS g=&amp;amp;lt;Genome&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Merge ==&lt;br /&gt;
&lt;br /&gt;
Merging GeMoRNA and GeMoMa predictions.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Merge&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar merge&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa (GeMoMa predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA (GeMoRNA predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mode (, range={intersect, union, intermediate, annotate}, default = intersect)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;intersect&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;union&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;intermediate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;annotate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Low-confidence (include low-confidence predictions, default = true)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar merge g=&amp;amp;lt;GeMoMa&amp;amp;gt; GeMoRNA=&amp;amp;lt;GeMoRNA&amp;amp;gt;&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1192</id>
		<title>GeMoSeq</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1192"/>
		<updated>2025-04-15T13:46:50Z</updated>

		<summary type="html">&lt;p&gt;Grau: /* Predict CDS from GFF */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GeMoRNA reconstructs genes and transcript models from mapped RNA-seq reads (in coordinate-sorted BAM format) and reports these in GFF format.&lt;br /&gt;
&lt;br /&gt;
It is intended as a companion for the homology-based gene prediction program [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In a typical workflow, predictions of transcript models may be obtained from GeMoRNA for a collection of BAM files individually and subsequently merged using the [[GeMoMa]] Annotation Filter (GAF). Optionally, homology-based gene prediction may be performed using [[GeMoMa]] and the resulting GFF files may be merged using the [[#Merge|Merge]] tool of GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Command line tool ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
GeMoRNA and auxiliary tools are packaged in one [http://www.jstacs.de/downloads/GeMoRNA-1.0.jar runnable JAR] that may be run from the command line with&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar&lt;br /&gt;
&lt;br /&gt;
which lists the tools available and usage information&lt;br /&gt;
&lt;br /&gt;
  Available tools:&lt;br /&gt;
 &lt;br /&gt;
 	gemorna - GeMoRNA&lt;br /&gt;
 	predictCDS - Predict CDS from GFF&lt;br /&gt;
 	GAF - GeMoMa Annotation Filter&lt;br /&gt;
 	Analyzer - Analyzer&lt;br /&gt;
 	merge - Merge&lt;br /&gt;
 &lt;br /&gt;
 Syntax: java -jar GeMoRNA-1.1.jar &amp;lt;toolname&amp;gt; [&amp;lt;parameter=value&amp;gt; ...]&lt;br /&gt;
 &lt;br /&gt;
 Further info about the tools is given with&lt;br /&gt;
 	java -jar GeMoRNA-1.1.jar &amp;lt;toolname&amp;gt; info&lt;br /&gt;
 &lt;br /&gt;
 For tests of individual tools:&lt;br /&gt;
 	java -jar GeMoRNA-1.1.jar &amp;lt;toolname&amp;gt; test [&amp;lt;verbose&amp;gt;]&lt;br /&gt;
 &lt;br /&gt;
 Tool parameters are listed with&lt;br /&gt;
 	java -jar GeMoRNA-1.1.jar &amp;lt;toolname&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You get a list of the tool parameters by calling GeMoRNA-1.0.jar with the corresponding tool name, e.g.,&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar gemorna&lt;br /&gt;
&lt;br /&gt;
The meaning of the individual tool parameters is described below.&lt;br /&gt;
For convenience, we also include the [[GeMoMa]] tools Analyzer and GAF.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
&lt;br /&gt;
The source code of GeMoRNA is available from the [https://github.com/Jstacs/Jstacs/tree/master/projects/gemorna Jstacs GitHub repository].&lt;br /&gt;
&lt;br /&gt;
== GeMoRNA ==&lt;br /&gt;
&lt;br /&gt;
Prediction of transcript models using GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar gemorna&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna,fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mapped reads (Mapped Reads in BAM format, coordinate sorted, type = bam)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;s&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Stranded (Library strandedness, range={FR_UNSTRANDED, FR_FIRST_STRAND, FR_SECOND_STRAND}, default = FR_UNSTRANDED)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Longest intron length (Length of the longest intron reported, default = 100000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sil&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Shortest intron length (Length of the shortest intron considered, default = 10)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;lr&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Long reads (Long-read mode, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of reads (Minimum number of reads required for an edge in the read graph, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of reads (Minimum fraction of reads relative to adjacent exons that must support an intron in the enumeration, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of intron reads (Minimum number of reads required for an intron, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of intron reads (Minimum fraction of reads relative to adjacent exons for an intron to be considered, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent explained (Percent of abundance that must be explained by transcript models after quantification, default = 0.9)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpg&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per gene (Minimum abundance required for a gene to be reported, default = 40.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpt&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per transcript (Minimum abundance required for a transcript to be reported, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;pa&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent abundance (Minimum relative abundance required for a transcript to be reported, default = 0.05)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sf&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Successive fraction (Factor of the drop in abundance between successive transcript models, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region length (Maximum length of a region considered before it is split, default = 750000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfgl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum filled gap length (Maximum length of a gap filled by dummy reads, default = 50)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;q&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Quality filter (Minimum mapping quality required for a read to be considered, default = 40)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mpl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gp&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene prefix (Prefix to add to all gene names, default = G)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gnwc&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene names with chromosome (If true, gene names will be constructed as &amp;lt;Gene prefix&amp;gt;&amp;lt;chr&amp;gt;.&amp;lt;geneNumber&amp;gt;. Gene numbers will be assigned successively across all chromosomes., default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;threads&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The number of threads used for the tool, defaults to 1. Currently, I/O of GeMoRNA runs on a single thread and runtime is limited by I/O performance. Hence, running GeMoRNA with a large number of threads is not recommended. On our infrastructure, a number of 6 threads has been the sweet spot.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar gemorna g=&amp;amp;lt;Genome&amp;amp;gt; m=&amp;amp;lt;Mapped_reads&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Predict CDS from GFF ==&lt;br /&gt;
&lt;br /&gt;
Prediction of CDSs using the longest-ORF heuristic based on an existing GFF or GTF file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Predict CDS from GFF&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar predictCDS&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna.fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (&amp;quot;GFF or GTF file containing the predicted annotation&amp;quot;, type = gff,gff3,gff.gz,gff3.gz,gtf,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar predictCDS g=&amp;amp;lt;Genome&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Merge ==&lt;br /&gt;
&lt;br /&gt;
Merging GeMoRNA and GeMoMa predictions.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Merge&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar merge&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa (GeMoMa predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA (GeMoRNA predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mode (, range={intersect, union, intermediate, annotate}, default = intersect)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;intersect&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;union&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;intermediate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;annotate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar merge g=&amp;amp;lt;GeMoMa&amp;amp;gt; GeMoRNA=&amp;amp;lt;GeMoRNA&amp;amp;gt;&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1191</id>
		<title>GeMoSeq</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1191"/>
		<updated>2025-04-15T13:46:21Z</updated>

		<summary type="html">&lt;p&gt;Grau: /* GeMoRNA */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GeMoRNA reconstructs genes and transcript models from mapped RNA-seq reads (in coordinate-sorted BAM format) and reports these in GFF format.&lt;br /&gt;
&lt;br /&gt;
It is intended as a companion for the homology-based gene prediction program [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In a typical workflow, predictions of transcript models may be obtained from GeMoRNA for a collection of BAM files individually and subsequently merged using the [[GeMoMa]] Annotation Filter (GAF). Optionally, homology-based gene prediction may be performed using [[GeMoMa]] and the resulting GFF files may be merged using the [[#Merge|Merge]] tool of GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Command line tool ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
GeMoRNA and auxiliary tools are packaged in one [http://www.jstacs.de/downloads/GeMoRNA-1.0.jar runnable JAR] that may be run from the command line with&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar&lt;br /&gt;
&lt;br /&gt;
which lists the tools available and usage information&lt;br /&gt;
&lt;br /&gt;
  Available tools:&lt;br /&gt;
 &lt;br /&gt;
 	gemorna - GeMoRNA&lt;br /&gt;
 	predictCDS - Predict CDS from GFF&lt;br /&gt;
 	GAF - GeMoMa Annotation Filter&lt;br /&gt;
 	Analyzer - Analyzer&lt;br /&gt;
 	merge - Merge&lt;br /&gt;
 &lt;br /&gt;
 Syntax: java -jar GeMoRNA-1.1.jar &amp;lt;toolname&amp;gt; [&amp;lt;parameter=value&amp;gt; ...]&lt;br /&gt;
 &lt;br /&gt;
 Further info about the tools is given with&lt;br /&gt;
 	java -jar GeMoRNA-1.1.jar &amp;lt;toolname&amp;gt; info&lt;br /&gt;
 &lt;br /&gt;
 For tests of individual tools:&lt;br /&gt;
 	java -jar GeMoRNA-1.1.jar &amp;lt;toolname&amp;gt; test [&amp;lt;verbose&amp;gt;]&lt;br /&gt;
 &lt;br /&gt;
 Tool parameters are listed with&lt;br /&gt;
 	java -jar GeMoRNA-1.1.jar &amp;lt;toolname&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You get a list of the tool parameters by calling GeMoRNA-1.0.jar with the corresponding tool name, e.g.,&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar gemorna&lt;br /&gt;
&lt;br /&gt;
The meaning of the individual tool parameters is described below.&lt;br /&gt;
For convenience, we also include the [[GeMoMa]] tools Analyzer and GAF.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
&lt;br /&gt;
The source code of GeMoRNA is available from the [https://github.com/Jstacs/Jstacs/tree/master/projects/gemorna Jstacs GitHub repository].&lt;br /&gt;
&lt;br /&gt;
== GeMoRNA ==&lt;br /&gt;
&lt;br /&gt;
Prediction of transcript models using GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar gemorna&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna,fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mapped reads (Mapped Reads in BAM format, coordinate sorted, type = bam)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;s&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Stranded (Library strandedness, range={FR_UNSTRANDED, FR_FIRST_STRAND, FR_SECOND_STRAND}, default = FR_UNSTRANDED)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Longest intron length (Length of the longest intron reported, default = 100000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sil&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Shortest intron length (Length of the shortest intron considered, default = 10)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;lr&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Long reads (Long-read mode, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of reads (Minimum number of reads required for an edge in the read graph, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of reads (Minimum fraction of reads relative to adjacent exons that must support an intron in the enumeration, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of intron reads (Minimum number of reads required for an intron, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of intron reads (Minimum fraction of reads relative to adjacent exons for an intron to be considered, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent explained (Percent of abundance that must be explained by transcript models after quantification, default = 0.9)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpg&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per gene (Minimum abundance required for a gene to be reported, default = 40.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpt&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per transcript (Minimum abundance required for a transcript to be reported, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;pa&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent abundance (Minimum relative abundance required for a transcript to be reported, default = 0.05)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sf&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Successive fraction (Factor of the drop in abundance between successive transcript models, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region length (Maximum length of a region considered before it is split, default = 750000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfgl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum filled gap length (Maximum length of a gap filled by dummy reads, default = 50)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;q&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Quality filter (Minimum mapping quality required for a read to be considered, default = 40)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mpl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gp&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene prefix (Prefix to add to all gene names, default = G)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;gnwc&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Gene names with chromosome (If true, gene names will be constructed as &amp;lt;Gene prefix&amp;gt;&amp;lt;chr&amp;gt;.&amp;lt;geneNumber&amp;gt;. Gene numbers will be assigned successively across all chromosomes., default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;threads&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The number of threads used for the tool, defaults to 1. Currently, I/O of GeMoRNA runs on a single thread and runtime is limited by I/O performance. Hence, running GeMoRNA with a large number of threads is not recommended. On our infrastructure, a number of 6 threads has been the sweet spot.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar gemorna g=&amp;amp;lt;Genome&amp;amp;gt; m=&amp;amp;lt;Mapped_reads&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Predict CDS from GFF ==&lt;br /&gt;
&lt;br /&gt;
Prediction of CDSs using the longest-ORF heuristic based on an existing GFF or GTF file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Predict CDS from GFF&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar predictCDS&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna.fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (&amp;quot;GFF or GTF file containing the predicted annotation&amp;quot;, type = gff,gff3,gff.gz,gff3.gz,gtf,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar predictCDS g=&amp;amp;lt;Genome&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Merge ==&lt;br /&gt;
&lt;br /&gt;
Merging GeMoRNA and GeMoMa predictions.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Merge&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar merge&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa (GeMoMa predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA (GeMoRNA predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mode (, range={intersect, union, intermediate, annotate}, default = intersect)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;intersect&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;union&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;intermediate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;annotate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar merge g=&amp;amp;lt;GeMoMa&amp;amp;gt; GeMoRNA=&amp;amp;lt;GeMoRNA&amp;amp;gt;&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1190</id>
		<title>GeMoSeq</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1190"/>
		<updated>2025-04-15T13:45:07Z</updated>

		<summary type="html">&lt;p&gt;Grau: /* Command line tool */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GeMoRNA reconstructs genes and transcript models from mapped RNA-seq reads (in coordinate-sorted BAM format) and reports these in GFF format.&lt;br /&gt;
&lt;br /&gt;
It is intended as a companion for the homology-based gene prediction program [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In a typical workflow, predictions of transcript models may be obtained from GeMoRNA for a collection of BAM files individually and subsequently merged using the [[GeMoMa]] Annotation Filter (GAF). Optionally, homology-based gene prediction may be performed using [[GeMoMa]] and the resulting GFF files may be merged using the [[#Merge|Merge]] tool of GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Command line tool ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
GeMoRNA and auxiliary tools are packaged in one [http://www.jstacs.de/downloads/GeMoRNA-1.0.jar runnable JAR] that may be run from the command line with&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar&lt;br /&gt;
&lt;br /&gt;
which lists the tools available and usage information&lt;br /&gt;
&lt;br /&gt;
  Available tools:&lt;br /&gt;
 &lt;br /&gt;
 	gemorna - GeMoRNA&lt;br /&gt;
 	predictCDS - Predict CDS from GFF&lt;br /&gt;
 	GAF - GeMoMa Annotation Filter&lt;br /&gt;
 	Analyzer - Analyzer&lt;br /&gt;
 	merge - Merge&lt;br /&gt;
 &lt;br /&gt;
 Syntax: java -jar GeMoRNA-1.1.jar &amp;lt;toolname&amp;gt; [&amp;lt;parameter=value&amp;gt; ...]&lt;br /&gt;
 &lt;br /&gt;
 Further info about the tools is given with&lt;br /&gt;
 	java -jar GeMoRNA-1.1.jar &amp;lt;toolname&amp;gt; info&lt;br /&gt;
 &lt;br /&gt;
 For tests of individual tools:&lt;br /&gt;
 	java -jar GeMoRNA-1.1.jar &amp;lt;toolname&amp;gt; test [&amp;lt;verbose&amp;gt;]&lt;br /&gt;
 &lt;br /&gt;
 Tool parameters are listed with&lt;br /&gt;
 	java -jar GeMoRNA-1.1.jar &amp;lt;toolname&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You get a list of the tool parameters by calling GeMoRNA-1.0.jar with the corresponding tool name, e.g.,&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.1.jar gemorna&lt;br /&gt;
&lt;br /&gt;
The meaning of the individual tool parameters is described below.&lt;br /&gt;
For convenience, we also include the [[GeMoMa]] tools Analyzer and GAF.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
&lt;br /&gt;
The source code of GeMoRNA is available from the [https://github.com/Jstacs/Jstacs/tree/master/projects/gemorna Jstacs GitHub repository].&lt;br /&gt;
&lt;br /&gt;
== GeMoRNA ==&lt;br /&gt;
&lt;br /&gt;
Prediction of transcript models using GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar gemorna&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna,fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mapped reads (Mapped Reads in BAM format, coordinate sorted, type = bam)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;s&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Stranded (Library strandedness, range={FR_UNSTRANDED, FR_FIRST_STRAND, FR_SECOND_STRAND}, default = FR_UNSTRANDED)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Longest intron length (Length of the longest intron reported, default = 100000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sil&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Shortest intron length (Length of the shortest intron considered, default = 10)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;lr&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Long reads (Long-read mode, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of reads (Minimum number of reads required for an edge in the read graph, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of reads (Minimum fraction of reads relative to adjacent exons that must support an intron in the enumeration, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of intron reads (Minimum number of reads required for an intron, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of intron reads (Minimum fraction of reads relative to adjacent exons for an intron to be considered, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent explained (Percent of abundance that must be explained by transcript models after quantification, default = 0.9)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpg&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per gene (Minimum abundance required for a gene to be reported, default = 40.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpt&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per transcript (Minimum abundance required for a transcript to be reported, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;pa&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent abundance (Minimum relative abundance required for a transcript to be reported, default = 0.05)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sf&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Successive fraction (Factor of the drop in abundance between successive transcript models, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region length (Maximum length of a region considered before it is split, default = 750000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfgl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum filled gap length (Maximum length of a gap filled by dummy reads, default = 50)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;q&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Quality filter (Minimum mapping quality required for a read to be considered, default = 40)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mpl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;threads&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The number of threads used for the tool, defaults to 1. Currently, I/O of GeMoRNA runs on a single thread and runtime is limited by I/O performance. Hence, running GeMoRNA with a large number of threads is not recommended. On our infrastructure, a number of 6 threads has been the sweet spot.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar gemorna g=&amp;amp;lt;Genome&amp;amp;gt; m=&amp;amp;lt;Mapped_reads&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Predict CDS from GFF ==&lt;br /&gt;
&lt;br /&gt;
Prediction of CDSs using the longest-ORF heuristic based on an existing GFF or GTF file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Predict CDS from GFF&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar predictCDS&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna.fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (&amp;quot;GFF or GTF file containing the predicted annotation&amp;quot;, type = gff,gff3,gff.gz,gff3.gz,gtf,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar predictCDS g=&amp;amp;lt;Genome&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Merge ==&lt;br /&gt;
&lt;br /&gt;
Merging GeMoRNA and GeMoMa predictions.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Merge&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar merge&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa (GeMoMa predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA (GeMoRNA predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mode (, range={intersect, union, intermediate, annotate}, default = intersect)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;intersect&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;union&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;intermediate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;annotate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar merge g=&amp;amp;lt;GeMoMa&amp;amp;gt; GeMoRNA=&amp;amp;lt;GeMoRNA&amp;amp;gt;&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1189</id>
		<title>GeMoSeq</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1189"/>
		<updated>2025-03-06T08:56:55Z</updated>

		<summary type="html">&lt;p&gt;Grau: /* GeMoRNA */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GeMoRNA reconstructs genes and transcript models from mapped RNA-seq reads (in coordinate-sorted BAM format) and reports these in GFF format.&lt;br /&gt;
&lt;br /&gt;
It is intended as a companion for the homology-based gene prediction program [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In a typical workflow, predictions of transcript models may be obtained from GeMoRNA for a collection of BAM files individually and subsequently merged using the [[GeMoMa]] Annotation Filter (GAF). Optionally, homology-based gene prediction may be performed using [[GeMoMa]] and the resulting GFF files may be merged using the [[#Merge|Merge]] tool of GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Command line tool ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
GeMoRNA and auxiliary tools are packaged in one [http://www.jstacs.de/downloads/GeMoRNA-1.0.jar runnable JAR] that may be run from the command line with&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar&lt;br /&gt;
&lt;br /&gt;
which lists the tools available and usage information&lt;br /&gt;
&lt;br /&gt;
  Available tools:&lt;br /&gt;
 &lt;br /&gt;
 	gemorna - GeMoRNA&lt;br /&gt;
 	predictCDS - Predict CDS from GFF&lt;br /&gt;
 	GAF - GeMoMa Annotation Filter&lt;br /&gt;
 	Analyzer - Analyzer&lt;br /&gt;
 	merge - Merge&lt;br /&gt;
 &lt;br /&gt;
 Syntax: java -jar GeMoRNA-1.0.jar &amp;lt;toolname&amp;gt; [&amp;lt;parameter=value&amp;gt; ...]&lt;br /&gt;
 &lt;br /&gt;
 Further info about the tools is given with&lt;br /&gt;
 	java -jar GeMoRNA-1.0.jar &amp;lt;toolname&amp;gt; info&lt;br /&gt;
 &lt;br /&gt;
 For tests of individual tools:&lt;br /&gt;
 	java -jar GeMoRNA-1.0.jar &amp;lt;toolname&amp;gt; test [&amp;lt;verbose&amp;gt;]&lt;br /&gt;
 &lt;br /&gt;
 Tool parameters are listed with&lt;br /&gt;
 	java -jar GeMoRNA-1.0.jar &amp;lt;toolname&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You get a list of the tool parameters by calling GeMoRNA-1.0.jar with the corresponding tool name, e.g.,&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar gemorna&lt;br /&gt;
&lt;br /&gt;
The meaning of the individual tool parameters is described below.&lt;br /&gt;
For convenience, we also include the [[GeMoMa]] tools Analyzer and GAF.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
&lt;br /&gt;
The source code of GeMoRNA is available from the [https://github.com/Jstacs/Jstacs/tree/master/projects/gemorna Jstacs GitHub repository].&lt;br /&gt;
&lt;br /&gt;
== GeMoRNA ==&lt;br /&gt;
&lt;br /&gt;
Prediction of transcript models using GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar gemorna&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna,fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mapped reads (Mapped Reads in BAM format, coordinate sorted, type = bam)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;s&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Stranded (Library strandedness, range={FR_UNSTRANDED, FR_FIRST_STRAND, FR_SECOND_STRAND}, default = FR_UNSTRANDED)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Longest intron length (Length of the longest intron reported, default = 100000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sil&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Shortest intron length (Length of the shortest intron considered, default = 10)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;lr&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Long reads (Long-read mode, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of reads (Minimum number of reads required for an edge in the read graph, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of reads (Minimum fraction of reads relative to adjacent exons that must support an intron in the enumeration, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of intron reads (Minimum number of reads required for an intron, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of intron reads (Minimum fraction of reads relative to adjacent exons for an intron to be considered, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent explained (Percent of abundance that must be explained by transcript models after quantification, default = 0.9)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpg&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per gene (Minimum abundance required for a gene to be reported, default = 40.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpt&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per transcript (Minimum abundance required for a transcript to be reported, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;pa&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent abundance (Minimum relative abundance required for a transcript to be reported, default = 0.05)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sf&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Successive fraction (Factor of the drop in abundance between successive transcript models, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region length (Maximum length of a region considered before it is split, default = 750000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfgl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum filled gap length (Maximum length of a gap filled by dummy reads, default = 50)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;q&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Quality filter (Minimum mapping quality required for a read to be considered, default = 40)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mpl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;threads&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The number of threads used for the tool, defaults to 1. Currently, I/O of GeMoRNA runs on a single thread and runtime is limited by I/O performance. Hence, running GeMoRNA with a large number of threads is not recommended. On our infrastructure, a number of 6 threads has been the sweet spot.&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar gemorna g=&amp;amp;lt;Genome&amp;amp;gt; m=&amp;amp;lt;Mapped_reads&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Predict CDS from GFF ==&lt;br /&gt;
&lt;br /&gt;
Prediction of CDSs using the longest-ORF heuristic based on an existing GFF or GTF file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Predict CDS from GFF&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar predictCDS&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna.fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (&amp;quot;GFF or GTF file containing the predicted annotation&amp;quot;, type = gff,gff3,gff.gz,gff3.gz,gtf,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar predictCDS g=&amp;amp;lt;Genome&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Merge ==&lt;br /&gt;
&lt;br /&gt;
Merging GeMoRNA and GeMoMa predictions.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Merge&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar merge&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa (GeMoMa predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA (GeMoRNA predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mode (, range={intersect, union, intermediate, annotate}, default = intersect)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;intersect&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;union&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;intermediate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;annotate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar merge g=&amp;amp;lt;GeMoMa&amp;amp;gt; GeMoRNA=&amp;amp;lt;GeMoRNA&amp;amp;gt;&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1188</id>
		<title>GeMoSeq</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1188"/>
		<updated>2024-11-08T16:34:33Z</updated>

		<summary type="html">&lt;p&gt;Grau: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GeMoRNA reconstructs genes and transcript models from mapped RNA-seq reads (in coordinate-sorted BAM format) and reports these in GFF format.&lt;br /&gt;
&lt;br /&gt;
It is intended as a companion for the homology-based gene prediction program [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In a typical workflow, predictions of transcript models may be obtained from GeMoRNA for a collection of BAM files individually and subsequently merged using the [[GeMoMa]] Annotation Filter (GAF). Optionally, homology-based gene prediction may be performed using [[GeMoMa]] and the resulting GFF files may be merged using the [[#Merge|Merge]] tool of GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Command line tool ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
GeMoRNA and auxiliary tools are packaged in one [http://www.jstacs.de/downloads/GeMoRNA-1.0.jar runnable JAR] that may be run from the command line with&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar&lt;br /&gt;
&lt;br /&gt;
which lists the tools available and usage information&lt;br /&gt;
&lt;br /&gt;
  Available tools:&lt;br /&gt;
 &lt;br /&gt;
 	gemorna - GeMoRNA&lt;br /&gt;
 	predictCDS - Predict CDS from GFF&lt;br /&gt;
 	GAF - GeMoMa Annotation Filter&lt;br /&gt;
 	Analyzer - Analyzer&lt;br /&gt;
 	merge - Merge&lt;br /&gt;
 &lt;br /&gt;
 Syntax: java -jar GeMoRNA-1.0.jar &amp;lt;toolname&amp;gt; [&amp;lt;parameter=value&amp;gt; ...]&lt;br /&gt;
 &lt;br /&gt;
 Further info about the tools is given with&lt;br /&gt;
 	java -jar GeMoRNA-1.0.jar &amp;lt;toolname&amp;gt; info&lt;br /&gt;
 &lt;br /&gt;
 For tests of individual tools:&lt;br /&gt;
 	java -jar GeMoRNA-1.0.jar &amp;lt;toolname&amp;gt; test [&amp;lt;verbose&amp;gt;]&lt;br /&gt;
 &lt;br /&gt;
 Tool parameters are listed with&lt;br /&gt;
 	java -jar GeMoRNA-1.0.jar &amp;lt;toolname&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You get a list of the tool parameters by calling GeMoRNA-1.0.jar with the corresponding tool name, e.g.,&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar gemorna&lt;br /&gt;
&lt;br /&gt;
The meaning of the individual tool parameters is described below.&lt;br /&gt;
For convenience, we also include the [[GeMoMa]] tools Analyzer and GAF.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
&lt;br /&gt;
The source code of GeMoRNA is available from the [https://github.com/Jstacs/Jstacs/tree/master/projects/gemorna Jstacs GitHub repository].&lt;br /&gt;
&lt;br /&gt;
== GeMoRNA ==&lt;br /&gt;
&lt;br /&gt;
Prediction of transcript models using GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar gemorna&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna,fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mapped reads (Mapped Reads in BAM format, coordinate sorted, type = bam)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;s&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Stranded (Library strandedness, range={FR_UNSTRANDED, FR_FIRST_STRAND, FR_SECOND_STRAND}, default = FR_UNSTRANDED)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Longest intron length (Length of the longest intron reported, default = 100000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sil&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Shortest intron length (Length of the shortest intron considered, default = 10)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;lr&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Long reads (Long-read mode, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of reads (Minimum number of reads required for an edge in the read graph, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of reads (Minimum fraction of reads relative to adjacent exons that must support an intron in the enumeration, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of intron reads (Minimum number of reads required for an intron, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of intron reads (Minimum fraction of reads relative to adjacent exons for an intron to be considered, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent explained (Percent of abundance that must be explained by transcript models after quantification, default = 0.9)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpg&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per gene (Minimum abundance required for a gene to be reported, default = 40.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpt&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per transcript (Minimum abundance required for a transcript to be reported, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;pa&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent abundance (Minimum relative abundance required for a transcript to be reported, default = 0.05)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sf&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Successive fraction (Factor of the drop in abundance between successive transcript models, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region length (Maximum length of a region considered before it is split, default = 750000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfgl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum filled gap length (Maximum length of a gap filled by dummy reads, default = 50)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;q&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Quality filter (Minimum mapping quality required for a read to be considered, default = 40)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mpl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;threads&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The number of threads used for the tool, defaults to 1&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar gemorna g=&amp;amp;lt;Genome&amp;amp;gt; m=&amp;amp;lt;Mapped_reads&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Predict CDS from GFF ==&lt;br /&gt;
&lt;br /&gt;
Prediction of CDSs using the longest-ORF heuristic based on an existing GFF or GTF file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Predict CDS from GFF&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar predictCDS&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna.fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (&amp;quot;GFF or GTF file containing the predicted annotation&amp;quot;, type = gff,gff3,gff.gz,gff3.gz,gtf,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar predictCDS g=&amp;amp;lt;Genome&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Merge ==&lt;br /&gt;
&lt;br /&gt;
Merging GeMoRNA and GeMoMa predictions.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Merge&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar merge&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa (GeMoMa predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA (GeMoRNA predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mode (, range={intersect, union, intermediate, annotate}, default = intersect)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;intersect&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;union&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;intermediate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;annotate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar merge g=&amp;amp;lt;GeMoMa&amp;amp;gt; GeMoRNA=&amp;amp;lt;GeMoRNA&amp;amp;gt;&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1187</id>
		<title>GeMoSeq</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1187"/>
		<updated>2024-11-08T16:33:57Z</updated>

		<summary type="html">&lt;p&gt;Grau: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GeMoRNA reconstructs genes and transcript models from mapped RNA-seq reads (in coordinate-sorted BAM format) and reports these in GFF format.&lt;br /&gt;
&lt;br /&gt;
It is intended as a companion for the homology-based gene prediction program [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In a typical workflow, predictions of transcript models may be obtained from GeMoRNA for a collection of BAM files individually and subsequently merged using the [[GeMoMa]] Annotation Filter (GAF). Optionally, homology-based gene prediction may be performed using [[GeMoMa]] and the resulting GFF files may be merged using the [[#Merge Merge]] tool of GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Command line tool ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
GeMoRNA and auxiliary tools are packaged in one [http://www.jstacs.de/downloads/GeMoRNA-1.0.jar runnable JAR] that may be run from the command line with&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar&lt;br /&gt;
&lt;br /&gt;
which lists the tools available and usage information&lt;br /&gt;
&lt;br /&gt;
  Available tools:&lt;br /&gt;
 &lt;br /&gt;
 	gemorna - GeMoRNA&lt;br /&gt;
 	predictCDS - Predict CDS from GFF&lt;br /&gt;
 	GAF - GeMoMa Annotation Filter&lt;br /&gt;
 	Analyzer - Analyzer&lt;br /&gt;
 	merge - Merge&lt;br /&gt;
 &lt;br /&gt;
 Syntax: java -jar GeMoRNA-1.0.jar &amp;lt;toolname&amp;gt; [&amp;lt;parameter=value&amp;gt; ...]&lt;br /&gt;
 &lt;br /&gt;
 Further info about the tools is given with&lt;br /&gt;
 	java -jar GeMoRNA-1.0.jar &amp;lt;toolname&amp;gt; info&lt;br /&gt;
 &lt;br /&gt;
 For tests of individual tools:&lt;br /&gt;
 	java -jar GeMoRNA-1.0.jar &amp;lt;toolname&amp;gt; test [&amp;lt;verbose&amp;gt;]&lt;br /&gt;
 &lt;br /&gt;
 Tool parameters are listed with&lt;br /&gt;
 	java -jar GeMoRNA-1.0.jar &amp;lt;toolname&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You get a list of the tool parameters by calling GeMoRNA-1.0.jar with the corresponding tool name, e.g.,&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar gemorna&lt;br /&gt;
&lt;br /&gt;
The meaning of the individual tool parameters is described below.&lt;br /&gt;
For convenience, we also include the [[GeMoMa]] tools Analyzer and GAF.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
&lt;br /&gt;
The source code of GeMoRNA is available from the [https://github.com/Jstacs/Jstacs/tree/master/projects/gemorna Jstacs GitHub repository].&lt;br /&gt;
&lt;br /&gt;
== GeMoRNA ==&lt;br /&gt;
&lt;br /&gt;
Prediction of transcript models using GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar gemorna&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna,fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mapped reads (Mapped Reads in BAM format, coordinate sorted, type = bam)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;s&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Stranded (Library strandedness, range={FR_UNSTRANDED, FR_FIRST_STRAND, FR_SECOND_STRAND}, default = FR_UNSTRANDED)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Longest intron length (Length of the longest intron reported, default = 100000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sil&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Shortest intron length (Length of the shortest intron considered, default = 10)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;lr&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Long reads (Long-read mode, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of reads (Minimum number of reads required for an edge in the read graph, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of reads (Minimum fraction of reads relative to adjacent exons that must support an intron in the enumeration, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of intron reads (Minimum number of reads required for an intron, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of intron reads (Minimum fraction of reads relative to adjacent exons for an intron to be considered, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent explained (Percent of abundance that must be explained by transcript models after quantification, default = 0.9)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpg&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per gene (Minimum abundance required for a gene to be reported, default = 40.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpt&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per transcript (Minimum abundance required for a transcript to be reported, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;pa&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent abundance (Minimum relative abundance required for a transcript to be reported, default = 0.05)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sf&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Successive fraction (Factor of the drop in abundance between successive transcript models, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region length (Maximum length of a region considered before it is split, default = 750000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfgl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum filled gap length (Maximum length of a gap filled by dummy reads, default = 50)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;q&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Quality filter (Minimum mapping quality required for a read to be considered, default = 40)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mpl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;threads&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The number of threads used for the tool, defaults to 1&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar gemorna g=&amp;amp;lt;Genome&amp;amp;gt; m=&amp;amp;lt;Mapped_reads&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Predict CDS from GFF ==&lt;br /&gt;
&lt;br /&gt;
Prediction of CDSs using the longest-ORF heuristic based on an existing GFF or GTF file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Predict CDS from GFF&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar predictCDS&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna.fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (&amp;quot;GFF or GTF file containing the predicted annotation&amp;quot;, type = gff,gff3,gff.gz,gff3.gz,gtf,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar predictCDS g=&amp;amp;lt;Genome&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Merge ==&lt;br /&gt;
&lt;br /&gt;
Merging GeMoRNA and GeMoMa predictions.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Merge&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar merge&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa (GeMoMa predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA (GeMoRNA predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mode (, range={intersect, union, intermediate, annotate}, default = intersect)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;intersect&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;union&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;intermediate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;annotate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar merge g=&amp;amp;lt;GeMoMa&amp;amp;gt; GeMoRNA=&amp;amp;lt;GeMoRNA&amp;amp;gt;&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1186</id>
		<title>GeMoSeq</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1186"/>
		<updated>2024-11-08T16:33:20Z</updated>

		<summary type="html">&lt;p&gt;Grau: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GeMoRNA reconstructs genes and transcript models from mapped RNA-seq reads (in coordinate-sorted BAM format) and reports these in GFF format.&lt;br /&gt;
&lt;br /&gt;
It is intended as a companion for the homology-based gene prediction program [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In a typical workflow, predictions of transcript models may be obtained from GeMoRNA for a collection of BAM files individually and subsequently merged using the [[GeMoMa]] Annotation Filter (GAF). Optionally, homology-based gene prediction may be performed using [[GeMoMa]] and the resulting GFF files may be merged using the [#Merge Merge] tool of GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Command line tool ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
GeMoRNA and auxiliary tools are packaged in one [http://www.jstacs.de/downloads/GeMoRNA-1.0.jar runnable JAR] that may be run from the command line with&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar&lt;br /&gt;
&lt;br /&gt;
which lists the tools available and usage information&lt;br /&gt;
&lt;br /&gt;
  Available tools:&lt;br /&gt;
 &lt;br /&gt;
 	gemorna - GeMoRNA&lt;br /&gt;
 	predictCDS - Predict CDS from GFF&lt;br /&gt;
 	GAF - GeMoMa Annotation Filter&lt;br /&gt;
 	Analyzer - Analyzer&lt;br /&gt;
 	merge - Merge&lt;br /&gt;
 &lt;br /&gt;
 Syntax: java -jar GeMoRNA-1.0.jar &amp;lt;toolname&amp;gt; [&amp;lt;parameter=value&amp;gt; ...]&lt;br /&gt;
 &lt;br /&gt;
 Further info about the tools is given with&lt;br /&gt;
 	java -jar GeMoRNA-1.0.jar &amp;lt;toolname&amp;gt; info&lt;br /&gt;
 &lt;br /&gt;
 For tests of individual tools:&lt;br /&gt;
 	java -jar GeMoRNA-1.0.jar &amp;lt;toolname&amp;gt; test [&amp;lt;verbose&amp;gt;]&lt;br /&gt;
 &lt;br /&gt;
 Tool parameters are listed with&lt;br /&gt;
 	java -jar GeMoRNA-1.0.jar &amp;lt;toolname&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You get a list of the tool parameters by calling GeMoRNA-1.0.jar with the corresponding tool name, e.g.,&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar gemorna&lt;br /&gt;
&lt;br /&gt;
The meaning of the individual tool parameters is described below.&lt;br /&gt;
For convenience, we also include the [[GeMoMa]] tools Analyzer and GAF.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
&lt;br /&gt;
The source code of GeMoRNA is available from the [https://github.com/Jstacs/Jstacs/tree/master/projects/gemorna Jstacs GitHub repository].&lt;br /&gt;
&lt;br /&gt;
== GeMoRNA ==&lt;br /&gt;
&lt;br /&gt;
Prediction of transcript models using GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar gemorna&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna,fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mapped reads (Mapped Reads in BAM format, coordinate sorted, type = bam)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;s&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Stranded (Library strandedness, range={FR_UNSTRANDED, FR_FIRST_STRAND, FR_SECOND_STRAND}, default = FR_UNSTRANDED)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Longest intron length (Length of the longest intron reported, default = 100000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sil&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Shortest intron length (Length of the shortest intron considered, default = 10)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;lr&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Long reads (Long-read mode, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of reads (Minimum number of reads required for an edge in the read graph, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of reads (Minimum fraction of reads relative to adjacent exons that must support an intron in the enumeration, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of intron reads (Minimum number of reads required for an intron, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of intron reads (Minimum fraction of reads relative to adjacent exons for an intron to be considered, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent explained (Percent of abundance that must be explained by transcript models after quantification, default = 0.9)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpg&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per gene (Minimum abundance required for a gene to be reported, default = 40.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpt&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per transcript (Minimum abundance required for a transcript to be reported, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;pa&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent abundance (Minimum relative abundance required for a transcript to be reported, default = 0.05)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sf&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Successive fraction (Factor of the drop in abundance between successive transcript models, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region length (Maximum length of a region considered before it is split, default = 750000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfgl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum filled gap length (Maximum length of a gap filled by dummy reads, default = 50)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;q&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Quality filter (Minimum mapping quality required for a read to be considered, default = 40)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mpl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;threads&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The number of threads used for the tool, defaults to 1&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar gemorna g=&amp;amp;lt;Genome&amp;amp;gt; m=&amp;amp;lt;Mapped_reads&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Predict CDS from GFF ==&lt;br /&gt;
&lt;br /&gt;
Prediction of CDSs using the longest-ORF heuristic based on an existing GFF or GTF file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Predict CDS from GFF&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar predictCDS&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna.fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (&amp;quot;GFF or GTF file containing the predicted annotation&amp;quot;, type = gff,gff3,gff.gz,gff3.gz,gtf,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar predictCDS g=&amp;amp;lt;Genome&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Merge ==&lt;br /&gt;
&lt;br /&gt;
Merging GeMoRNA and GeMoMa predictions.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Merge&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar merge&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa (GeMoMa predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA (GeMoRNA predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mode (, range={intersect, union, intermediate, annotate}, default = intersect)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;intersect&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;union&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;intermediate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;annotate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar merge g=&amp;amp;lt;GeMoMa&amp;amp;gt; GeMoRNA=&amp;amp;lt;GeMoRNA&amp;amp;gt;&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1185</id>
		<title>GeMoSeq</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1185"/>
		<updated>2024-11-08T16:32:54Z</updated>

		<summary type="html">&lt;p&gt;Grau: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GeMoRNA reconstructs genes and transcript models from mapped RNA-seq reads (in coordinate-sorted BAM format) and reports these in GFF format.&lt;br /&gt;
&lt;br /&gt;
It is intended as a companion for the homology-based gene prediction program [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
In a typical workflow, predictions of transcript models may be obtained from GeMoRNA for a collection of BAM files individually and subsequently merged using the [[GeMoMa]] Annotation Filter (GAF). Optionally, homology-based gene prediction may be performed using [[GeMoMa]] and the resulting GFF files may be merged using the Merge tool of GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Command line tool ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
GeMoRNA and auxiliary tools are packaged in one [http://www.jstacs.de/downloads/GeMoRNA-1.0.jar runnable JAR] that may be run from the command line with&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar&lt;br /&gt;
&lt;br /&gt;
which lists the tools available and usage information&lt;br /&gt;
&lt;br /&gt;
  Available tools:&lt;br /&gt;
 &lt;br /&gt;
 	gemorna - GeMoRNA&lt;br /&gt;
 	predictCDS - Predict CDS from GFF&lt;br /&gt;
 	GAF - GeMoMa Annotation Filter&lt;br /&gt;
 	Analyzer - Analyzer&lt;br /&gt;
 	merge - Merge&lt;br /&gt;
 &lt;br /&gt;
 Syntax: java -jar GeMoRNA-1.0.jar &amp;lt;toolname&amp;gt; [&amp;lt;parameter=value&amp;gt; ...]&lt;br /&gt;
 &lt;br /&gt;
 Further info about the tools is given with&lt;br /&gt;
 	java -jar GeMoRNA-1.0.jar &amp;lt;toolname&amp;gt; info&lt;br /&gt;
 &lt;br /&gt;
 For tests of individual tools:&lt;br /&gt;
 	java -jar GeMoRNA-1.0.jar &amp;lt;toolname&amp;gt; test [&amp;lt;verbose&amp;gt;]&lt;br /&gt;
 &lt;br /&gt;
 Tool parameters are listed with&lt;br /&gt;
 	java -jar GeMoRNA-1.0.jar &amp;lt;toolname&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You get a list of the tool parameters by calling GeMoRNA-1.0.jar with the corresponding tool name, e.g.,&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar gemorna&lt;br /&gt;
&lt;br /&gt;
The meaning of the individual tool parameters is described below.&lt;br /&gt;
For convenience, we also include the [[GeMoMa]] tools Analyzer and GAF.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
&lt;br /&gt;
The source code of GeMoRNA is available from the [https://github.com/Jstacs/Jstacs/tree/master/projects/gemorna Jstacs GitHub repository].&lt;br /&gt;
&lt;br /&gt;
== GeMoRNA ==&lt;br /&gt;
&lt;br /&gt;
Prediction of transcript models using GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar gemorna&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna,fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mapped reads (Mapped Reads in BAM format, coordinate sorted, type = bam)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;s&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Stranded (Library strandedness, range={FR_UNSTRANDED, FR_FIRST_STRAND, FR_SECOND_STRAND}, default = FR_UNSTRANDED)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Longest intron length (Length of the longest intron reported, default = 100000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sil&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Shortest intron length (Length of the shortest intron considered, default = 10)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;lr&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Long reads (Long-read mode, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of reads (Minimum number of reads required for an edge in the read graph, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of reads (Minimum fraction of reads relative to adjacent exons that must support an intron in the enumeration, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of intron reads (Minimum number of reads required for an intron, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of intron reads (Minimum fraction of reads relative to adjacent exons for an intron to be considered, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent explained (Percent of abundance that must be explained by transcript models after quantification, default = 0.9)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpg&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per gene (Minimum abundance required for a gene to be reported, default = 40.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpt&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per transcript (Minimum abundance required for a transcript to be reported, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;pa&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent abundance (Minimum relative abundance required for a transcript to be reported, default = 0.05)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sf&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Successive fraction (Factor of the drop in abundance between successive transcript models, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region length (Maximum length of a region considered before it is split, default = 750000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfgl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum filled gap length (Maximum length of a gap filled by dummy reads, default = 50)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;q&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Quality filter (Minimum mapping quality required for a read to be considered, default = 40)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mpl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;threads&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The number of threads used for the tool, defaults to 1&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar gemorna g=&amp;amp;lt;Genome&amp;amp;gt; m=&amp;amp;lt;Mapped_reads&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Predict CDS from GFF ==&lt;br /&gt;
&lt;br /&gt;
Prediction of CDSs using the longest-ORF heuristic based on an existing GFF or GTF file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Predict CDS from GFF&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar predictCDS&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna.fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (&amp;quot;GFF or GTF file containing the predicted annotation&amp;quot;, type = gff,gff3,gff.gz,gff3.gz,gtf,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar predictCDS g=&amp;amp;lt;Genome&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Merge ==&lt;br /&gt;
&lt;br /&gt;
Merging GeMoRNA and GeMoMa predictions.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Merge&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar merge&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa (GeMoMa predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA (GeMoRNA predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mode (, range={intersect, union, intermediate, annotate}, default = intersect)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;intersect&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;union&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;intermediate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;annotate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar merge g=&amp;amp;lt;GeMoMa&amp;amp;gt; GeMoRNA=&amp;amp;lt;GeMoRNA&amp;amp;gt;&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1184</id>
		<title>GeMoSeq</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1184"/>
		<updated>2024-11-08T16:30:39Z</updated>

		<summary type="html">&lt;p&gt;Grau: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GeMoRNA reconstructs genes and transcript models from mapped RNA-seq reads (in coordinate-sorted BAM format) and reports these in GFF format.&lt;br /&gt;
&lt;br /&gt;
It is intended as a companion for the homology-based gene prediction program [[GeMoMa]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Command line tool ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
GeMoRNA and auxiliary tools are packaged in one [http://www.jstacs.de/downloads/GeMoRNA-1.0.jar runnable JAR] that may be run from the command line with&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar&lt;br /&gt;
&lt;br /&gt;
which lists the tools available and usage information&lt;br /&gt;
&lt;br /&gt;
  Available tools:&lt;br /&gt;
 &lt;br /&gt;
 	gemorna - GeMoRNA&lt;br /&gt;
 	predictCDS - Predict CDS from GFF&lt;br /&gt;
 	GAF - GeMoMa Annotation Filter&lt;br /&gt;
 	Analyzer - Analyzer&lt;br /&gt;
 	merge - Merge&lt;br /&gt;
 &lt;br /&gt;
 Syntax: java -jar GeMoRNA-1.0.jar &amp;lt;toolname&amp;gt; [&amp;lt;parameter=value&amp;gt; ...]&lt;br /&gt;
 &lt;br /&gt;
 Further info about the tools is given with&lt;br /&gt;
 	java -jar GeMoRNA-1.0.jar &amp;lt;toolname&amp;gt; info&lt;br /&gt;
 &lt;br /&gt;
 For tests of individual tools:&lt;br /&gt;
 	java -jar GeMoRNA-1.0.jar &amp;lt;toolname&amp;gt; test [&amp;lt;verbose&amp;gt;]&lt;br /&gt;
 &lt;br /&gt;
 Tool parameters are listed with&lt;br /&gt;
 	java -jar GeMoRNA-1.0.jar &amp;lt;toolname&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You get a list of the tool parameters by calling GeMoRNA-1.0.jar with the corresponding tool name, e.g.,&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar gemorna&lt;br /&gt;
&lt;br /&gt;
The meaning of the individual tool parameters is described below.&lt;br /&gt;
For convenience, we also include the [[GeMoMa]] tools Analyzer and GAF.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
&lt;br /&gt;
The source code of GeMoRNA is available from the [https://github.com/Jstacs/Jstacs/tree/master/projects/gemorna Jstacs GitHub repository].&lt;br /&gt;
&lt;br /&gt;
== GeMoRNA ==&lt;br /&gt;
&lt;br /&gt;
Prediction of transcript models using GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar gemorna&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna,fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mapped reads (Mapped Reads in BAM format, coordinate sorted, type = bam)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;s&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Stranded (Library strandedness, range={FR_UNSTRANDED, FR_FIRST_STRAND, FR_SECOND_STRAND}, default = FR_UNSTRANDED)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Longest intron length (Length of the longest intron reported, default = 100000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sil&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Shortest intron length (Length of the shortest intron considered, default = 10)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;lr&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Long reads (Long-read mode, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of reads (Minimum number of reads required for an edge in the read graph, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of reads (Minimum fraction of reads relative to adjacent exons that must support an intron in the enumeration, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of intron reads (Minimum number of reads required for an intron, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of intron reads (Minimum fraction of reads relative to adjacent exons for an intron to be considered, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent explained (Percent of abundance that must be explained by transcript models after quantification, default = 0.9)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpg&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per gene (Minimum abundance required for a gene to be reported, default = 40.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpt&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per transcript (Minimum abundance required for a transcript to be reported, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;pa&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent abundance (Minimum relative abundance required for a transcript to be reported, default = 0.05)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sf&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Successive fraction (Factor of the drop in abundance between successive transcript models, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region length (Maximum length of a region considered before it is split, default = 750000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfgl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum filled gap length (Maximum length of a gap filled by dummy reads, default = 50)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;q&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Quality filter (Minimum mapping quality required for a read to be considered, default = 40)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mpl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;threads&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The number of threads used for the tool, defaults to 1&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar gemorna g=&amp;amp;lt;Genome&amp;amp;gt; m=&amp;amp;lt;Mapped_reads&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Predict CDS from GFF ==&lt;br /&gt;
&lt;br /&gt;
Prediction of CDSs using the longest-ORF heuristic based on an existing GFF or GTF file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Predict CDS from GFF&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar predictCDS&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna.fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (&amp;quot;GFF or GTF file containing the predicted annotation&amp;quot;, type = gff,gff3,gff.gz,gff3.gz,gtf,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar predictCDS g=&amp;amp;lt;Genome&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Merge ==&lt;br /&gt;
&lt;br /&gt;
Merging GeMoRNA and GeMoMa predictions.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Merge&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar merge&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa (GeMoMa predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA (GeMoRNA predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mode (, range={intersect, union, intermediate, annotate}, default = intersect)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;intersect&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;union&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;intermediate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;annotate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar merge g=&amp;amp;lt;GeMoMa&amp;amp;gt; GeMoRNA=&amp;amp;lt;GeMoRNA&amp;amp;gt;&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1183</id>
		<title>GeMoSeq</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1183"/>
		<updated>2024-11-08T16:28:42Z</updated>

		<summary type="html">&lt;p&gt;Grau: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Command line tool ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
GeMoRNA and auxiliary tools are packaged in one [http://www.jstacs.de/downloads/GeMoRNA-1.0.jar runnable JAR] that may be run from the command line with&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar&lt;br /&gt;
&lt;br /&gt;
which lists the tools available and usage information&lt;br /&gt;
&lt;br /&gt;
  Available tools:&lt;br /&gt;
 &lt;br /&gt;
 	gemorna - GeMoRNA&lt;br /&gt;
 	predictCDS - Predict CDS from GFF&lt;br /&gt;
 	GAF - GeMoMa Annotation Filter&lt;br /&gt;
 	Analyzer - Analyzer&lt;br /&gt;
 	merge - Merge&lt;br /&gt;
 &lt;br /&gt;
 Syntax: java -jar GeMoRNA-1.0.jar &amp;lt;toolname&amp;gt; [&amp;lt;parameter=value&amp;gt; ...]&lt;br /&gt;
 &lt;br /&gt;
 Further info about the tools is given with&lt;br /&gt;
 	java -jar GeMoRNA-1.0.jar &amp;lt;toolname&amp;gt; info&lt;br /&gt;
 &lt;br /&gt;
 For tests of individual tools:&lt;br /&gt;
 	java -jar GeMoRNA-1.0.jar &amp;lt;toolname&amp;gt; test [&amp;lt;verbose&amp;gt;]&lt;br /&gt;
 &lt;br /&gt;
 Tool parameters are listed with&lt;br /&gt;
 	java -jar GeMoRNA-1.0.jar &amp;lt;toolname&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You get a list of the tool parameters by calling GeMoRNA-1.0.jar with the corresponding tool name, e.g.,&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar gemorna&lt;br /&gt;
&lt;br /&gt;
The meaning of the individual tool parameters is described below.&lt;br /&gt;
For convenience, we also include the [[GeMoMa]] tools Analyzer and GAF.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
&lt;br /&gt;
The source code of GeMoRNA is available from the [https://github.com/Jstacs/Jstacs/tree/master/projects/gemorna Jstacs GitHub repository].&lt;br /&gt;
&lt;br /&gt;
== GeMoRNA ==&lt;br /&gt;
&lt;br /&gt;
Prediction of transcript models using GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar gemorna&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna,fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mapped reads (Mapped Reads in BAM format, coordinate sorted, type = bam)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;s&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Stranded (Library strandedness, range={FR_UNSTRANDED, FR_FIRST_STRAND, FR_SECOND_STRAND}, default = FR_UNSTRANDED)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Longest intron length (Length of the longest intron reported, default = 100000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sil&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Shortest intron length (Length of the shortest intron considered, default = 10)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;lr&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Long reads (Long-read mode, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of reads (Minimum number of reads required for an edge in the read graph, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of reads (Minimum fraction of reads relative to adjacent exons that must support an intron in the enumeration, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of intron reads (Minimum number of reads required for an intron, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of intron reads (Minimum fraction of reads relative to adjacent exons for an intron to be considered, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent explained (Percent of abundance that must be explained by transcript models after quantification, default = 0.9)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpg&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per gene (Minimum abundance required for a gene to be reported, default = 40.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpt&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per transcript (Minimum abundance required for a transcript to be reported, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;pa&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent abundance (Minimum relative abundance required for a transcript to be reported, default = 0.05)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sf&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Successive fraction (Factor of the drop in abundance between successive transcript models, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region length (Maximum length of a region considered before it is split, default = 750000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfgl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum filled gap length (Maximum length of a gap filled by dummy reads, default = 50)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;q&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Quality filter (Minimum mapping quality required for a read to be considered, default = 40)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mpl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;threads&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The number of threads used for the tool, defaults to 1&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar gemorna g=&amp;amp;lt;Genome&amp;amp;gt; m=&amp;amp;lt;Mapped_reads&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Predict CDS from GFF ==&lt;br /&gt;
&lt;br /&gt;
Prediction of CDSs using the longest-ORF heuristic based on an existing GFF or GTF file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Predict CDS from GFF&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar predictCDS&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna.fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (&amp;quot;GFF or GTF file containing the predicted annotation&amp;quot;, type = gff,gff3,gff.gz,gff3.gz,gtf,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar predictCDS g=&amp;amp;lt;Genome&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Merge ==&lt;br /&gt;
&lt;br /&gt;
Merging GeMoRNA and GeMoMa predictions.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Merge&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar merge&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa (GeMoMa predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA (GeMoRNA predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mode (, range={intersect, union, intermediate, annotate}, default = intersect)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;intersect&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;union&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;intermediate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;annotate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar merge g=&amp;amp;lt;GeMoMa&amp;amp;gt; GeMoRNA=&amp;amp;lt;GeMoRNA&amp;amp;gt;&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1182</id>
		<title>GeMoSeq</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1182"/>
		<updated>2024-11-08T16:27:41Z</updated>

		<summary type="html">&lt;p&gt;Grau: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Command line tool ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
GeMoRNA and auxiliary tools are packaged in one [http://www.jstacs.de/downloads/GeMoRNA-1.0.jar runnable JAR] that may be run from the command line with&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar&lt;br /&gt;
&lt;br /&gt;
which lists the tools available and usage information&lt;br /&gt;
&lt;br /&gt;
  Available tools:&lt;br /&gt;
&lt;br /&gt;
	gemorna - GeMoRNA&lt;br /&gt;
	predictCDS - Predict CDS from GFF&lt;br /&gt;
	GAF - GeMoMa Annotation Filter&lt;br /&gt;
	Analyzer - Analyzer&lt;br /&gt;
	merge - Merge&lt;br /&gt;
&lt;br /&gt;
 Syntax: java -jar GeMoRNA-1.0.jar &amp;lt;toolname&amp;gt; [&amp;lt;parameter=value&amp;gt; ...]&lt;br /&gt;
&lt;br /&gt;
 Further info about the tools is given with&lt;br /&gt;
	java -jar GeMoRNA-1.0.jar &amp;lt;toolname&amp;gt; info&lt;br /&gt;
&lt;br /&gt;
 For tests of individual tools:&lt;br /&gt;
	java -jar GeMoRNA-1.0.jar &amp;lt;toolname&amp;gt; test [&amp;lt;verbose&amp;gt;]&lt;br /&gt;
&lt;br /&gt;
 Tool parameters are listed with&lt;br /&gt;
	java -jar GeMoRNA-1.0.jar &amp;lt;toolname&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You get a list of the tool parameters by calling GeMoRNA-1.0.jar with the corresponding tool name, e.g.,&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar gemorna&lt;br /&gt;
&lt;br /&gt;
The meaning of the individual tool parameters is described below.&lt;br /&gt;
For convenience, we also include the [[GeMoMa]] tools Analyzer and GAF.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
&lt;br /&gt;
The source code of GeMoRNA is available from the [https://github.com/Jstacs/Jstacs/tree/master/projects/gemorna Jstacs GitHub repository].&lt;br /&gt;
&lt;br /&gt;
== GeMoRNA ==&lt;br /&gt;
&lt;br /&gt;
Prediction of transcript models using GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar gemorna&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna,fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mapped reads (Mapped Reads in BAM format, coordinate sorted, type = bam)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;s&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Stranded (Library strandedness, range={FR_UNSTRANDED, FR_FIRST_STRAND, FR_SECOND_STRAND}, default = FR_UNSTRANDED)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Longest intron length (Length of the longest intron reported, default = 100000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sil&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Shortest intron length (Length of the shortest intron considered, default = 10)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;lr&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Long reads (Long-read mode, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of reads (Minimum number of reads required for an edge in the read graph, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of reads (Minimum fraction of reads relative to adjacent exons that must support an intron in the enumeration, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of intron reads (Minimum number of reads required for an intron, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of intron reads (Minimum fraction of reads relative to adjacent exons for an intron to be considered, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent explained (Percent of abundance that must be explained by transcript models after quantification, default = 0.9)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpg&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per gene (Minimum abundance required for a gene to be reported, default = 40.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpt&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per transcript (Minimum abundance required for a transcript to be reported, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;pa&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent abundance (Minimum relative abundance required for a transcript to be reported, default = 0.05)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sf&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Successive fraction (Factor of the drop in abundance between successive transcript models, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region length (Maximum length of a region considered before it is split, default = 750000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfgl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum filled gap length (Maximum length of a gap filled by dummy reads, default = 50)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;q&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Quality filter (Minimum mapping quality required for a read to be considered, default = 40)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mpl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;threads&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The number of threads used for the tool, defaults to 1&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar gemorna g=&amp;amp;lt;Genome&amp;amp;gt; m=&amp;amp;lt;Mapped_reads&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Predict CDS from GFF ==&lt;br /&gt;
&lt;br /&gt;
Prediction of CDSs using the longest-ORF heuristic based on an existing GFF or GTF file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Predict CDS from GFF&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar predictCDS&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna.fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (&amp;quot;GFF or GTF file containing the predicted annotation&amp;quot;, type = gff,gff3,gff.gz,gff3.gz,gtf,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar predictCDS g=&amp;amp;lt;Genome&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Merge ==&lt;br /&gt;
&lt;br /&gt;
Merging GeMoRNA and GeMoMa predictions.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Merge&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar merge&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa (GeMoMa predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA (GeMoRNA predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mode (, range={intersect, union, intermediate, annotate}, default = intersect)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;intersect&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;union&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;intermediate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;annotate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar merge g=&amp;amp;lt;GeMoMa&amp;amp;gt; GeMoRNA=&amp;amp;lt;GeMoRNA&amp;amp;gt;&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1181</id>
		<title>GeMoSeq</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1181"/>
		<updated>2024-11-08T16:27:21Z</updated>

		<summary type="html">&lt;p&gt;Grau: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Command line tool ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
GeMoRNA and auxiliary tools are packaged in one [http://www.jstacs.de/downloads/GeMoRNA-1.0.jar runnable JAR] that may be run from the command line with&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar&lt;br /&gt;
&lt;br /&gt;
which lists the tools available and usage information&lt;br /&gt;
&lt;br /&gt;
  Available tools:&lt;br /&gt;
&lt;br /&gt;
	gemorna - GeMoRNA&lt;br /&gt;
	predictCDS - Predict CDS from GFF&lt;br /&gt;
	GAF - GeMoMa Annotation Filter&lt;br /&gt;
	Analyzer - Analyzer&lt;br /&gt;
	merge - Merge&lt;br /&gt;
&lt;br /&gt;
 Syntax: java -jar GeMoRNA-1.0.jar &amp;lt;toolname&amp;gt; [&amp;lt;parameter=value&amp;gt; ...]&lt;br /&gt;
&lt;br /&gt;
 Further info about the tools is given with&lt;br /&gt;
	java -jar GeMoRNA-1.0.jar &amp;lt;toolname&amp;gt; info&lt;br /&gt;
&lt;br /&gt;
 For tests of individual tools:&lt;br /&gt;
	java -jar GeMoRNA-1.0.jar &amp;lt;toolname&amp;gt; test [&amp;lt;verbose&amp;gt;]&lt;br /&gt;
&lt;br /&gt;
 Tool parameters are listed with&lt;br /&gt;
	java -jar GeMoRNA-1.0.jar &amp;lt;toolname&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You get a list of the tool parameters by calling GeMoRNA-1.0.jar with the corresponding tool name, e.g.,&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar gemorna&lt;br /&gt;
&lt;br /&gt;
The meaning of the individual tool parameters is described below.&lt;br /&gt;
For convenience, we also include the [GeMoMa] tools Analyzer and GAF.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
&lt;br /&gt;
The source code of GeMoRNA is available from the [https://github.com/Jstacs/Jstacs/tree/master/projects/gemorna Jstacs GitHub repository].&lt;br /&gt;
&lt;br /&gt;
== GeMoRNA ==&lt;br /&gt;
&lt;br /&gt;
Prediction of transcript models using GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar gemorna&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna,fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mapped reads (Mapped Reads in BAM format, coordinate sorted, type = bam)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;s&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Stranded (Library strandedness, range={FR_UNSTRANDED, FR_FIRST_STRAND, FR_SECOND_STRAND}, default = FR_UNSTRANDED)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Longest intron length (Length of the longest intron reported, default = 100000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sil&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Shortest intron length (Length of the shortest intron considered, default = 10)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;lr&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Long reads (Long-read mode, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of reads (Minimum number of reads required for an edge in the read graph, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of reads (Minimum fraction of reads relative to adjacent exons that must support an intron in the enumeration, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of intron reads (Minimum number of reads required for an intron, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of intron reads (Minimum fraction of reads relative to adjacent exons for an intron to be considered, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent explained (Percent of abundance that must be explained by transcript models after quantification, default = 0.9)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpg&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per gene (Minimum abundance required for a gene to be reported, default = 40.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpt&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per transcript (Minimum abundance required for a transcript to be reported, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;pa&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent abundance (Minimum relative abundance required for a transcript to be reported, default = 0.05)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sf&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Successive fraction (Factor of the drop in abundance between successive transcript models, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region length (Maximum length of a region considered before it is split, default = 750000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfgl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum filled gap length (Maximum length of a gap filled by dummy reads, default = 50)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;q&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Quality filter (Minimum mapping quality required for a read to be considered, default = 40)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mpl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;threads&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The number of threads used for the tool, defaults to 1&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar gemorna g=&amp;amp;lt;Genome&amp;amp;gt; m=&amp;amp;lt;Mapped_reads&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Predict CDS from GFF ==&lt;br /&gt;
&lt;br /&gt;
Prediction of CDSs using the longest-ORF heuristic based on an existing GFF or GTF file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Predict CDS from GFF&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar predictCDS&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna.fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (&amp;quot;GFF or GTF file containing the predicted annotation&amp;quot;, type = gff,gff3,gff.gz,gff3.gz,gtf,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar predictCDS g=&amp;amp;lt;Genome&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Merge ==&lt;br /&gt;
&lt;br /&gt;
Merging GeMoRNA and GeMoMa predictions.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Merge&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar merge&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa (GeMoMa predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA (GeMoRNA predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mode (, range={intersect, union, intermediate, annotate}, default = intersect)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;intersect&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;union&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;intermediate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;annotate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar merge g=&amp;amp;lt;GeMoMa&amp;amp;gt; GeMoRNA=&amp;amp;lt;GeMoRNA&amp;amp;gt;&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1180</id>
		<title>GeMoSeq</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1180"/>
		<updated>2024-11-08T16:23:36Z</updated>

		<summary type="html">&lt;p&gt;Grau: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Command line tool ==&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
&lt;br /&gt;
The source code of GeMoRNA is available from the [https://github.com/Jstacs/Jstacs/tree/master/projects/gemorna Jstacs GitHub repository].&lt;br /&gt;
&lt;br /&gt;
== GeMoRNA ==&lt;br /&gt;
&lt;br /&gt;
Prediction of transcript models using GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar gemorna&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna,fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mapped reads (Mapped Reads in BAM format, coordinate sorted, type = bam)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;s&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Stranded (Library strandedness, range={FR_UNSTRANDED, FR_FIRST_STRAND, FR_SECOND_STRAND}, default = FR_UNSTRANDED)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Longest intron length (Length of the longest intron reported, default = 100000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sil&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Shortest intron length (Length of the shortest intron considered, default = 10)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;lr&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Long reads (Long-read mode, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of reads (Minimum number of reads required for an edge in the read graph, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of reads (Minimum fraction of reads relative to adjacent exons that must support an intron in the enumeration, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of intron reads (Minimum number of reads required for an intron, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of intron reads (Minimum fraction of reads relative to adjacent exons for an intron to be considered, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent explained (Percent of abundance that must be explained by transcript models after quantification, default = 0.9)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpg&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per gene (Minimum abundance required for a gene to be reported, default = 40.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpt&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per transcript (Minimum abundance required for a transcript to be reported, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;pa&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent abundance (Minimum relative abundance required for a transcript to be reported, default = 0.05)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sf&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Successive fraction (Factor of the drop in abundance between successive transcript models, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region length (Maximum length of a region considered before it is split, default = 750000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfgl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum filled gap length (Maximum length of a gap filled by dummy reads, default = 50)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;q&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Quality filter (Minimum mapping quality required for a read to be considered, default = 40)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mpl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;threads&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The number of threads used for the tool, defaults to 1&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar gemorna g=&amp;amp;lt;Genome&amp;amp;gt; m=&amp;amp;lt;Mapped_reads&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Predict CDS from GFF ==&lt;br /&gt;
&lt;br /&gt;
Prediction of CDSs using the longest-ORF heuristic based on an existing GFF or GTF file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Predict CDS from GFF&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar predictCDS&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna.fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (&amp;quot;GFF or GTF file containing the predicted annotation&amp;quot;, type = gff,gff3,gff.gz,gff3.gz,gtf,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar predictCDS g=&amp;amp;lt;Genome&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Merge ==&lt;br /&gt;
&lt;br /&gt;
Merging GeMoRNA and GeMoMa predictions.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Merge&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar merge&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa (GeMoMa predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA (GeMoRNA predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mode (, range={intersect, union, intermediate, annotate}, default = intersect)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;intersect&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;union&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;intermediate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;annotate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar merge g=&amp;amp;lt;GeMoMa&amp;amp;gt; GeMoRNA=&amp;amp;lt;GeMoRNA&amp;amp;gt;&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1179</id>
		<title>GeMoSeq</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1179"/>
		<updated>2024-11-08T16:21:51Z</updated>

		<summary type="html">&lt;p&gt;Grau: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== GeMoRNA ==&lt;br /&gt;
&lt;br /&gt;
Prediction of transcript models using GeMoRNA.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar gemorna&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna,fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mapped reads (Mapped Reads in BAM format, coordinate sorted, type = bam)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;s&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Stranded (Library strandedness, range={FR_UNSTRANDED, FR_FIRST_STRAND, FR_SECOND_STRAND}, default = FR_UNSTRANDED)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Longest intron length (Length of the longest intron reported, default = 100000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sil&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Shortest intron length (Length of the shortest intron considered, default = 10)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;lr&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Long reads (Long-read mode, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of reads (Minimum number of reads required for an edge in the read graph, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of reads (Minimum fraction of reads relative to adjacent exons that must support an intron in the enumeration, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of intron reads (Minimum number of reads required for an intron, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of intron reads (Minimum fraction of reads relative to adjacent exons for an intron to be considered, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent explained (Percent of abundance that must be explained by transcript models after quantification, default = 0.9)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpg&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per gene (Minimum abundance required for a gene to be reported, default = 40.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpt&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per transcript (Minimum abundance required for a transcript to be reported, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;pa&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent abundance (Minimum relative abundance required for a transcript to be reported, default = 0.05)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sf&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Successive fraction (Factor of the drop in abundance between successive transcript models, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region length (Maximum length of a region considered before it is split, default = 750000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfgl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum filled gap length (Maximum length of a gap filled by dummy reads, default = 50)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;q&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Quality filter (Minimum mapping quality required for a read to be considered, default = 40)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mpl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;threads&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The number of threads used for the tool, defaults to 1&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar gemorna g=&amp;amp;lt;Genome&amp;amp;gt; m=&amp;amp;lt;Mapped_reads&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Predict CDS from GFF ==&lt;br /&gt;
&lt;br /&gt;
Prediction of CDSs using the longest-ORF heuristic based on an existing GFF or GTF file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Predict CDS from GFF&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar predictCDS&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna.fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (&amp;quot;GFF or GTF file containing the predicted annotation&amp;quot;, type = gff,gff3,gff.gz,gff3.gz,gtf,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar predictCDS g=&amp;amp;lt;Genome&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Merge ==&lt;br /&gt;
&lt;br /&gt;
Merging GeMoRNA and GeMoMa predictions.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Merge&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar merge&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa (GeMoMa predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA (GeMoRNA predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mode (, range={intersect, union, intermediate, annotate}, default = intersect)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;intersect&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;union&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;intermediate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;annotate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar merge g=&amp;amp;lt;GeMoMa&amp;amp;gt; GeMoRNA=&amp;amp;lt;GeMoRNA&amp;amp;gt;&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1178</id>
		<title>GeMoSeq</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1178"/>
		<updated>2024-11-08T16:19:18Z</updated>

		<summary type="html">&lt;p&gt;Grau: /* Analyzer */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Tools ==&lt;br /&gt;
&lt;br /&gt;
=== GeMoRNA ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar gemorna&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna,fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mapped reads (Mapped Reads in BAM format, coordinate sorted, type = bam)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;s&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Stranded (Library strandedness, range={FR_UNSTRANDED, FR_FIRST_STRAND, FR_SECOND_STRAND}, default = FR_UNSTRANDED)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Longest intron length (Length of the longest intron reported, default = 100000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sil&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Shortest intron length (Length of the shortest intron considered, default = 10)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;lr&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Long reads (Long-read mode, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of reads (Minimum number of reads required for an edge in the read graph, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of reads (Minimum fraction of reads relative to adjacent exons that must support an intron in the enumeration, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of intron reads (Minimum number of reads required for an intron, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of intron reads (Minimum fraction of reads relative to adjacent exons for an intron to be considered, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent explained (Percent of abundance that must be explained by transcript models after quantification, default = 0.9)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpg&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per gene (Minimum abundance required for a gene to be reported, default = 40.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpt&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per transcript (Minimum abundance required for a transcript to be reported, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;pa&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent abundance (Minimum relative abundance required for a transcript to be reported, default = 0.05)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sf&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Successive fraction (Factor of the drop in abundance between successive transcript models, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region length (Maximum length of a region considered before it is split, default = 750000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfgl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum filled gap length (Maximum length of a gap filled by dummy reads, default = 50)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;q&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Quality filter (Minimum mapping quality required for a read to be considered, default = 40)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mpl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;threads&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The number of threads used for the tool, defaults to 1&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar gemorna g=&amp;amp;lt;Genome&amp;amp;gt; m=&amp;amp;lt;Mapped_reads&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Predict CDS from GFF ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Predict CDS from GFF&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar predictCDS&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna.fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (&amp;quot;GFF or GTF file containing the predicted annotation&amp;quot;, type = gff,gff3,gff.gz,gff3.gz,gtf,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar predictCDS g=&amp;amp;lt;Genome&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Merge ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Merge&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar merge&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa (GeMoMa predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA (GeMoRNA predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mode (, range={intersect, union, intermediate, annotate}, default = intersect)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;intersect&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;union&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;intermediate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;annotate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar merge g=&amp;amp;lt;GeMoMa&amp;amp;gt; GeMoRNA=&amp;amp;lt;GeMoRNA&amp;amp;gt;&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
	<entry>
		<id>https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1177</id>
		<title>GeMoSeq</title>
		<link rel="alternate" type="text/html" href="https://www.jstacs.de/index.php?title=GeMoSeq&amp;diff=1177"/>
		<updated>2024-11-08T16:19:07Z</updated>

		<summary type="html">&lt;p&gt;Grau: /* GeMoMa Annotation Filter */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Tools ==&lt;br /&gt;
&lt;br /&gt;
=== GeMoRNA ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;GeMoRNA&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar gemorna&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna,fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mapped reads (Mapped Reads in BAM format, coordinate sorted, type = bam)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;s&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Stranded (Library strandedness, range={FR_UNSTRANDED, FR_FIRST_STRAND, FR_SECOND_STRAND}, default = FR_UNSTRANDED)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;l&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Longest intron length (Length of the longest intron reported, default = 100000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sil&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Shortest intron length (Length of the shortest intron considered, default = 10)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;lr&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Long reads (Long-read mode, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of reads (Minimum number of reads required for an edge in the read graph, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfor&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of reads (Minimum fraction of reads relative to adjacent exons that must support an intron in the enumeration, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mnoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum number of intron reads (Minimum number of reads required for an intron, default = 1.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfoir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum fraction of intron reads (Minimum fraction of reads relative to adjacent exons for an intron to be considered, default = 0.01)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent explained (Percent of abundance that must be explained by transcript models after quantification, default = 0.9)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpg&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per gene (Minimum abundance required for a gene to be reported, default = 40.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrpt&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum reads per transcript (Minimum abundance required for a transcript to be reported, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;pa&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Percent abundance (Minimum relative abundance required for a transcript to be reported, default = 0.05)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;sf&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Successive fraction (Factor of the drop in abundance between successive transcript models, default = 20.0)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mrl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum region length (Maximum length of a region considered before it is split, default = 750000)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mfgl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Maximum filled gap length (Maximum length of a gap filled by dummy reads, default = 50)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;q&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Quality filter (Minimum mapping quality required for a read to be considered, default = 40)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;mpl&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;threads&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The number of threads used for the tool, defaults to 1&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar gemorna g=&amp;amp;lt;Genome&amp;amp;gt; m=&amp;amp;lt;Mapped_reads&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Predict CDS from GFF ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Predict CDS from GFF&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar predictCDS&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Genome (Genome sequence as FastA, type = fa,fna.fasta)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (&amp;quot;GFF or GTF file containing the predicted annotation&amp;quot;, type = gff,gff3,gff.gz,gff3.gz,gtf,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Minimum protein length (Minimum length of protein in AA, default = 70)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;INT&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar predictCDS g=&amp;amp;lt;Genome&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Analyzer ===&lt;br /&gt;
&lt;br /&gt;
This tools allows to compare true annotation with predicted annotation as it is frequently done in benchmark studies. Furthermore, it can return a detailed table comparing true annotation and predicted annotation which might help to identify systematical errors or biases in the predictions. Hence, this tool might help to detect weaknesses of the prediction algorithm.&lt;br /&gt;
&lt;br /&gt;
True and predicted transcripts are evaluated based on nucleotide F1 measure. For each predicted transcript, the true transcript with highest nucleotide F1 measure is listed. A negative value in a F1 measure column indicates that there is a predicted transcript that matches the true transcript with a F1 measure value that is the absolute value of this entry, but there is another true transcript that matches this predicted transcript with an even better F1. Also true and predicted transcripts are listed that do not overlap with any transcript from the predicted and true annotation, respectively. The table contains the attributes of the true and the predicted annotation besides some additional columns allowing to easily filter interesting examples and to do statistics.&lt;br /&gt;
&lt;br /&gt;
The evaluation can be based on CDS (default) or exon features. The tool also reports sensitivity and precision for the categories gene and transcript.&lt;br /&gt;
&lt;br /&gt;
For more information please visit http://www.jstacs.de/index.php/GeMoMa&lt;br /&gt;
If you have any questions, comments or bugs, please check FAQs on our homepage, our github page https://github.com/Jstacs/Jstacs/labels/GeMoMa or contact jens.keilwagen@julius-kuehn.de&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Analyzer&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar Analyzer&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;t&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;truth (the true annotation, type = gff,gff3,gtf,gff.gz,gff3.gz,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;The following parameter(s) can be used multiple times:&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;n&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name (can be used to distinguish different predictions, OPTIONAL)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;p&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;predicted annotation (GFF/GTF file containing the predicted annotation, type = gff,gff3,gtf,gff.gz,gff3.gz,gtf.gz)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;c&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;CDS (if true CDS features are used otherwise exon features, default = true)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;o&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;only introns (if true only intron borders (=splice sites) are evaluated, default = false)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;BOOLEAN&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;w&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;write (write detailed table comparing the true and the predicted annotation, range={NO, YES}, default = NO)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;NO&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;YES&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;ca&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;common attributes (Only gff attributes of mRNAs are included in the result table, that can be found in the given portion of all mRNAs. Attributes and their portion are handled independently for truth and prediction. This parameter allows to choose between a more informative table or compact table., valid range = [0.0, 1.0], default = 0.5)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;DOUBLE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;r&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;reliable (additionally evaluate sensitivity for reliable transcripts, range={NO, YES}, default = NO)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;NO&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;YES&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;f&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;filter (A filter for deciding which transcript from the truth are reliable or not. The filter is applied to the GFF attributes of the truth. You probably need to run AnnotationEvidence on the truth GFF. The default filter decides based on the completeness of the prediction (start==&#039;M&#039; and stop==&#039;*&#039;), no premature stop codons (nps==0), RNA-seq coverage (tpc==1) and intron evidence (isNaN(tie) or tie==1)., default = start==&#039;M&#039; and stop==&#039;*&#039; and nps==0 and (tpc==1 and (isNaN(tie) or tie==1)), OPTIONAL)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar Analyzer t=&amp;amp;lt;truth&amp;amp;gt; p=&amp;amp;lt;predicted_annotation&amp;amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Merge ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Merge&#039;&#039; may be called with&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar merge&lt;br /&gt;
&lt;br /&gt;
and has the following parameters&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table border=0 cellpadding=10 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;name&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;comment&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;type&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;hr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;g&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa (GeMoMa predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA (GeMoRNA predictions, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;m&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;Mode (, range={intersect, union, intermediate, annotate}, default = intersect)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;STRING&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td colspan=2&amp;gt;&amp;lt;table border=0 cellpadding=0 align=&amp;quot;center&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;intersect&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;No parameters for selection &amp;amp;quot;union&amp;amp;quot;&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;intermediate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td colspan=3&amp;gt;&amp;lt;b&amp;gt;Parameters for selection &amp;amp;quot;annotate&amp;amp;quot;:&amp;lt;/b&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoMa-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoMa-strict (GeMoMa predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;GeMoRNA-strict&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;GeMoRNA-strict (GeMoRNA predictions with strict settings, type = gff,gff3)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width:100px;&amp;quot;&amp;gt;FILE&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr style=&amp;quot;vertical-align:top&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;&amp;lt;font color=&amp;quot;green&amp;quot;&amp;gt;outdir&amp;lt;/font&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The output directory, defaults to the current working directory (.)&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;STRING&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 java -jar GeMoRNA-1.0.jar merge g=&amp;amp;lt;GeMoMa&amp;amp;gt; GeMoRNA=&amp;amp;lt;GeMoRNA&amp;amp;gt;&lt;/div&gt;</summary>
		<author><name>Grau</name></author>
	</entry>
</feed>