9
9
.. image :: https://github.com/sequana/nanomerge/actions/workflows/main.yml/badge.svg
10
10
:target: https://github.com/sequana/nanomerge/actions/workflows
11
11
12
+ .. image :: https://coveralls.io/repos/github/sequana/nanomerge/badge.svg?branch=main
13
+ :target: https://coveralls.io/github/sequana/nanomerge?branch=main
14
+
15
+
16
+ .. image :: http://joss.theoj.org/papers/10.21105/joss.00352/status.svg
17
+ :target: http://joss.theoj.org/papers/10.21105/joss.00352
18
+ :alt: JOSS (journal of open source software) DOI
19
+
20
+ .. image :: https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C3.10-blue.svg
21
+ :target: https://pypi.python.org/pypi/sequana
22
+ :alt: Python 3.8 | 3.9 | 3.10
23
+
12
24
13
25
14
26
@@ -28,9 +40,11 @@ You can install the packages using pip::
28
40
29
41
pip install sequana_nanomerge --upgrade
30
42
31
- An optional requirements is pycoQC, which can be install with conda/mamba using e.g.:
43
+ An optional requirements is pycoQC, which can be install with conda/mamba using e.g.::
44
+
45
+ conda install pycoQC
32
46
33
- conda install pycoQC .
47
+ you will also need graphviz installed .
34
48
35
49
Usage
36
50
~~~~~
@@ -49,9 +63,9 @@ otherwise all fastq files are in DATAPATH/::
49
63
sequana_nanomerge --input-directory DATAPATH --samplesheet samplesheet.csv
50
64
--summary summary.txt --input-pattern '*fastq.gz'
51
65
52
- The --summary is optional and takes as input the output of albacore demultiplexing. usually a file called sequencing_summary.txt
66
+ The --summary is optional and takes as input the output of albacore/guppy demultiplexing. usually a file called sequencing_summary.txt
53
67
54
- Note that the different between the two is the extra `*/ ` before the `*.fastq.gz ` pattern since barcoded files are in individual subdirectories..
68
+ Note that the different between the two is the extra `*/ ` before the `*.fastq.gz ` pattern since barcoded files are in individual subdirectories.
55
69
56
70
In both bases, the command creates a directory with the pipeline and configuration file. You will then need to execute the pipeline::
57
71
@@ -65,19 +79,19 @@ retrieve the pipeline itself and its configuration files and then execute the pi
65
79
66
80
Or use `sequanix <https://sequana.readthedocs.io/en/master/sequanix.html >`_ interface.
67
81
68
- COncerning the sample sheet, whther your data is barcoded or not, it should be a CSV file ::
82
+ Concerning the sample sheet, whether your data is barcoded or not, it should be a CSV file ::
69
83
70
84
barcode,project,sample
71
85
barcode01,main,A
72
86
barcode02,main,B
73
87
barcode03,main,C
74
88
75
- For a non-barcoded run, you must provide a file where the barcode column can be set (empty) or just removed ::
89
+ For a non-barcoded run, you must provide a file where the barcode column can be set (empty)::
76
90
77
91
barcode,project,sample
78
92
,main,A
79
93
80
- or::
94
+ or just removed ::
81
95
82
96
project,sample
83
97
main,A
@@ -109,6 +123,7 @@ Requirements
109
123
This pipelines requires the following executable(s), which is optional:
110
124
111
125
- pycoQC
126
+ - dot
112
127
113
128
.. image :: https://raw.githubusercontent.com/sequana/nanomerge/main/sequana_pipelines/nanomerge/dag.png
114
129
@@ -132,6 +147,7 @@ Changelog
132
147
========= ====================================================================
133
148
Version Description
134
149
========= ====================================================================
150
+ 1.0.1 Fix the pyco file paths, update requirements and doc
135
151
1.0.0 Stable release ready for production
136
152
0.0.1 **First release. **
137
153
========= ====================================================================
0 commit comments