Skip to content

Commit 6e673bd

Browse files
sjanssen2antgonza
andauthored
extend install instructions to also install g++ (qiita-spots#3354)
* Update CHANGELOG.md * Update INSTALL.md Explicitly add g++ as install dependency, as I recently ran into issues with missing limit.h header files. This issue was because g++ was not available, only gcc. --------- Co-authored-by: Antonio Gonzalez <[email protected]>
1 parent aa31779 commit 6e673bd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Deployed on January 8th, 2024
1313
* Workflow definitions can now use sample or preparation information columns/values to differentiate between them.
1414
* Updated the Adapter and host filtering plugin (qp-fastp-minimap2) to v2023.12 addressing a bug in adapter filtering; [more information](https://qiita.ucsd.edu/static/doc/html/processingdata/qp-fastp-minimap2.html).
1515
* Other fixes: [3334](https://github.com/qiita-spots/qiita/pull/3334), [3338](https://github.com/qiita-spots/qiita/pull/3338). Thank you @sjanssen2.
16-
* The internal Sequence Processing Pipeline is now using the human pan-genome reference, together with the GRCh38 genome + PhiX and CHM13 genome for human host filtering.
16+
* The internal Sequence Processing Pipeline is now using the human pan-genome reference, together with the GRCh38 genome + PhiX and T2T-CHM13v2.0 genome for human host filtering.
1717

1818

1919
Version 2023.10

INSTALL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,9 +162,9 @@ Navigate to the cloned directory and ensure your conda environment is active:
162162
cd qiita
163163
source activate qiita
164164
```
165-
If you are using Ubuntu or a Windows Subsystem for Linux (WSL), you will need to ensure that you have a C++ compiler and that development libraries and include files for PostgreSQL are available. Type `cc` into your system to ensure that it doesn't result in `program not found`. The following commands will install a C++ compiler and `libpq-dev`:
165+
If you are using Ubuntu or a Windows Subsystem for Linux (WSL), you will need to ensure that you have a C++ compiler and that development libraries and include files for PostgreSQL are available. Type `cc` into your system to ensure that it doesn't result in `program not found`. If you use the the GNU Compiler Collection, make sure to have `gcc` and `g++` available. The following commands will install a C++ compiler and `libpq-dev`:
166166
```bash
167-
sudo apt install gcc # alternatively, you can install clang instead
167+
sudo apt install gcc g++ # alternatively, you can install clang instead
168168
sudo apt-get install libpq-dev
169169
```
170170
Install Qiita (this occurs through setuptools' `setup.py` file in the qiita directory):

0 commit comments

Comments
 (0)