-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix action * Label sampleset on PCA plots in report.qmd * add reference panel name * Plot distributions for multiple adjustment methods * fix action o_O * Small edits for clarity/simplicity * More informative legends for PCA plots * Move pointer to online documentation closer to the header. * Add in match_flipped (Matches strand flip) to variant log table (was previously missing) * Oops * Oops (v2 double set of quotes) * Add reference intersection statistics to report (#129) * count intersection hit/miss * add count to report * Ancestry version of the report needs to indicate variants that were excluded because they do not match the reference ToDo: replace values to be in comparison of % of variants in target that are in reference * fix intersect stats * hide ancestry headers automatically * fraposa dev -> fraposa v0.1.0 * fix container tags * melt non-ancestry aggregated scores * update conda requirements * upgrade quarto to fix error * fix dockerfile * empty commit to trigger action with fresh cache --------- Co-authored-by: Benjamin Wingfield <[email protected]>
- Loading branch information
Showing
11 changed files
with
174 additions
and
82 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
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
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,6 @@ | ||
name: fraposa | ||
dependencies: | ||
- python=3.10 | ||
- pip | ||
- pip: | ||
- fraposa-pgsc==0.1.0 |
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 |
---|---|---|
@@ -1,22 +1,16 @@ | ||
FROM r-base:4.3.0 AS quarto_arm64 | ||
ARG QUARTO_VERSION=1.3.433 | ||
|
||
ONBUILD RUN apt-get update && \ | ||
apt-get install -y gdebi wget | ||
FROM r-base:4.3.0 | ||
|
||
ONBUILD RUN wget https://github.com/quarto-dev/quarto-cli/releases/download/v1.3.302/quarto-1.3.302-linux-arm64.deb && \ | ||
gdebi --non-interactive quarto-1.3.302-linux-arm64.deb && \ | ||
rm quarto-1.3.302-linux-arm64.deb | ||
ARG QUARTO_VERSION | ||
ARG TARGETARCH | ||
|
||
FROM r-base:4.3.0 AS quarto_amd64 | ||
|
||
ONBUILD RUN apt-get update && \ | ||
apt-get install -y gdebi wget | ||
|
||
ONBUILD RUN wget https://github.com/quarto-dev/quarto-cli/releases/download/v1.3.302/quarto-1.3.302-linux-amd64.deb && \ | ||
gdebi --non-interactive quarto-1.3.302-linux-amd64.deb && \ | ||
rm quarto-1.3.302-linux-amd64.deb | ||
RUN wget https://github.com/quarto-dev/quarto-cli/releases/download/v${QUARTO_VERSION}/quarto-${QUARTO_VERSION}-linux-${TARGETARCH}.deb && \ | ||
dpkg -i quarto-${QUARTO_VERSION}-linux-${TARGETARCH}.deb && \ | ||
rm quarto-${QUARTO_VERSION}-linux-${TARGETARCH}.deb | ||
|
||
FROM quarto_${TARGETARCH} | ||
|
||
RUN R -e 'install.packages(c("DT", "purrr", "jsonlite", "dplyr", "ggplot2", "tidyr", "forcats", "readr"), clean=TRUE)' | ||
RUN R -e 'install.packages(c("DT", "data.table", "purrr", "jsonlite", "dplyr", "ggplot2", "tidyr", "forcats", "readr", "R.utils"), clean=TRUE)' | ||
|
||
RUN apt-get update \ | ||
&& apt-get install -y procps \ | ||
&& rm -rf /var/lib/apt/lists/* |
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 |
---|---|---|
|
@@ -11,3 +11,4 @@ dependencies: | |
- r-readr | ||
- r-purrr | ||
- r-jsonlite | ||
- r-datatable |
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
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
Oops, something went wrong.