We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
calculateFragments calculates fragments for all n amino acids in a sequence but only n - 1 bonds are present, so just n - 1 fragments are valid.
calculateFragments
n
n - 1
E.g. this peptide with 4 amino acids has 3 bonds and valid fragments from a1 to a3 (same for b, c, x, y, z):
a1 to a3
b
c
x
y
z
Current output:
calculateFragments("ACE", type="b") mz ion type pos z seq # 1 72.04439 b1 b 1 1 A # 2 232.07504 b2 b 2 1 AC # 3 361.11763 b3 b 3 1 ACE
but correct output would be:
calculateFragments("ACE", type="b") mz ion type pos z seq # 1 72.04439 b1 b 1 1 A # 2 232.07504 b2 b 2 1 AC
The text was updated successfully, but these errors were encountered:
cca72c6
Depend on MSnbase >= 2.3.10 to use correct fragment calculation; see l…
536a9ca
…gatto/MSnbase#248
fix FragmentViews unit tests according to lgatto/MSnbase#248
4390fb5
sgibb
No branches or pull requests
calculateFragments
calculates fragments for alln
amino acids in a sequence but onlyn - 1
bonds are present, so justn - 1
fragments are valid.E.g. this peptide with 4 amino acids has 3 bonds and valid fragments from
a1 to a3
(same forb
,c
,x
,y
,z
):Current output:
but correct output would be:
The text was updated successfully, but these errors were encountered: