Skip to content

Commit

Permalink
Fixing incorrect primer design for single-exon circRNAs
Browse files Browse the repository at this point in the history
  • Loading branch information
tjakobi committed Jul 20, 2018
1 parent ceb8e0a commit 2ca7305
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions scripts/circtools_primex_wrapper.R
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,10 @@ while (length(current_line <- readLines(con, n = 1, warn = FALSE)) > 0) {

if (line_column[[1]][3] == ""){
line_column[[1]][3] <- substr(line_column[[1]][2], 1, nchar(line_column[[1]][2])/2)
tmp <- substr(line_column[[1]][2], nchar(line_column[[1]][2])/2+1, nchar(line_column[[1]][2]))
line_column[[1]][2] <- tmp
tmp1 <- substr(line_column[[1]][2], 1, nchar(line_column[[1]][2])/2)
tmp2 <- substr(line_column[[1]][2], nchar(line_column[[1]][2])/2+1, nchar(line_column[[1]][2]))
line_column[[1]][2] <- tmp1
line_column[[1]][3] <- tmp2
}

# set minimal information for primer design
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def run(self):
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# https://packaging.python.org/en/latest/single_source_version.html
version='1.1.0',
version='1.1.0.1',

description='circtools - a circular RNA toolbox',
long_description=long_description,
Expand Down

0 comments on commit 2ca7305

Please sign in to comment.