Unrecognized function or variable 'ApOPs'.
조회 수: 1 (최근 30일)
이전 댓글 표시
I am trying to make Oligopaint library (OligoLego-Github based) using intersected oligprobes generated from OligoMiner for bacteril genome contig.Please suggest me what should i edit in the program commands
I encountered one error- Unrecognized function or variable 'ApOPs'.)
The appendting text was
(%% Call AppToMSBS
LoadRegionsFolder='C:\MATLAB\';
LoadBarcodesFolder='C:\MATLAB\StreetsLatest\';
SaveFolder=LoadRegionsFolder;
ApOPs('MS',[LoadRegionsFolder,'5_MS_Output.bed'],'BS'...
,[LoadRegionsFolder,'5_BS_Output.bed'],'Toes'...
,[LoadBarcodesFolder,'Toes_V1.txt'],...
'Streets',[LoadBarcodesFolder,'Streets_V1.txt'],...
'PTable',[LoadBarcodesFolder,'PenaltyTable_V1.txt'],...
'SavePath',SaveFolder,'MaxAvoid','0')%,'SameUniversal',[LoadRegionsFolder,'Universal.txt']);
댓글 수: 0
답변 (3개)
Image Analyst
2022년 11월 23일
You don't have ApOPs on the search path. What folder does it live in? Let's say it's 'C:\MATLAB\Oligopaint' Then add this to the beginning of your code
addpath(genpath('C:\MATLAB\Oligopaint'));
savepath;
댓글 수: 3
Image Analyst
2022년 11월 23일
Again, the function readtextfile() is not on the search path. Find it and add it to the path.
Walter Roberson
2022년 11월 23일
No, readtextfile() is on the path. But the file name in MSPath cannot be found (at least not under that name). It appears you are providing 'MS' as the complete file name.
[LoadRegionsFolder,'5_BS_Output.bed'],
We recommend that you use
fullfile(LoadRegionsFolder,'5_BS_Output.bed'),
참고 항목
카테고리
Help Center 및 File Exchange에서 Environment and Settings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!