0
|
1
|
|
2 INTRODUCTION
|
|
3 =====
|
|
4 This file describes the format of the database generated by XSeeker
|
|
5 Preprocessor. This format will evolve in the future to fit users
|
|
6 wanted features. That's why there is a history of versions numbers,
|
|
7 describing what they brought to the sqlite file, and how it was usefull.
|
|
8
|
|
9 The first version (the older one) is at the bottom of this file, and the
|
|
10 modifications provided by the newest versions are on top of the file.
|
|
11
|
20
|
12 Also, the changelog will be mixed to this file
|
|
13
|
|
14
|
|
15 VERSION 1.3.1
|
|
16 =====
|
|
17 bugfix in files processing, some files were not processed due to
|
|
18 a missunderstanding of the meaning of a field in the rdata.
|
|
19
|
0
|
20
|
19
|
21 VERSION 1.3.0
|
|
22 =====
|
|
23 add an option to use the provided column as a class
|
|
24
|
|
25
|
0
|
26 VERSION 1.1.2
|
|
27 =====
|
|
28 add missing mz_tab_info$group_length field to produce mzTab
|
|
29
|
|
30 VERSION 1.1.1
|
|
31 =====
|
|
32 add missing mz_tab_info$dataset_path field to produce mzTab
|
|
33
|
|
34
|
|
35 VERSION 1.1.0
|
|
36 =====
|
|
37 Summary:
|
|
38 - The field `mz_tab_info` was added in new table smol_xcms_set.
|
|
39
|
|
40 smol_xcms_set table added
|
|
41 -----
|
|
42 This table contains a subset of the original ms file.
|
|
43
|
|
44 mz_tab_info field added to smol_xcms_set
|
|
45 -----
|
|
46 This field contains five subfields:
|
|
47 - sampclass ;
|
|
48 - sampnames ;
|
|
49 - rtmed ;
|
|
50 - mzmed ;
|
|
51 - smallmolecule_abundance_assay .
|
|
52
|
|
53 These fields were added after users asked to export data from XSeeker
|
|
54 in mzTab files.
|
|
55 XCMS has some functions to extract sampclass, sampnames, rtmed, mzmed
|
|
56 and smallmolecule_abundance_assay from xcms set. Then, they are used
|
|
57 in the mz tab creation process, but we didn't want to keep the whole
|
|
58 xcmsset object. So we used the original code from XCMS and modified it
|
|
59 a little bit, justifying the extraction of these new fields.
|
|
60
|
|
61
|
|
62 VERSION 1.0.0
|
|
63 =====
|
|
64
|
|
65
|
|
66 DATABASE
|
|
67 -----
|
|
68
|
|
69 ### SAMPLE
|
|
70
|
|
71 #### RAW
|
|
72 This structure is an epurated and enriched version of the original
|
|
73 rdata, saved as a compressed env:
|
|
74 `blob::blob(fst::compress_fst(serialize(raw, NULL), compression=100))`
|
|
75
|
|
76 The fields contained in the env are as follow:
|
|
77
|
|
78 ##### variableMetadata
|
|
79
|
|
80 ##### tic
|
|
81
|
|
82 ##### mz
|
|
83
|
|
84 ##### scanindex
|
|
85
|
|
86 ##### scantime
|
|
87
|
|
88 ##### intensity
|
|
89
|
|
90 ##### polarity
|
|
91
|
|
92 ##### sample_name
|
|
93
|
|
94 ##### dataset_path
|
|
95
|
|
96 ##### process_params
|
|
97
|
|
98 ##### enriched_rdata
|
|
99
|
|
100 ##### enriched_rdata_version
|
|
101
|
|
102 ##### tool_name
|
|
103
|
|
104 ##### enriched_rdata_doc |