comparison README.md @ 5:ec4a183cc713 draft

planemo upload for repository https://github.com/bernt-matthias/mb-galaxy-tools/tree/topic/dada2/tools/dada2 commit 990192685955e9cda0282e348c28ef6462d88a38
author matthias
date Sun, 05 May 2019 12:37:14 -0400
parents
children 6da167015b3e
comparison
equal deleted inserted replaced
4:383501d6aeb0 5:ec4a183cc713
1 Wrappers for the core functionality of the dada2 package https://benjjneb.github.io/dada2/index.html.
2
3 - filterAndTrim
4 - derep
5 - learnErrors
6 - dada
7 - mergePairs
8 - makeSequenceTable
9 - removeBimeraDenovo
10
11 Datatypes
12 =========
13
14 The dada2 Galaxy wrappers use a few extra data types to ensure that only inputs of the correct type can be used.
15
16 For the outputs of derep, dada, learnErrors, and mergePairs the following datatypes are used that derive from Rdata (which contains the named list that is returned from the corresponding dada function):
17
18 - dada2_derep (Rdata: named list see docs for derep-class)
19 - dada2_dada (Rdata: named list, see docs for dada-class)
20 - dada2_errorrates (Rdata: named list, see docs for learnErrors)
21 - dada2_mergepairs (Rdata: named list, see docs for mergePairs)
22
23 For the outputs of makeSequenceTable and removeBimeraDenovo the following data types are used which derive from tabular:
24
25 - dada2_uniques
26 -- in R a named integer vector (names are the unique sequences)
27 -- in Galaxy written as a table (each row corresponding to a unique sequence, column 1: the sequence, column 2: the count)
28 - dada2_sequencetable
29 -- in R a named integer matrix (rows = samples, columns = unique sequences)
30 -- in Galaxy written as a table (rows = unique sequences, columns = samples)
31
32 Note the difference between the R and Galaxy representations! The main motivation is that the dada2_sequencetable is analogous to OTU tables as produced for instance by qiime (and it seemed natural to extend this to the uniques which are essentially a sequencetables of single samples).
33
34
35 TODOs
36 =====
37
38 - implememt getUniques tool to view intermediate results?
39 - implement tests for cached reference data