Skip to content

Commit

Permalink
fix parameter min_size
Browse files Browse the repository at this point in the history
  • Loading branch information
Meltpinkg committed May 12, 2023
1 parent a507674 commit 5e4f828
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name = "cuteSV",
version = "2.0.2",
version = "2.0.3",
description = "Long-read-based human genomic structural variation detection with cuteSV",
author = "Jiang Tao",
author_email = "[email protected]",
Expand Down
4 changes: 2 additions & 2 deletions src/cuteSV/cuteSV
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* All rights Reserved, Designed By HIT-Bioinformatics
* @Title: cuteSV
* @author: tjiang & sqcao
* @date: Nov 3rd 2022
* @version V2.0.2
* @date: May 12th 2023
* @version V2.0.3
'''

import pysam
Expand Down
6 changes: 3 additions & 3 deletions src/cuteSV/cuteSV_Description.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
* All rights Reserved, Designed By HIT-Bioinformatics
* @Title: cuteSV_Description.py
* @author: tjiang & sqcao
* @date: Nov 3rd 2022
* @version V2.0.2
* @date: May 12th 2023
* @version V2.0.3
'''
import argparse

VERSION = '2.0.2'
VERSION = '2.0.3'

class cuteSVdp(object):
'''
Expand Down
4 changes: 2 additions & 2 deletions src/cuteSV/cuteSV_genotype.py
Original file line number Diff line number Diff line change
Expand Up @@ -378,8 +378,8 @@ def generate_pvcf(args, result, contigINFO, argv, ref_g):
for i in result:
if i == []:
continue
if i[7][5] == '.,.':
print(i)
# if i[7][5] == '.,.':
# print(i)
if i[7][5] == "." or i[7][5] == None:
filter_lable = "PASS"
else:
Expand Down

0 comments on commit 5e4f828

Please sign in to comment.