10 lines
427 B
Bash
10 lines
427 B
Bash
#!/bin/sh
|
|
|
|
# get the list of AA indices and then combine these into one file
|
|
wget -c https://www.genome.jp/aaindex/AAindex/list_of_indices https://www.genome.jp/aaindex/AAindex/list_of_potentials https://www.genome.jp/aaindex/AAindex/list_of_matrices
|
|
cat list_of_* > combined_aa_list
|
|
|
|
# get the description for the header used in our script
|
|
for i in $(cat aa_headerT.csv); do
|
|
grep $i combined_aa_list >> aa_headerNames
|
|
done
|