-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create barebones Distill site for analyses
- Loading branch information
Showing
4 changed files
with
31 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Knitr cache for posts | ||
**_cache/ | ||
# Distill site output; this will be copied to the site branch | ||
_site/ |
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,12 @@ | ||
name: "da-notebook" | ||
title: "Research notebook for manuscript on taxonomic bias and differential-abundance methods" | ||
description: | | ||
Research notebook for manuscript on taxonomic bias and differential-abundance methods | ||
output_dir: "_site" | ||
navbar: | ||
right: | ||
- text: "Home" | ||
href: index.html | ||
- text: "About" | ||
href: about.html | ||
output: distill::distill_article |
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,10 @@ | ||
--- | ||
title: "About this site" | ||
description: | | ||
--- | ||
|
||
```{r setup, include=FALSE} | ||
knitr::opts_chunk$set(echo = FALSE) | ||
``` | ||
|
||
This site contains analyses for a manuscript on the impact of taxonomic bias on microbimoe differential-abundance methods. |
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,5 @@ | ||
--- | ||
title: "Research notebook for manuscript on taxonomic bias and differential-abundance methods" | ||
site: distill::distill_website | ||
listing: posts | ||
--- |