In biopython emboss applications, is it possible that asequence and bsequence attributes of needle/watercommandline object be a variable instead of fasta file ? i.e I want to write the sequence either directly or through variable as shown below
bseq= "aaatttccggtt"
needle_cline = NeedleCommandline(asequence="acgtggcc", bsequence=bseq,
... gapopen=10, gapextend=0.5, outfile="needle.txt")
Is it possible to do it ?
is there equivalent in MafftCommandline?