You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/clean.rst
+16-1
Original file line number
Diff line number
Diff line change
@@ -3,5 +3,20 @@
3
3
4
4
Cleaning your Assembly
5
5
================================
6
-
When working with haploid assemblies, sometimes you want to remove some repetitive contigs that are contained in other scaffolds of the assembly. If the repeats are indeed unique, then we want to keep them in the assembly. Funannotate can help "clean" up repetitive contigs in your assembly
6
+
When working with haploid assemblies, sometimes you want to remove some repetitive contigs that are contained in other scaffolds of the assembly. If the repeats are indeed unique, then we want to keep them in the assembly. Funannotate can help "clean" up repetitive contigs in your assembly. This is done using a "leave one out" methodology using Mummer (nucmer), where the the shortest contigs/scaffolds are aligned to the rest of the assembly to determine if it is repetitive. The script loops through the contigs starting with the shortest and workings its way to the N50 of the assembly, dropping contigs/scaffolds that are greater than the percent coverage of overlap (:code:`--cov`) and the percent identity of overlap (:code:`--pident`).
7
+
8
+
.. code-block:: none
7
9
10
+
$ funannotate clean
11
+
Usage: funannotate clean <arguments>
12
+
version: 1.0.0
13
+
14
+
Description: The script sorts contigs by size, starting with shortest contigs it uses Mummer
15
+
to find contigs duplicated elsewhere, and then removes duplicated contigs.
Copy file name to clipboardExpand all lines: docs/conda.rst
+48-10
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,10 @@
3
3
4
4
Conda mediated Installation
5
5
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6
-
I'd really like to build a bioconda installation package, but would need some help. You can however install nearly all of the dependencies with conda.
6
+
7
+
** This is still under construction **
8
+
9
+
I'd really like to build a bioconda installation package, but would need some help. You can however install quite a few of the dependencies with conda.
7
10
8
11
.. code-block:: none
9
12
@@ -31,8 +34,31 @@ This will automatically install most of the dependencies.
31
34
32
35
1. Download/install GeneMark-ES/ET: (gmes_petap.pl must be in PATH)
0 commit comments