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:
parent
d38521e03a
commit
2274f01f23
5 changed files with 20 additions and 5 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue