Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions ROSE2_META.py
Original file line number Diff line number Diff line change
Expand Up @@ -748,9 +748,10 @@ def main():
cmd = "python %sROSE2_geneMapper.py -g %s -i %s%s -f" % (pipeline_dir,genome, outFolder, superStretchTableFile)
os.system(cmd)




allEnhancersTableFile = "%s_AllEnhancers.table.txt" % (inputName)
cmd = "python %sROSE2_geneMapper.py -g %s -i %s%s -f" % (pipeline_dir, genome, outFolder, allEnhancersTableFile)
print(cmd)
os.system(cmd)

if __name__ == "__main__":
main()
4 changes: 2 additions & 2 deletions pipeline_dfci.py
Original file line number Diff line number Diff line change
Expand Up @@ -5585,10 +5585,10 @@ def wrapGSEA(gctPath,clsPath,sample_1,sample_2,analysis_name,output_folder,metri

IF YOU GET A STRANGE ERROR, MAKE SURE THE GENES IN YOUR GCT FILE ARE CAPITALIZED.
'''
if gmxPath='':
if gmxPath=='':
#default curated gene set
gmxPath='/storage/cylin/grail/annotations/gsea/c2.all.v5.1.symbols.gmt'
if gseaPath='':
if gseaPath=='':
#default gsea version
gseaPath = '/storage/cylin/home/cl6/gsea2-3.0_beta_2.jar'

Expand Down