Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Pruning] Seismic #124

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
also accept bedpe.gz for jJ
  • Loading branch information
ShaiberAlon committed Jan 12, 2022
commit 5dfb7f26582cdba0df349da11faffc1cfef833b3
2 changes: 1 addition & 1 deletion R/converters.R
Original file line number Diff line number Diff line change
Expand Up @@ -909,7 +909,7 @@ read.juncs = function(rafile,
ra = readRDS(rafile)
## validity check written for "junctions" class
return(Junction$new(ra))
} else if (grepl('(.bedpe$)', rafile)){
} else if (grepl('bedpe(\\.gz)?$', rafile)){
ra.path = rafile
cols = c('chr1', 'start1', 'end1', 'chr2', 'start2', 'end2', 'name', 'score', 'str1', 'str2')

Expand Down