Skip to content

Commit

Permalink
Merge pull request #6 from stjude/hg38
Browse files Browse the repository at this point in the history
add hg38
  • Loading branch information
madetunj authored Apr 7, 2020
2 parents 8117fa1 + fe1c373 commit 0409a7e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion bin/ROSE_geneMapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def main():
parser.add_option("-i","--i", dest="input",nargs = 1, default=None,
help = "Enter a ROSE ranked enhancer or super-enhancer file")
parser.add_option("-g","--genome", dest="genome",nargs = 1, default=None,
help = "Enter the genome build (MM9,MM8,HG18,HG19)")
help = "Enter the genome build (MM9,MM8,HG18,HG19,HG38)")

#optional flags
parser.add_option("-l","--list", dest="geneList",nargs = 1, default=None,
Expand Down Expand Up @@ -256,6 +256,7 @@ def main():
'HG18':'%s/annotation/hg18_refseq.ucsc' % (cwd),
'MM9': '%s/annotation/mm9_refseq.ucsc' % (cwd),
'HG19':'%s/annotation/hg19_refseq.ucsc' % (cwd),
'HG38':'%s/annotation/hg38_refseq.ucsc' % (cwd),
'MM8': '%s/annotation/mm8_refseq.ucsc' % (cwd),
'MM10':'%s/annotation/mm10_refseq.ucsc' % (cwd),
}
Expand Down
3 changes: 2 additions & 1 deletion bin/ROSE_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ def main():
parser.add_option("-o","--out", dest="out",nargs = 1, default=None,
help = "Enter an output folder")
parser.add_option("-g","--genome", dest="genome",nargs = 1, default=None,
help = "Enter the genome build (MM9,MM8,HG18,HG19)")
help = "Enter the genome build (MM9,MM8,HG18,HG19,HG38)")

#optional flags
parser.add_option("-b","--bams", dest="bams",nargs = 1, default=None,
Expand Down Expand Up @@ -316,6 +316,7 @@ def main():
'HG18':'%s/annotation/hg18_refseq.ucsc' % (cwd),
'MM9': '%s/annotation/mm9_refseq.ucsc' % (cwd),
'HG19':'%s/annotation/hg19_refseq.ucsc' % (cwd),
'HG38':'%s/annotation/hg38_refseq.ucsc' % (cwd),
'MM8': '%s/annotation/mm8_refseq.ucsc' % (cwd),
'MM10':'%s/annotation/mm10_refseq.ucsc' % (cwd),
}
Expand Down

0 comments on commit 0409a7e

Please sign in to comment.