Correct errors in output and documentation

This commit is contained in:
2022-02-20 20:13:38 -06:00
parent 410f0ae547
commit 7558455f39
3 changed files with 10 additions and 11 deletions

View File

@@ -94,7 +94,7 @@ Options when making a Cell Sample file:
Files are in CSV format. Rows are distinct T cells, columns are sequences within the cells.
Comments are preceded by `#`
Structure:
Structure example:
---
# Sample contains 1 unique CDR1 for every 4 unique CDR3s.
@@ -136,20 +136,20 @@ Every column represents an individual cell, containing four sequences, represent
Notice that the Alpha CDR1 is missing in the cell above, due to sequence dropout.
Dropouts are represented by replacing sequences with the value `-1`. Comments are preceded by `#`
Structure:
Structure Example:
---
```
# Cell source file name:
# Each row represents one well on the plate
# Plate size:
# Concentrations:
# Lambda:
# Cell source file name: 4MilCells.csv
# Plate size: 96
# Error rate: 0.1
# Concentrations: 10000 5000 500
# Lambda: 0.6
```
| Well 1, cell 1 | Well 1, cell 2 | Well 1, cell 3| ... |
| well 1 | well 2 | well 3| ... |
|---|---|---|---|
| **Well 2, cell 1** | **Well 2, cell 2** | **Well 2, cell 3**| ... |
| **Well 3, cell 1** | **Well 3, cell 2** | **Well 3, cell 3**| ... |
| [105383, 786528, 959247, 925928] | [525902, 791533, -1, 866282] | [409236, 132303, 804465, 942261]| ... |
| [249930, 301502, 970003, 881099] | [523787, 552952, 997194, 970507]| [425363, 417411, 845399, -1]| ... |
| ... | ... | ... | ... |
---