You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Take the files from the folder "raw_seqs" and rename them by adding the filename to the name of ervey sequence and then combine all renamed sequences into a file called "input_sequences.fas" in the previous directory.
rm -rf input_sequences.fas
cd ./raw_seqs;
for i in *.fas; do
name=`echo $i | sed 's/.fas//g'`;
sed "s/^>/>${name}_/g" < $i >> ../input_sequences.fas;