-
Notifications
You must be signed in to change notification settings - Fork 3
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 #71 from NBISweden/dev-percyfal
Dev percyfal
- Loading branch information
Showing
38 changed files
with
3,036 additions
and
374 deletions.
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -162,7 +162,6 @@ code.large { | |
|
||
.flushright { | ||
float: right; | ||
font-size: 70%; | ||
} | ||
|
||
.translatey50 { | ||
|
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,77 @@ | ||
--- | ||
title: "Demographic inference" | ||
author: | ||
- "André Soares" | ||
- "Per Unneberg" | ||
format: html | ||
--- | ||
|
||
::: {.callout-important collapse=true} | ||
|
||
#### {{< fa server >}} Compute environment setup | ||
|
||
If you haven't already done so, please read [Compute | ||
environment](../compute_environment/index.qmd) for information on how | ||
to prepare your working directory. | ||
|
||
::: | ||
|
||
::: {.callout-tip collapse=true} | ||
|
||
## Learning objectives | ||
|
||
::: | ||
|
||
::: {.callout-note collapse=true} | ||
|
||
## Data setup | ||
|
||
:::{.panel-tabset} | ||
|
||
#### UPPMAX | ||
|
||
#### Local | ||
|
||
::: | ||
|
||
::: | ||
|
||
::: {.callout-note collapse=true} | ||
|
||
## Tools | ||
|
||
:::{.panel-tabset} | ||
|
||
#### Listing | ||
|
||
- [psmc](https://github.com/lh3/psmc) [@li_InferenceHumanPopulation_2011] | ||
|
||
#### UPPMAX modules | ||
|
||
Execute the following command to load modules: | ||
|
||
```{bash } | ||
#| label: uppmax-load-modules | ||
#| echo: true | ||
#| eval: false | ||
module load uppmax bioinfo-tools \ | ||
psmc/0.6.5-r67-e5f7df5 | ||
``` | ||
|
||
#### Conda | ||
|
||
Copy the contents to a file `environment.yml` and install packages | ||
with `mamba env update -f environment.yml`. | ||
|
||
```{lang="text" } | ||
channels: | ||
- conda-forge | ||
- bioconda | ||
- default | ||
dependencies: | ||
- psmc | ||
``` | ||
|
||
::: | ||
|
||
::: |
Oops, something went wrong.