Skip to content

Commit

Permalink
change mmseqs pdb data path
Browse files Browse the repository at this point in the history
  • Loading branch information
kierandidi committed Mar 22, 2024
1 parent 6dae5ff commit 8bdde29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion graphein/ml/datasets/pdb_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -1382,7 +1382,7 @@ def cluster(
)
else:
# Run MMSeqs
cmd = f"mmseqs easy-cluster {fasta_fname} pdb_cluster tmp --min-seq-id {min_seq_id} -c {coverage} --cov-mode 1"
cmd = f"mmseqs easy-cluster {str(self.root_dir / fasta_fname)} pdb_cluster tmp --min-seq-id {min_seq_id} -c {coverage} --cov-mode 1"
log.info(f"Clustering with: {cmd}")
subprocess.run(cmd.split())
os.rename(
Expand Down

0 comments on commit 8bdde29

Please sign in to comment.