-s, --sketch_only If true, nesting is not computed. Genes are sketched
only from existing gff files.
-d, --data_folder TEXT Output data folder.
-dt --discovery-tool TEXT Used discovery tool. Default is LTR-finder.
--help Show this message and exit.
```
@@ -162,3 +163,11 @@ Options:
-d, --data_folder TEXT Output data folder.
--help Show this message and exit.
```
## Adding new LTR discovery tool
* Implement run() method in new TE class based on core/TE_template.py
* Add new value to core/DiscoveryTool.py including any aliases, make sure the numeric value is different from already implemented tools and that it is the same for all of your aliases. (used in calling nester ``-dt <value you set>``)
* Import your newly implemented class in utils/DependencyResolver.py and add it to ``valueToClassDict`` attribute. (key is numeric value you set in core/DiscoveryTool.py)