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
# LOAD LIBS --------------------------------------------------------------- | |
library(ape) | |
library(ggtree) | |
library(plotly) | |
# CREATE A TREE ------------------------------------------------------------- | |
n_samples <- 20 | |
n_grp <- 4 | |
tree <- ape::rtree(n = n_samples) |
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
#!/bin/bash | |
# Illustrating the use of job arrays in SLURM | |
# use the command: sbatch --array=1-100 job_array_demo.sh | |
# Partition for the job: | |
#SBATCH -p main | |
# Multithreaded (SMP) job: must run on one node | |
#SBATCH --nodes=1 |
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
Homebrew build logs for r on macOS 10.14 | |
Build date: 2018-07-21 20:36:57 |
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
[tool.poetry] | |
name = "bigsdbcli" | |
version = "0.1.0" | |
description = "A commandline interface to BIGSDB API" | |
license = "GPL-3.0" | |
readme = 'README.rst' | |
[tool.poetry.dependencies] | |
python = "3.7" |
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
GROUP | LOCUS1 | LOCUS2 | LOCUS3 | |
---|---|---|---|---|
A | 1 | 1 | 2 | |
A | 2 | 1 | 2 | |
B | 1 | 3 | 2 | |
B | 2 | 4 | 2 | |
B | 2 | 4 | 1 |