1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
---
name: JCVI Genome Annotation
url: https://github.com/tanghaibao/jcvi
description: A tool to compute statistics on genome annotation.
---
JCVI Genome Annotation provides quantitative measures for the assessment of genome
annotation.
The JCVI module parses the output of `python -m jcvi.annotation.stats genestats <input.gff>`.
The file name is used as the sample name.
If the output from the `python -m jcvi.annotation.stats stats <input.gff>` is present in the same directory,
it is used to draw complementary plots.
A typical result directory will contain:
```
├── Exon_Count
│ ├── sample1.txt
│ └── sample2.txt
├── Exon_Length
│ ├── sample1.txt
│ └── sample2.txt
├── Gene_Length
│ ├── sample1.txt
│ └── sample2.txt
├── Intron_Length
│ ├── sample1.txt
│ └── sample2.txt
├── sample1_genestats.txt
└── sample2_genestats.txt
```
The JCVI module has been tested with output from JCVI v1.0.9.
|