@@ -25,14 +25,12 @@ This is is the **fastqc** pipeline from the `Sequana <https://sequana.readthedoc
25
25
Installation
26
26
~~~~~~~~~~~~
27
27
28
- You must install Sequana first (use --upgrade to get the latest version installed)::
29
-
30
- pip install sequana --upgrade
31
-
32
- Then, just install this package::
28
+ sequana_fastqc is based on Python3, just install the package as follows::
33
29
34
30
pip install sequana_fastqc --upgrade
35
31
32
+ You will need third-party software such as fastqc. Please see below for details.
33
+
36
34
Usage
37
35
~~~~~
38
36
@@ -47,10 +45,10 @@ To know more about the options (e.g., add a different pattern to restrict the
47
45
execution to a subset of the input files, change the output/working directory,
48
46
etc)::
49
47
50
- sequana_pipelines_fastqc --help
51
- sequana_pipelines_fastqc --input-directory DATAPATH
48
+ sequana_fastqc --help
49
+ sequana_fastqc --input-directory DATAPATH
52
50
53
- This creates a directory **fastq **. You just need to execute the pipeline::
51
+ This creates a directory **fastqc **. You just need to execute the pipeline::
54
52
55
53
cd fastqc
56
54
sh fastqc.sh # for a local run
@@ -83,7 +81,7 @@ then, prepare the pipeline::
83
81
Just open the HTML entry called summary.html. A multiqc report is also available.
84
82
You will get expected images such as the following one:
85
83
86
- .. image :: https://github.com/sequana/fastqc/blob/master /doc/summary.png?raw=true
84
+ .. image :: https://github.com/sequana/fastqc/blob/main /doc/summary.png?raw=true
87
85
88
86
Please see the `Wiki <https://github.com/sequana/fastqc/wiki >`_ for more examples and features.
89
87
@@ -94,15 +92,17 @@ This pipelines requires the following executable(s):
94
92
95
93
- fastqc
96
94
- falco (optional)
97
- - sequana (Python: pip install sequana)
98
95
99
- For Linux users, we provide a singularity image available through damona::
100
96
101
- pip install damona
102
- damona install fastqc
103
- # and add the ~/.config/damona/bin path to your binary PATH
97
+ For Linux users, we provide singularity images available through within the **damona ** project (https://damona.readthedocs.io).
98
+
99
+ To mak use of them, initiliase the pipeline with the --use-singularity option and everything should be downloaded
100
+ automatically for you, which also guarantees reproducibility::
101
+
102
+ sequana_fastqc --input-directory data --use-singularity
103
+
104
104
105
- .. image :: https://raw.githubusercontent.com/sequana/fastqc/master /sequana_pipelines/fastqc/dag.png
105
+ .. image :: https://raw.githubusercontent.com/sequana/fastqc/main /sequana_pipelines/fastqc/dag.png
106
106
107
107
108
108
Details
@@ -124,14 +124,16 @@ ready-to-use HTML reports, etc
124
124
Rules and configuration details
125
125
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
126
126
127
- Here is the `latest documented configuration file <https://raw.githubusercontent.com/sequana/fastqc/master /sequana_pipelines/fastqc/config.yaml >`_
127
+ Here is the `latest documented configuration file <https://raw.githubusercontent.com/sequana/fastqc/main /sequana_pipelines/fastqc/config.yaml >`_
128
128
to be used with the pipeline. Each rule used in the pipeline may have a section in the configuration file.
129
129
130
130
Changelog
131
131
~~~~~~~~~
132
132
========= ====================================================================
133
133
Version Description
134
134
========= ====================================================================
135
+ 1.6.0 * Fixed falco output error and use singularity containers
136
+ 1.5.0 * removed modules completely.
135
137
1.4.2 * simplified pipeline (suppress setup and use existing wrapper)
136
138
1.4.1 * simplified pipeline with wrappers/rules
137
139
1.4.0 * This version uses sequana 0.12.0 and new sequana-wrappers
0 commit comments