How can I use a customized figure-function to show over UIAxes in app designer?
1 次查看(过去 30 天)
显示 更早的评论
Dear All,
I am using the SeqLogoFig (attached) to convert my sequences to a logo (https://www.mathworks.com/matlabcentral/fileexchange/27124-seqlogofig). I have found that in the file exchange webpage.
I have used this over the GUIDE GUI but now need to use this in the app designer. I use the folowing lines but it shows error. Would you please help me to resolve this issue and make my code line correct?
Many thanks in advance.
MS
sequence = {'IANTRTHTY','ISNPTRHVY','IAVKVNHSY','SSKEDNPKW','VTYKNVPNW','GIYKVVKYW','KAALLIQKY','VAHELAHQW','TAYEKINKW','STYPRPHEY','IAHELAHQW','MTNGFHMTW','KSSLTQHSW','SSKYAPHSW','VMDVQYNKF','HSVLIHEYY','GTHTVSVKY','MVTTVPHVF','HFDLSHGSA','KSDVHLNFY','TTKQQDHFF','VGKIEHSFW','ATHVLPLHW','LANKTPHTW','HVVEQHWEW','SSLRVPSQW','TTKFIVDGW','SSLQKTPVW','MTSGHWQHY','TAKALQAHW','LAKTGVHHY','GTLKGHNGW','KSVTAFFKW','FVKKLEHSW','YTDNLVRVW','QSYVLVKKW','TTHNQSRKW','STDGHLRVW','VFDHPWETV','VYDVRQAYV','HTILTEKNW','AADSAVRLW'}';
SeqLogoFig(app.UIAxes,sequence,'alphabet','aa','cutoff',0.75,'top-n',9);
*Error:
Error using seqlogo (line 109)
Incorrect number of arguments to seqlogo.
Error in SeqLogoFig (line 83)
wm = seqlogo(SEQ, varargin{:}, 'displaylogo', false);
0 个评论
采纳的回答
Pavan Guntha
2021-7-28
Hi Mohammad,
You could look at the following code snippet:
SeqLogoFig(sequence,'AXES_HANDLE',app.UIAxes,'alphabet','aa','cutoff',0.75,'top-n',9);
'SeqLogoFig.m' is one of the several submissions in MATLAB File Exchange on MATLAB Central which is a forum for our product users to interact, exchange information and knowledge, without MathWorks' involvement. Feel free to contact the author of this submission directly for specific questions about the implementation
Hope this helps!
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Develop Apps Using App Designer 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!