Skip to content

Commit

Permalink
Create download.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
nickcafferry committed Sep 17, 2020
1 parent cc1c415 commit 1cc8b6a
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/download.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: PSSpred

on:
push:
branches:
- master

jobs:
build_docs_and_deploy:
runs-on: ubuntu-latest
name: Protein Secondary Structure prediction

steps:
- name: Checkout
uses: actions/checkout@master

- name: Clone pre repositories
run: |
ls
echo '------------------------------'
git config --global user.email "ucecwme@ucl.ac.uk"
git config --global user.name "nickcafferry"
git init
cd Machine-Learning-for-Structural-Bioinformatics/
mkdir PSSpred
cd PSSpred/
wget https://zhanglab.ccmb.med.umich.edu/PSSpred/PSSpred_v4.tar.bz2
tar -jxvf PSSpred_v4.tar.bz2
echo "Done with downloading and extracting PSSpred_v4!"
git add -A
git commit -m "Add PSSpred"
cd ../../
git push origin master

0 comments on commit 1cc8b6a

Please sign in to comment.