Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add geofetch tutorial #304

Merged
merged 2 commits into from
Aug 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions docs/using-geofetch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# How to set up a new GEO project

You can use [geofetch](http://geofetch.databio.org) to quickly set up a project to run with looper.

## Download data

```
geofetch -i GSE69993 --just-metadata -m metadata
```

## Initialize looper

Make it easier to run looper without specifying the config

```
looper init metadata/*.yaml
```

## Convert to fastq

Now, you can convert the files from sra into fastq format:

```
looper run --amend sra_convert
```

## Run pipeline

Add a pipeline interface to link to a project

(Experimental)

```
looper mod "pipeline_interfaces: /path/to/piface.yaml"
```
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ nav:
- Running multiple pipelines: multiple-pipelines.md
- Writing a pipeline interface: writing-a-pipeline-interface.md
- Create looper config file: how_to_define_looper_config.md
- Using geofetch: using-geofetch.md
- Using divvy:
- Introduction: README_divvy.md
- Install and configure: install_divvy.md
Expand Down
Loading