Skip to content

Commit

Permalink
Bug Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rhshah committed May 24, 2016
1 parent 87c3cd6 commit abe3e27
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions iAnnotateSV/iAnnotateSV.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,22 +159,22 @@ def main(command=None):
refFile = args.refVersion + ".sv.table.txt"
refFile = os.path.join(this_dir, "data/references", refFile)
if(args.rrFilename):
pass
rrPath = args.rrFilename
else:
rrFilename = args.refVersion + "_repeatRegion.tsv"
rrPath = os.path.join(this_dir, "data/repeat_region", rrFilename)
if(args.dgvFilename):
pass
dgvPath = args.dgvFilename
else:
dgvFilename = args.refVersion + "_DGv_Annotation.tsv"
dgvPath = os.path.join(this_dir, "data/database_of_genomic_variants", dgvFilename)
if(args.ccFilename):
pass
ccPath = args.dgvFilename
else:
ccFilename = "cancer_gene_census.tsv"
ccPath = os.path.join(this_dir, "data/cosmic", ccFilename)
if(args.upFilename):
pass
if(args.uniprot):
uniprotPath = args.uniprot
else:
upFilename = args.refVersion + ".uniprot.spAnnot.table.txt"
uniprotPath = os.path.join(this_dir, "data/UcscUniprotdomainInfo", upFilename)
Expand Down

0 comments on commit abe3e27

Please sign in to comment.