-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #220 from NAL-i5K/third
Update document (CentOS setup and github repos information)
- Loading branch information
Showing
6 changed files
with
40 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Advanced Setup | ||
============== | ||
|
||
JBrowse/Apollo Linkout Integration | ||
---------------------------------- | ||
|
||
In Genomics workspace, we have a linkout integration between BLAST and JBrowse/Apollo. | ||
You can directly go to corresponding sequence location through clicking entries in BLAST result table. | ||
To start using it, make change of :code:`ENABLE_JBROWSE_INTEGRATION` in :code:`i5k/settings.py`; | ||
|
||
.. code-block:: python | ||
ENABLE_JBROWSE_INTEGRATION = True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,3 +9,4 @@ This is our introduction to this project. | |
|
||
setup_guide_centos | ||
setup_guide_macos | ||
advanced_setup |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
Trouble Shooting | ||
================ | ||
|
||
Q: I get an error message like: :code:`FATAL: Ident authentication failed`. How can I fix this ? | ||
|
||
A: It's because the setting of PostgreSQL database. | ||
Try to modify the config file :code:`pg_hba.conf`. | ||
For example, in PostgreSQL 9.5, the file is at :code:`/var/lib/pgsql/9.5/data/pg_hba.conf`. | ||
Make sure you change part of the content of it into something like: | ||
|
||
.. code-block:: none | ||
local all all peer | ||
host all all 127.0.0.1/32 ident | ||
host all all ::1/128 md5 |