Skip to content

Commit c0e7baf

Browse files
authored
Merge pull request #79 from poseidon-framework/new_bib_API
Updated documentation for new trident release
2 parents d19182b + 4984a3c commit c0e7baf

File tree

6 files changed

+1227
-69
lines changed

6 files changed

+1227
-69
lines changed

genotype_data.md

+9-7
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,14 @@ Genotype data in Poseidon packages can be stored in either of two (multi)file fo
66

77
| | PLINK (binary) | EIGENSTRAT |
88
|---|---|---|
9-
| genotype file | [`.bed` (binary biallelic genotype table)](https://www.cog-genomics.org/plink/1.9/formats#bed) | [`.geno` (genotype file)](https://github.com/DReichLab/EIG/blob/fb4fb59065055d3622e0f97f0149588eae630a3e/CONVERTF/README#L67)
10-
| SNP file | [`.bim` (extended MAP file)](https://www.cog-genomics.org/plink/1.9/formats#bim) | [`.snp` (snp file)](https://github.com/DReichLab/EIG/blob/fb4fb59065055d3622e0f97f0149588eae630a3e/CONVERTF/README#L67) |
9+
| genotype file | [`.bed` (binary biallelic genotype table)](https://www.cog-genomics.org/plink/1.9/formats#bed) or `.bed.gz` | [`.geno` (genotype file)](https://github.com/DReichLab/EIG/blob/fb4fb59065055d3622e0f97f0149588eae630a3e/CONVERTF/README#L67) or `.geno.gz`
10+
| SNP file | [`.bim` (extended MAP file)](https://www.cog-genomics.org/plink/1.9/formats#bim) or `.bim.gz` | [`.snp` (snp file)](https://github.com/DReichLab/EIG/blob/fb4fb59065055d3622e0f97f0149588eae630a3e/CONVERTF/README#L67) or `.snp.gz` |
1111
| individual file | [`.fam` (sample information)](https://www.cog-genomics.org/plink/1.9/formats#fam) | [`.ind` (indiv file)](https://github.com/DReichLab/EIG/blob/fb4fb59065055d3622e0f97f0149588eae630a3e/CONVERTF/README#L67) |
1212

1313
The PLINK file format is a well specified, storage efficient data type compatible with many bioinformatic software tools, which made it an obvious choice for Poseidon. The EIGENSTRAT format is also common within archaeogenetics, compatible with many of the important tools developed by the Reich Lab, e.g. the ones in the [EIGENSOFT](https://github.com/DReichLab/EIG) and [ADMIXTOOLS](https://github.com/DReichLab/AdmixTools). In the future even more formats might be supported (see e.g. [here](https://reich.hms.harvard.edu/software/InputFileFormats)).
1414

15+
The large genotype data files to store SNP definitions and values can be stored in gzipped files (`*.gz`).
16+
1517
The `genotypeData` field in the `POSEIDON.yml` file documents in which format the data for a package is stored and the relative paths to the respective files.
1618

1719
<table>
@@ -25,8 +27,8 @@ The `genotypeData` field in the `POSEIDON.yml` file documents in which format th
2527
```
2628
genotypeData:
2729
format: PLINK
28-
genoFile: X.bed
29-
snpFile: X.bim
30+
genoFile: X.bed | X.bed.gz
31+
snpFile: X.bim | X.bim.gz
3032
indFile: X.fam
3133
snpSet: 1240K
3234
```
@@ -36,9 +38,9 @@ genotypeData:
3638
```
3739
genotypeData:
3840
format: EIGENSTRAT
39-
genoFile: X.geno
40-
snpFile: X.snp
41-
indFile: X.indiv
41+
genoFile: X.geno | X.geno.gz
42+
snpFile: X.snp | X.snp.gz
43+
indFile: X.ind
4244
snpSet: 1240K
4345
```
4446
</td>

pdf_conversion/pdf_conversion_list.tsv

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ trident_guide_archive/trident_guide_1.3.0.4.md trident_guide_archive/trident_gui
1212
trident_guide_archive/trident_guide_1.4.0.2_to_1.4.0.3.md trident_guide_archive/trident_guide_1.4.0.2_to_1.4.0.3.pdf
1313
trident_guide_archive/trident_guide_1.4.1.0_to_1.5.0.1.md trident_guide_archive/trident_guide_1.4.1.0_to_1.5.0.1.pdf
1414
trident_guide_archive/trident_guide_1.5.4.0.md trident_guide_archive/trident_guide_1.5.4.0.pdf
15+
trident_guide_archive/trident_guide_1.5.7.0_to_1.5.7.3.md trident_guide_archive/trident_guide_1.5.7.0_to_1.5.7.3.pdf
1516
xerxes_guide_archive/xerxes_guide_0.2.0.0.md xerxes_guide_archive/xerxes_guide_0.2.0.0.pdf
1617
xerxes_guide_archive/xerxes_guide_1.0.0.2.md xerxes_guide_archive/xerxes_guide_1.0.0.2.pdf
1718
janno_details.md janno_details.pdf

0 commit comments

Comments
 (0)