필터 지우기
필터 지우기

ASP-N uses incorrect position in Cleave?

조회 수: 1 (최근 30일)
Ryan Leib
Ryan Leib 2014년 11월 12일
댓글: Luuk van Oosten 2014년 11월 24일
Hi,
Using the cleave() function, ASP-N is stated to cleave at position 2 by cleavelookup(). However, this should be clipping at position 0 (n-terminal of D residues). Can someone else verify this is functioning incorrectly?

채택된 답변

Luuk van Oosten
Luuk van Oosten 2014년 11월 24일
Dear Ryan,
I am no expert, but I've used the cleave function before to make an in silico tryptic digest and also had some troubles using the MATLAB build-in codes for cleavage; confused me as well.
What I eventually did was use the following (and this is clearly explained in the help docs as well):
you want to use cleave and produce fragments (I presume.... your question lacks a lot of info...)
Fragments = cleave(SeqAA, PeptidePattern, Position)
so, for 'SeqAA' you put in the sequences you want to cleave. For 'PeptidePattern' you would want to use 'D' (cleave at an aspartic acid), and if you specify 'Position' as '0', it would cleave your sequences exactly as you described in your questions;
so:
SeqAA = yoursequences;
PeptidePattern = D;
Position = 0;
yourfragments = cleave(SeqAA, PeptidePattern, Position)
I guess that would do the job, but you should try it out for yourself; I have no idea what you want to do.
  댓글 수: 2
Ryan Leib
Ryan Leib 2014년 11월 24일
Hi Luuk,
Agreed, your proposed strategy works, and is what I've done to avoid the problem in my application.
My post was more error report than question, although its good that you've put in the strategy to avoid the problem. My concern was 1) that the error was general to other installs of matlab (I've checked 2 other installs at this point, all three have this error) and 2) that this be reported for a fix in a future update. Thanks again.
Luuk van Oosten
Luuk van Oosten 2014년 11월 24일
You are welcome. Have fun with your in silico protein digestion!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by