mspire-lipidomics 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +5 -0
- data/.rspec +1 -0
- data/LICENSE +21 -0
- data/README.rdoc +18 -0
- data/Rakefile +45 -0
- data/VERSION +1 -0
- data/bin/lipidomic-search.rb +199 -0
- data/lib/mspire/lipid/ion/fragment.rb +68 -0
- data/lib/mspire/lipid/ion.rb +57 -0
- data/lib/mspire/lipid/modification.rb +125 -0
- data/lib/mspire/lipid/search/bin.rb +79 -0
- data/lib/mspire/lipid/search/db_isobar_group.rb +20 -0
- data/lib/mspire/lipid/search/hit.rb +79 -0
- data/lib/mspire/lipid/search/probability_distribution.rb +50 -0
- data/lib/mspire/lipid/search/query.rb +23 -0
- data/lib/mspire/lipid/search.rb +205 -0
- data/lib/mspire/lipid.rb +19 -0
- data/lib/mspire/lipid_maps.rb +87 -0
- data/mspire-lipidomics.gemspec +85 -0
- data/scratch/OBConversion_methods.txt +47 -0
- data/scratch/atom_methods.txt +145 -0
- data/scratch/bond_methods.txt +867 -0
- data/scratch/mol_methods.txt +183 -0
- data/scratch/split_molecules.rb +93 -0
- data/script/find_nearest_lipid.rb +114 -0
- data/spec/mspire/lipid/ion_spec.rb +83 -0
- data/spec/mspire/lipid/modification_spec.rb +41 -0
- data/spec/mspire/lipid/search_spec.rb +79 -0
- data/spec/mspire/lipid_maps_spec.rb +64 -0
- data/spec/mspire/lipid_spec.rb +16 -0
- data/spec/spec_helper.rb +13 -0
- data/spec/testfiles/lipidmaps_download.tsv +11 -0
- data/spec/testfiles/lipidmaps_programmatic_short.tsv +32 -0
- data/spec/testfiles/lipidmaps_sd_download.tsv +11 -0
- metadata +162 -0
@@ -0,0 +1,145 @@
|
|
1
|
+
Visit=
|
2
|
+
Visit
|
3
|
+
duplicate
|
4
|
+
set_idx
|
5
|
+
set_id
|
6
|
+
set_hyb
|
7
|
+
set_atomic_num
|
8
|
+
set_isotope
|
9
|
+
set_implicit_valence
|
10
|
+
increment_implicit_valence
|
11
|
+
decrement_implicit_valence
|
12
|
+
set_formal_charge
|
13
|
+
set_spin_multiplicity
|
14
|
+
set_type
|
15
|
+
set_partial_charge
|
16
|
+
set_coord_ptr
|
17
|
+
set_vector
|
18
|
+
set_residue
|
19
|
+
set_parent
|
20
|
+
set_aromatic
|
21
|
+
unset_aromatic
|
22
|
+
set_clockwise_stereo
|
23
|
+
set_anti_clockwise_stereo
|
24
|
+
set_positive_stereo
|
25
|
+
set_negative_stereo
|
26
|
+
unset_stereo
|
27
|
+
set_in_ring
|
28
|
+
set_chiral
|
29
|
+
clear_coord_ptr
|
30
|
+
get_formal_charge
|
31
|
+
get_atomic_num
|
32
|
+
get_isotope
|
33
|
+
get_spin_multiplicity
|
34
|
+
get_atomic_mass
|
35
|
+
get_exact_mass
|
36
|
+
get_idx
|
37
|
+
get_index
|
38
|
+
get_id
|
39
|
+
get_coordinate_idx
|
40
|
+
get_cidx
|
41
|
+
get_valence
|
42
|
+
get_hyb
|
43
|
+
get_implicit_valence
|
44
|
+
get_hvy_valence
|
45
|
+
get_hetero_valence
|
46
|
+
get_type
|
47
|
+
get_x
|
48
|
+
get_y
|
49
|
+
get_z
|
50
|
+
x
|
51
|
+
y
|
52
|
+
z
|
53
|
+
get_coordinate
|
54
|
+
get_vector
|
55
|
+
get_partial_charge
|
56
|
+
get_residue
|
57
|
+
get_parent
|
58
|
+
get_new_bond_vector
|
59
|
+
get_bond
|
60
|
+
get_next_atom
|
61
|
+
begin_bonds
|
62
|
+
end_bonds
|
63
|
+
begin_bond
|
64
|
+
next_bond
|
65
|
+
begin_nbr_atom
|
66
|
+
next_nbr_atom
|
67
|
+
get_distance
|
68
|
+
get_angle
|
69
|
+
new_residue
|
70
|
+
add_residue
|
71
|
+
delete_residue
|
72
|
+
add_bond
|
73
|
+
insert_bond
|
74
|
+
delete_bond
|
75
|
+
clear_bond
|
76
|
+
hto_methyl
|
77
|
+
set_hyb_and_geom
|
78
|
+
force_no_h
|
79
|
+
has_no_hforced
|
80
|
+
force_impl_h
|
81
|
+
has_impl_hforced
|
82
|
+
count_free_oxygens
|
83
|
+
implicit_hydrogen_count
|
84
|
+
explicit_hydrogen_count
|
85
|
+
member_of_ring_count
|
86
|
+
member_of_ring_size
|
87
|
+
count_ring_bonds
|
88
|
+
smallest_bond_angle
|
89
|
+
average_bond_angle
|
90
|
+
bosum
|
91
|
+
kbosum
|
92
|
+
has_residue
|
93
|
+
is_hydrogen
|
94
|
+
is_carbon
|
95
|
+
is_nitrogen
|
96
|
+
is_oxygen
|
97
|
+
is_sulfur
|
98
|
+
is_phosphorus
|
99
|
+
is_aromatic
|
100
|
+
is_in_ring
|
101
|
+
is_in_ring_size
|
102
|
+
is_heteroatom
|
103
|
+
is_not_cor_h
|
104
|
+
is_connected
|
105
|
+
is_one_three
|
106
|
+
is_one_four
|
107
|
+
is_carboxyl_oxygen
|
108
|
+
is_phosphate_oxygen
|
109
|
+
is_sulfate_oxygen
|
110
|
+
is_nitro_oxygen
|
111
|
+
is_amide_nitrogen
|
112
|
+
is_polar_hydrogen
|
113
|
+
is_non_polar_hydrogen
|
114
|
+
is_aromatic_noxide
|
115
|
+
is_chiral
|
116
|
+
is_axial
|
117
|
+
is_clockwise
|
118
|
+
is_anti_clockwise
|
119
|
+
is_positive_stereo
|
120
|
+
is_negative_stereo
|
121
|
+
has_chirality_specified
|
122
|
+
has_chiral_volume
|
123
|
+
is_hbond_acceptor
|
124
|
+
is_hbond_donor
|
125
|
+
is_hbond_donor_h
|
126
|
+
has_alpha_beta_unsat
|
127
|
+
has_bond_of_order
|
128
|
+
count_bonds_of_order
|
129
|
+
has_non_single_bond
|
130
|
+
has_single_bond
|
131
|
+
has_double_bond
|
132
|
+
has_aromatic_bond
|
133
|
+
matches_smarts
|
134
|
+
clear
|
135
|
+
do_transformations
|
136
|
+
get_title
|
137
|
+
set_title
|
138
|
+
has_data
|
139
|
+
delete_data
|
140
|
+
clone_data
|
141
|
+
data_size
|
142
|
+
get_all_data
|
143
|
+
get_data
|
144
|
+
begin_data
|
145
|
+
end_data
|