Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
nsheff committed Feb 28, 2019
1 parent fed0e41 commit 33810dd
Show file tree
Hide file tree
Showing 8 changed files with 38 additions and 21 deletions.
4 changes: 2 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[![PEP compatible](http://pepkit.github.io/img/PEP-compatible-green.svg)](http://pepkit.github.io)
# <img src="img/geofetch_logo.svg" class="img-header">

# <img src="img/geofetch_logo.svg" class="img-fluid" style="max-height:45px; margin-top:-15px; margin-bottom:-10px"> geofetch
[![PEP compatible](http://pepkit.github.io/img/PEP-compatible-green.svg)](http://pepkit.github.io)

`geofetch` is a command-line tool that does two things when given one or more GEO/SRA accessions:

Expand Down
13 changes: 13 additions & 0 deletions docs/faq.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# FAQ


## I get an error: `geofetch: command not found` after installing. Why isn't the `geofetch` executable in my path?


By default, Python packages are installed to `~/.local/bin`. You can add this location to your path by appending it:

```
export PATH=$PATH:~/.local/bin
```

Add this line to your `.bashrc` or `.profile` to make it permanent.
26 changes: 13 additions & 13 deletions docs/img/geofetch_logo_dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/tutorial.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# geofetch tutorial
# <img src="../img/geofetch_logo.svg" class="img-header"> tutorial

## Prerequisites

Expand Down
9 changes: 6 additions & 3 deletions docs/usage.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# <img src="../img/geofetch_logo.svg" class="img-fluid" style="max-height:35px; margin-top:-15px; margin-bottom:-10px"> usage reference
# <img src="../img/geofetch_logo.svg" class="img-header"> usage reference

`geofetch` command-line usage instructions:

Expand All @@ -9,7 +9,7 @@
usage: geofetch [-h] -i INPUT [-n NAME] [-m METADATA_FOLDER] [-f]
[--just-metadata] [-r] [--acc-anno] [--use-key-subset] [-x]
[--config-template CONFIG_TEMPLATE] [-p] [-g GEO_FOLDER]
[-b BAM_FOLDER]
[-b BAM_FOLDER] [-P PIPELINE_INTERFACES]
Automatic GEO SRA data downloader
Expand Down Expand Up @@ -40,12 +40,15 @@ optional arguments:
setting instead treats each run as a separate sample
--config-template CONFIG_TEMPLATE
Project config yaml file template.
-p, --processed Download processed data (Default: download raw data).
-p, --processed Download processed data [Default: download raw data].
-g GEO_FOLDER, --geo-folder GEO_FOLDER
Optional: Specify a location to store processed GEO
files [Default: $GEODATA:]
-b BAM_FOLDER, --bam-folder BAM_FOLDER
Optional: Specify folder of bam files. Geofetch will
not download sra files when corresponding bam files
already exist. [Default: $SRABAM:]
-P PIPELINE_INTERFACES, --pipeline_interfaces PIPELINE_INTERFACES
Optional: Specify the filepath of a pipeline interface
yaml file. [Default: null]
```
2 changes: 1 addition & 1 deletion docs/usage_template.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# <img src="../img/geofetch_logo.svg" class="img-fluid" style="max-height:45px; margin-top:-15px; margin-bottom:-10px"> usage reference
# <img src="../img/geofetch_logo.svg" class="img-header"> usage reference

`geofetch` command-line usage instructions:

Expand Down
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ nav:
- How to control data location: howto-location.md
- Reference:
- Usage: usage.md
- FAQ: faq.md
- Support: support.md
- Contributing: contributing.md
- Changelog: changelog.md
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def get_static(name, condition=None):
name=PACKAGE,
packages=[PACKAGE],
version=version,
description="A ",
description="Downloads data and metadata from GEO and SRA and creates standard PEPs.",
long_description=long_description,
classifiers=[
"Development Status :: 4 - Beta",
Expand Down

0 comments on commit 33810dd

Please sign in to comment.