Skip to content

Commit a4d982e

Browse files
Merge pull request #3181 from antgonza/docs-improvements
fix #3170 + others
2 parents 0979712 + 9974f9c commit a4d982e

File tree

4 files changed

+28
-7
lines changed

4 files changed

+28
-7
lines changed

qiita_pet/support_files/doc/source/checklist-for-ebi-ena-submission.rst

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,16 @@ applies for studies in sandbox state that will become private or public.
1515
.. warning::
1616
direct BIOM uploads cannot become private or public
1717

18+
.. note::
19+
The EBI-ENA submission returns two accessions - the primary starts with PRJ
20+
and the secondary with ERP; they can be used interchangeably. We suggest that
21+
you add at least one of them to your manuscript, together with the Qiita Study id.
22+
Please do not forget to cite Qiita (https://doi.org/10.1038/s41592-018-0141-9).
23+
This information should be sufficient for your manuscript but if you would like
24+
to add direct links to your data, once they are public, you can use the EBI-ENA:
25+
`https://www.ebi.ac.uk/ena/browser/view/[accession]` or the Qiita Study
26+
id: `https://qiita.ucsd.edu/public/?study_id=[study-id]`
27+
1828
`Here <https://knightlab.ucsd.edu/wordpress/wp-content/uploads/2016/04/QiitaTemplate_20181218.xlsx>`__ you will find a document outlining these requirements, with examples, when possible.
1929

2030
Note that submissions are time consuming and need full collaboration from the user.
@@ -140,6 +150,7 @@ Remember, metadata is the most important part for an analysis, without it we onl
140150

141151
.. note::
142152
The current valid values for instrument_model per platform are - please contact us if you would like to add yours to this list:
153+
143154
+---------------------+----------------------------------------------------------------------------------------------------------+
144155
| Platform | Valid instrument_model options |
145156
+=====================+==========================================================================================================+
@@ -150,7 +161,7 @@ Remember, metadata is the most important part for an analysis, without it we onl
150161
| | ``Illumina Genome Analyzer IIx``, ``Illumina HiScanSQ``, ``Illumina HiSeq 1000``, |
151162
| | ``Illumina HiSeq 1500``,, ``Illumina HiSeq 2000``, ``Illumina HiSeq 2500``, ``Illumina HiSeq 3000``, |
152163
| | ``Illumina HiSeq 4000``, ``Illumina MiSeq``, ``Illumina MiniSeq``, ``Illumina NovaSeq 6000``, |
153-
| | ``NextSeq 500``, ``NextSeq 550``, ``Illumina NovaSeq 6000`` or ``unspecified`` |
164+
| | ``NextSeq 500``, ``NextSeq 550``, or ``unspecified`` |
154165
+---------------------+----------------------------------------------------------------------------------------------------------+
155166
| ``Ion_Torrent`` | ``Ion Torrent PGM``, ``Ion Torrent Proton``, ``Ion Torrent S5``, ``Ion Torrent S5 XL`` |
156167
+---------------------+----------------------------------------------------------------------------------------------------------+

qiita_pet/support_files/doc/source/conf.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323

2424
import sys
2525
import os
26+
from qiita_db import __version__ as qiita_version
2627

2728
import sphinx_bootstrap_theme
2829

@@ -64,9 +65,9 @@
6465
# built documents.
6566
#
6667
# The short X.Y version.
67-
version = '0.1.0-dev'
68+
version = qiita_version
6869
# The full version, including alpha/beta/rc tags.
69-
release = '0.1.0-dev'
70+
release = qiita_version
7071

7172
# The language for content autogenerated by Sphinx. Refer to documentation
7273
# for a list of supported languages.

qiita_pet/support_files/doc/source/downloading.rst

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,17 @@ artifacts public and select "Allow Qiita users to download raw data files" from
1414
the main study page.
1515

1616
.. note::
17-
Note that all Qiita downloads are zip files but the name of the file will change based on the tool you use to download them. For example if you are using wget, we recommend adding the URL in quotes and using the -O flag to save the file with a correct name; like this: wget "your-qiita-URL" -O your_filename.zip
18-
17+
- All Qiita downloads are zip files but the name of the file will change based
18+
on the tool you use to download them. For example if you are using wget,
19+
we recommend adding the URL in quotes and using the -O flag to save the
20+
file with a correct name; like this:
21+
`wget "your-qiita-URL" -O your_filename.zip`.
22+
- The downloaded zip file is a dump of our storage with the data you requested
23+
organized by the data type. This is, when unzipped the contents will be
24+
in folders by the type (`mapping_file, BIOM, per_sample_FASTQ, processed_data,
25+
etc`) and within each you will have (a) folder(s) with the artifact id(s) download;
26+
each of these folders will have the files of that artifact: `biom, txt, fastq.gz,
27+
index.html, etc.`
1928

2029
Downloading All Public Data in BIOM format
2130
------------------------------------------

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@
105105
install_requires=['psycopg2', 'click', 'bcrypt', 'pandas',
106106
'biom-format', 'tornado<6.0', 'toredis', 'redis',
107107
'scp', 'pyparsing', 'h5py', 'natsort', 'nose', 'pep8',
108-
'networkx', 'humanize', 'wtforms<3.0.0',
109-
'openpyxl', 'sphinx-bootstrap-theme', 'Sphinx', 'nltk',
108+
'networkx', 'humanize', 'wtforms<3.0.0', 'nltk',
109+
'openpyxl', 'sphinx-bootstrap-theme', 'Sphinx<3.0',
110110
'gitpython', 'redbiom', 'pyzmq', 'sphinx_rtd_theme',
111111
'paramiko', 'seaborn', 'matplotlib', 'scipy', 'nose',
112112
'flake8', 'six', 'qiita-files @ https://github.com/'

0 commit comments

Comments
 (0)