Skip to content

Commit f0c38cb

Browse files
committed
removed cov filtering of no-OpGs
1 parent 92b3253 commit f0c38cb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ fn main() -> anyhow::Result<()> {
213213
for container in transcripts {
214214
let mut contained = Vec::new();
215215
let mut counter=0;
216-
if (container.exons.len() > 1 && container.coverage >= threshold) || (container.coverage >= monoexonic_t ){
216+
if (container.exons.len() > 1 ) || (container.coverage >= monoexonic_t ){
217217
good_cov_ids.insert(container.id.clone());
218218
}
219219
for inner in transcripts {

0 commit comments

Comments
 (0)