本文整理汇总了Python中gimmemotifs.config.MotifConfig.set_default_params方法的典型用法代码示例。如果您正苦于以下问题:Python MotifConfig.set_default_params方法的具体用法?Python MotifConfig.set_default_params怎么用?Python MotifConfig.set_default_params使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gimmemotifs.config.MotifConfig
的用法示例。
在下文中一共展示了MotifConfig.set_default_params方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: run
# 需要导入模块: from gimmemotifs.config import MotifConfig [as 别名]
# 或者: from gimmemotifs.config.MotifConfig import set_default_params [as 别名]
def run(self):
if not os.path.exists(self.build_cfg):
os.mkdir(self.build_cfg)
from gimmemotifs.config import MotifConfig
cfg = MotifConfig(use_config="cfg/gimmemotifs.cfg.base")
dlog.info("locating motif programs")
available = []
for program in MOTIF_CLASSES:
# Get class
m = eval(program)()
cmd = m.cmd
### ugly, fixme :)
if cmd == "trawler.pl":
cmd = "trawler/bin/trawler.pl"
if cmd == "ChIPMunk.sh":
cmd = "ChIPMunk/ChIPMunk.sh"
if cmd == "hms":
cmd = "HMS/hms"
bin = ""
if cmd == "/bin/false":
# motif db
bin = "/bin/false"
elif os.path.exists(os.path.join(self.build_tools_dir, cmd)):
bin = os.path.join(self.build_tools_dir, cmd)
dlog.info("using included version of %s: %s" % (program, bin))
else:
### ugly, fixme :)
if cmd == "trawler/bin/trawler.pl":
cmd = "trawler.pl"
if cmd == "ChIPMunk/ChIPMunk.sh":
cmd = "ChIPMunk.sh"
if cmd == "HMS/hms":
cmd = "hms"
if program in MOTIF_BINS.keys():
dlog.info("could not find compiled version of %s" % program)
bin = which(cmd)
if bin:
dlog.info("using installed version of %s: %s" % (program, bin))
else:
dlog.info("not found: %s" % program)
### Some more ugly stuff
if bin:
dir = bin.replace(m.cmd,"")
if program == "Weeder":
dir = bin.replace("weederTFBS.out","")
elif program == "Meme":
dir = bin.replace("bin/meme.bin", "").replace("meme.bin", "")
elif program == "Trawler":
dir = bin.replace("bin/trawler.pl", "")
elif program == "ChIPMunk":
dir = bin.replace("ChIPMunk.sh", "")
available.append(m.name)
cfg.set_program(m.name, {"bin":bin, "dir":dir})
# Weblogo
bin = ""
seq_included = os.path.join(self.build_tools_dir, "seqlogo")
if os.path.exists(seq_included):
bin = seq_included
dlog.info("using included version of weblogo: %s" % seq_included)
else:
bin = which("seqlogo")
dlog.info("using installed version of seqlogo: %s" % (bin))
if bin:
cfg.set_seqlogo(bin)
else:
dlog.info("couldn't find seqlogo")
# Set the available tools in the config file
DEFAULT_PARAMS["available_tools"] = ",".join(available)
for tool in available:
if tool in LONG_RUNNING:
dlog.info("PLEASE NOTE: %s can take a very long time to run on large datasets. Therefore it is not added to the default tools. You can always enable it later, see documentation for details" % tool)
available.remove(tool)
DEFAULT_PARAMS["tools"] = ",".join(available)
cfg.set_default_params(DEFAULT_PARAMS)
# Write (temporary) config file
config_file = os.path.join(self.build_cfg, "%s" % CONFIG_NAME)
dlog.info("writing (temporary) configuration file: %s" % config_file)
f = open(config_file, "wb")
cfg.write(f)
f.close()
示例2: write_config
# 需要导入模块: from gimmemotifs.config import MotifConfig [as 别名]
# 或者: from gimmemotifs.config.MotifConfig import set_default_params [as 别名]
def write_config(self):
from gimmemotifs.config import MotifConfig
cfg = MotifConfig(use_config="cfg/gimmemotifs.cfg.example")
data_dir = os.path.abspath(self.install_data)
cfg.set_template_dir(os.path.join(data_dir, 'gimmemotifs/templates'))
cfg.set_gene_dir(os.path.join(data_dir, 'gimmemotifs/genes'))
cfg.set_score_dir(os.path.join(data_dir, 'gimmemotifs/score_dists'))
cfg.set_index_dir(os.path.join(data_dir, 'gimmemotifs/genome_index'))
cfg.set_motif_dir(os.path.join(data_dir, 'gimmemotifs/motif_databases'))
cfg.set_bg_dir(os.path.join(data_dir, 'gimmemotifs/bg'))
print
print "Trying to locate motif programs"
MOTIF_CLASSES = ["MDmodule", "Meme", "Weeder", "Gadem", "MotifSampler", "Trawler", "Improbizer", "MoAn", "BioProspector"]
available = []
for program in MOTIF_CLASSES:
m = eval(program)()
cmd = m.cmd
bin = which(cmd)
if bin:
print "Found %s in %s" % (m.name, bin)
available.append(m.name)
dir = None
if program == "Weeder":
dir = bin.replace("weederTFBS.out","")
elif program == "Meme":
dir = bin.replace("bin/meme", "")
elif program == "Trawler":
dir = bin.replace("bin/trawler.pl", "")
cfg.set_program(m.name, {"bin":bin, "dir":dir})
else:
print "Couldn't find %s" % m.name
print
print "Trying to locate seqlogo"
bin = which("seqlogo")
if bin:
print "Found seqlogo in %s" % (bin)
cfg.set_seqlogo(bin)
else:
print "Couldn't find seqlogo"
print
DEFAULT_PARAMS["available_tools"] = ",".join(available)
DEFAULT_PARAMS["tools"] = ",".join(available)
cfg.set_default_params(DEFAULT_PARAMS)
# Use a user-specific configfile if any other installation scheme is used
if os.path.abspath(self.install_data) == "/usr/share":
config_file = "/usr/share/gimmemotifs/%s" % CONFIG_NAME
else:
config_file = os.path.expanduser("~/.%s" % CONFIG_NAME)
if os.path.exists(config_file):
new_config = config_file + ".tmp"
print "INFO: Configfile %s already exists!\n Will create %s, which contains the new config.\n If you want to use the newly generated config you can move %s to %s, otherwise you can delete %s.\n" % (config_file, new_config, new_config, config_file, new_config)
f = open(new_config, "wb")
cfg.write(f)
else:
print "Writing configuration file %s" % config_file
f = open(config_file, "wb")
cfg.write(f)
print "Edit %s to further configure GimmeMotifs." % config_file