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

Merge develop into main to fix submodule clone error #19

Merged
merged 4 commits into from
Mar 5, 2024
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
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "workflows/wdl-common"]
path = workflows/wdl-common
url = [email protected]:PacificBiosciences/wdl-common.git
url = ../wdl-common.git
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<h1 align="center"><img width="300px" src="images/logo_wdl_workflows.svg"/></h1>
<h1 align="center"><img width="300px" src="https://github.com/PacificBiosciences/HiFi-human-assembly-WDL/raw/main/images/logo_wdl_workflows.svg"/></h1>

<h1 align="center">PacBio Human Assembly Pipeline</h1>

Expand All @@ -13,15 +13,15 @@ Workflow for running de novo assembly using human PacBio whole genome sequencing

The assembly workflow performs _de novo_ assembly on samples and trios.

![De novo assembly workflow diagram](images/main.graphviz.svg "De novo assembly workflow diagram")
![De novo assembly workflow diagram](https://github.com/PacificBiosciences/HiFi-human-assembly-WDL/raw/main/images/main.graphviz.svg "De novo assembly workflow diagram")

## Setup

Clone a tagged version of the git repository. Use the `--branch` flag to pull the desired version, and the `--recursive` flag to pull code from any submodules.

```
git clone \
--depth 1 --branch v1.0.0 \ # for reproducibility
--depth 1 --branch v1.0.1 \ # for reproducibility
--recursive \ # to clone submodule
https://github.com/PacificBiosciences/HiFi-human-assembly-WDL.git
```
Expand Down
Loading