combined msa and wt seq into 1 list so only list is passed as an arg for plotting ED plots

This commit is contained in:
Tanushree Tunstall 2022-02-15 08:31:58 +00:00
parent d38521e03a
commit 2274f01f23
5 changed files with 20 additions and 5 deletions

View file

@ -49,3 +49,12 @@ head(msa2)
cat("\nLength of WT fasta:", nrow(msa2))
wt_seq = msa2$V1
head(wt_seq)
#===========================
# combine msa and wt seqs
#===========================
# unified_msa = list(msa_seq
# , wt_seq)
unified_msa = list(msa_seq = msa_seq
, wt_seq = wt_seq)