Skip to content

Commit

Permalink
added handling of tab in sequence name
Browse files Browse the repository at this point in the history
  • Loading branch information
kavonrtep committed Oct 1, 2024
1 parent acf8af7 commit 074b8bc
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ https://anaconda.org/petrnovak/dante_ltr/badges/version.svg)](https://anaconda.o
```shell
conda create -n dante_ltr -c bioconda -c conda-forge -c petrnovak dante_ltr
```
**Important version information** DANTE_LTR versions up to 0.3.5.3 are compatible with REXdb Viridiplante database version 3.0. Versions 4.0.1 are compatible with REXdb Viridiplante database version 3.0 and 4.0. REXdb Viridiplantae v 4.0 include additional LTR-RT lineages characterized non-angiosperm species. Updated REXdb and used classification system can be found https://github.com/repeatexplorer/rexdb.


[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/kavonrtep/dante_ltr)

Expand All @@ -51,7 +53,7 @@ Detailed tutorial on how to use DANTE and DANTE_LTR on Galaxy server is [here](h

#### Installation of both DANTE and DANTE_LTR using conda into single environment:
```shell
conda create -n dante_ltr -c bioconda -c conda-forge -c petrnovak dante_ltr dante
conda create -n dante_ltr -c bioconda -c conda-forge -c petrnovak dante_ltr=0.4.0.1 dante=0.2.0
conda activate dante_ltr
```
#### Download example data:
Expand Down
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.4.0.1 (2024-09-20)

* fix in installation instruction
* updated to REXdb Viridiplantae 4.0

## 0.3.5.1 (2024-04-18)

* Improved HTML report
Expand Down
2 changes: 1 addition & 1 deletion utils/detect_putative_ltr.R
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ s <- readDNAStringSet(opt$reference_sequence) # genome assembly
cat("done\n")

# clean sequence names:
names(s) <- gsub(" .+", "", names(s))
names(s) <- gsub("\\s.+", "", names(s))

# verify that seqlevels in g match seqlevels in s:
if (!all(seqlevels(g) %in% seqlevels(s))){
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.4.0.1'
__version__ = '0.4.0.2'

0 comments on commit 074b8bc

Please sign in to comment.