Skip to content

Commit

Permalink
Working on workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
rcedgar committed Aug 22, 2024
1 parent 6386805 commit a124873
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_linux_aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
--volume "${PWD}:/muscle"
install: |
apt-get update -q -y
apt-get install -q -y make g++ file git python3
apt-get install -q -y make g++ file git python3 curl
run: |
git config --global --add safe.directory /muscle
cd /muscle/src
Expand Down
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,15 @@ Muscle supports generating an ensemble of alternative alignments with the same h
Structure alignment ("Muscle-3D") is supported as well as conventional amino acid sequence alignment. Input for structure alignment is a "mega" file generated by the `pdb2mega` command of `reseek` (https://github.com/rcedgar/reseek).

<pre>
# for up to ~100 structures
reseek -pdb2mega STRUCTS -output structs.mega
muscle -align structs.mega -output structs.afa # for up to ~100 structures
muscle -super7 structs.mega -output structs.afa # for up to ~10,000 structures
muscle -align structs.mega -output structs.afa

# for up to ~10,000 structures
reseek -convert STRUCTS -bca structs.bca
reseek -pdb2mega structs.bca -output structs.mega
reseek -distmx structs.bca -output structs.distmx
muscle -super7 structs.mega -distmxin structs.distmx -reseek -output structs.afa
</pre>

### Downloads and installation
Expand Down

0 comments on commit a124873

Please sign in to comment.