"...git@developer.sourcefind.cn:yangql/googletest.git" did not exist on "168ab067835ac9abd0342b9164519a61bb961a41"
Commit 8c94482a authored by Sachin Kadyan's avatar Sachin Kadyan
Browse files

Added a separate AlignmentRunner for handling seq_emb mode.

- In `seq_emb` mode, the AlignmentRunner works only on generating templates.
parent 380947c4
......@@ -73,6 +73,15 @@ def precompute_alignments(tags, seqs, alignment_dir, args):
os.makedirs(local_alignment_dir)
if args.use_single_seq_mode:
alignment_runner = data_pipeline.AlignmentRunner(
jackhmmer_binary_path=args.jackhmmer_binary_path,
hhsearch_binary_path=args.hhsearch_binary_path,
uniref90_database_path=args.uniref90_database_path,
pdb70_database_path=args.pdb70_database_path,
no_cpus=args.cpus,
)
else:
alignment_runner = data_pipeline.AlignmentRunner(
jackhmmer_binary_path=args.jackhmmer_binary_path,
hhblits_binary_path=args.hhblits_binary_path,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment