Skip to content

Commit de62ea2

Browse files
committed
version_1.0.0
1 parent 86d121d commit de62ea2

File tree

3 files changed

+24
-521
lines changed

3 files changed

+24
-521
lines changed

Qiime2_wrap.html

Lines changed: 0 additions & 492 deletions
This file was deleted.

README.html

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ <h1><strong>16S rRNA analysis pipeline</strong></h1>
370370
<p><br /></p>
371371
<p>The propose of this page is the reproducibility of the 16S data
372372
described in my publications
373-
(e.g.,<a href=" https://journals.asm.org/doi/abs/10.1128/AEM.00199-20">Tomazetto
373+
(e.g.,<a href="https://journals.asm.org/doi/abs/10.1128/AEM.00199-20">Tomazetto
374374
et al.</a>) or those are coming up soon. If you are looking for a
375375
tutorial,
376376
<a href="&lt;https://docs.qiime2.org/2022.2/tutorials/moving-pictures/">
@@ -386,6 +386,7 @@ <h1><strong>16S rRNA analysis pipeline</strong></h1>
386386
<li>Run the activate step.</li>
387387
<li>Test if qiime2 successfully activated 🔥- very important step.</li>
388388
</ul>
389+
<!-- -->
389390
<pre><code>qiime --help</code></pre>
390391
<p><br /></p>
391392
<ul>
@@ -417,12 +418,12 @@ <h1><strong>16S rRNA analysis pipeline</strong></h1>
417418
instructions - very fancy. 😁</p>
418419
<pre><code>(base) ➜ ~ python Write_manifestFile.py -help</code></pre>
419420
<p><br /> <strong>5. Processing the data.</strong></p>
420-
<p>Once you have the manifest file, <code>DrT_Qiime2.sh</code>, and of
421-
course, fastq.gz in a directory, you can run the script. All the steps
422-
are wrapped in a single script, including the importing the data,
423-
denoising, trimming, joining, table ASVs, tree, and basic diverstiy
424-
analysis. The script also has the steps to convert QIIME2 artifacts into
425-
visualization files, which you can view using qiime tools view or
421+
<p>Once you have the manifest file, <code>DrT_Qiime2.sh</code>, and
422+
fastq.gz in a directory, you can run the script. All the steps are
423+
wrapped in a single script, including the importing the data, denoising,
424+
trimming, joining, table ASVs, tree, and basic diverstiy analysis. The
425+
script also has the steps to convert QIIME2 artifacts into visualization
426+
files, which you can view using qiime tools view or
426427
<a href="https://view.qiime2.org">here</a>.</p>
427428
<p>Check out the output files and directories!</p>
428429
<p>
@@ -439,9 +440,9 @@ <h1><strong>16S rRNA analysis pipeline</strong></h1>
439440
after each step.</p>
440441
<p><br /></p>
441442
<p><strong>6. Plotting some graphics.</strong></p>
442-
<p>Here, you also find a R script to plot some graphics. Of course, you
443-
can plot different graphics emphasizing “little this or little that”. It
444-
is up to you.</p>
443+
<p>Here, you also find a R script to plot some graphics. You can plot
444+
different graphics emphasizing “little this or little that”. It is up to
445+
you.</p>
445446
<p><br /> All the best for us! 🤓</p>
446447
<hr />
447448
</div>

README.md

Lines changed: 13 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<br/>
44

5-
The propose of this page is the reproducibility of the 16S data described in my publications (e.g.,<a href=" https://journals.asm.org/doi/abs/10.1128/AEM.00199-20">Tomazetto et al.</a>) or those are coming up soon. If you are looking for a tutorial, <a href="<https://docs.qiime2.org/2022.2/tutorials/moving-pictures/"> here</a> is the best one you can have.
5+
The propose of this page is the reproducibility of the 16S data described in my publications (e.g.,<a href="https://journals.asm.org/doi/abs/10.1128/AEM.00199-20">Tomazetto et al.</a>) or those are coming up soon. If you are looking for a tutorial, <a href="<https://docs.qiime2.org/2022.2/tutorials/moving-pictures/"> here</a> is the best one you can have.
66

77
However, you are more than welcome to reach out to me if you need help. Do not worry, I won't jump into your work. But I'll be glad if you can cite one of my works as a reference. 😊
88

@@ -12,9 +12,9 @@ However, you are more than welcome to reach out to me if you need help. Do not w
1212
- Run the activate step.
1313
- Test if qiime2 successfully activated 🔥- very important step.
1414

15-
```
16-
qiime --help
17-
```
15+
<!-- -->
16+
17+
qiime --help
1818

1919
<br/>
2020

@@ -25,9 +25,7 @@ qiime --help
2525

2626
**2. Transfer the fastq.gz files from your computer/HDD to the server.**
2727

28-
```
29-
(base) ➜ ~ scp data/*.fastq.gz mylogin@login:/home/geize/16S/
30-
```
28+
(base) ➜ ~ scp data/*.fastq.gz mylogin@login:/home/geize/16S/
3129

3230
<br/>
3331

@@ -39,25 +37,21 @@ I usually create metadata files according to the project and what is need to com
3937

4038
🔥**Important note.**<br> Do not forget to save the file as tab-delimited - it's the best option. Validate your metadata using a Keemei.
4139

42-
```
43-
#SampleID Description Condition ...
44-
Sample01 Soil Ref ...
45-
Sample02 Cons A ...
46-
Sample03 Cons B ...
47-
and dadada...
48-
```
40+
#SampleID Description Condition ...
41+
Sample01 Soil Ref ...
42+
Sample02 Cons A ...
43+
Sample03 Cons B ...
44+
and dadada...
4945

5046
<br/> **4.Back to the server to create the manifest file.**
5147

5248
The following python script can help you to create a manifest file from any directory. Just type the command bellow to get more instructions - very fancy. 😁
5349

54-
```
55-
(base) ➜ ~ python Write_manifestFile.py -help
56-
```
50+
(base) ➜ ~ python Write_manifestFile.py -help
5751

5852
<br/> **5. Processing the data.**
5953

60-
Once you have the manifest file, `DrT_Qiime2.sh`, and of course, fastq.gz in a directory, you can run the script. All the steps are wrapped in a single script, including the importing the data, denoising, trimming, joining, table ASVs, tree, and basic diverstiy analysis. The script also has the steps to convert QIIME2 artifacts into visualization files, which you can view using qiime tools view or <a href="https://view.qiime2.org">here</a>.
54+
Once you have the manifest file, `DrT_Qiime2.sh`, and fastq.gz in a directory, you can run the script. All the steps are wrapped in a single script, including the importing the data, denoising, trimming, joining, table ASVs, tree, and basic diverstiy analysis. The script also has the steps to convert QIIME2 artifacts into visualization files, which you can view using qiime tools view or <a href="https://view.qiime2.org">here</a>.
6155

6256
Check out the output files and directories!
6357

@@ -75,7 +69,7 @@ The `qiime tools validate` command was added after some critical steps. Open the
7569

7670
**6. Plotting some graphics.**
7771

78-
Here, you also find a R script to plot some graphics. Of course, you can plot different graphics emphasizing "little this or little that". It is up to you.
72+
Here, you also find a R script to plot some graphics. You can plot different graphics emphasizing "little this or little that". It is up to you.
7973

8074
<br/> All the best for us! 🤓
8175

0 commit comments

Comments
 (0)