Mercurial > repos > prog > lcmsmatching
comparison README.md @ 6:f86fec07f392 draft default tip
planemo upload commit c397cd8a93953798d733fd62653f7098caac30ce
author | prog |
---|---|
date | Fri, 22 Feb 2019 16:04:22 -0500 |
parents | fb9c0409d85c |
children |
comparison
equal
deleted
inserted
replaced
5:fb9c0409d85c | 6:f86fec07f392 |
---|---|
7 | 7 |
8 The two matching algorithms used in this tool have been imported from developments made at [CEA](http://www.cea.fr/english) Saclay, inside the *DSV/IBITEC-S/SPI*. They have been translated from C# to R. | 8 The two matching algorithms used in this tool have been imported from developments made at [CEA](http://www.cea.fr/english) Saclay, inside the *DSV/IBITEC-S/SPI*. They have been translated from C# to R. |
9 | 9 |
10 For more information, see the galaxy tool page, help section, available inside `galaxy/lcmsmatching.xml`. | 10 For more information, see the galaxy tool page, help section, available inside `galaxy/lcmsmatching.xml`. |
11 | 11 |
12 ## search-mz | 12 ## lcmsmatching script |
13 | 13 |
14 This is the script, included in this repository, that allows run on command line an MZ matching on one of the available database types. | 14 This is the script, included in this repository, that allows to run on command line an MZ matching on one of the available database types. |
15 | 15 |
16 Please run `search-mz -h` for a help page listing all options and presenting some examples. | 16 Please run `lcmsmatching -h` for a help page listing all options and presenting some examples. |
17 | 17 |
18 ## Dependencies | 18 ## Dependencies |
19 | 19 |
20 * `libssl-dev`. | 20 * `R` version `3.5.1`. |
21 * `libcurl4-openssl-dev`. | |
22 * `libxml2-dev`. | |
23 * `R` version `3.2.2`. | |
24 * `R` packages: | 21 * `R` packages: |
25 - `getopt` >= `1.20.0`. | 22 - `getopt` >= `1.20.0`. |
26 - `stringr` >= `1.0.0`. | 23 - `biodb` >= `1.2.0rc2`. |
27 - `plyr` >= `1.8.3`. | |
28 - `XML` >= `3.98`. | |
29 - `bitops` >= `1.0_6`. | |
30 - `RCurl` >= `1.95`. | |
31 - `jsonlite` >= `1.1`. | |
32 | 24 |
33 ## Updates | 25 ## Changelog |
26 | |
27 ### 4.0.2 | |
28 | |
29 * Increase getopt version to 1.20.2. | |
30 | |
31 ### 4.0.1 | |
32 | |
33 * Downgrade to Galaxy 18.05. Test in both 18.05 and 18.09. | |
34 | |
35 ### 4.0.0 | |
36 | |
37 * Switch to biodb R library (<http://github.com/pkrog/biodb>). | |
38 * Remove Excel and 4TabSql databases from script. | |
39 * Remove all dynamic fields in XML (i.e.: fields computed using python scripts, like the list of chromatogaphic columns). | |
40 * Use now a single field for in-house file databases column names, whose value is a comma separated list of key/value pairs. | |
41 * Update Peakforest URL. | |
42 | |
43 ### 3.4.3 | |
44 | |
45 * Returns empty match in case of NA values in mz.low and mz.high. | |
46 * Speed up HTML output writing. | |
34 | 47 |
35 ### 3.3.1 | 48 ### 3.3.1 |
36 | 49 |
37 * Correct a bug while trying to connect to Peakforest for getting the list of chromatographic columns. | 50 * Correct a bug while trying to connect to Peakforest for getting the list of chromatographic columns. |
38 | 51 |