generated from bokulich-lab/q2-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 14
SampleData[MAGs]
Santiago Castro Dau edited this page Apr 23, 2024
·
4 revisions
SampleData[MAGs]
represents artifacts containing MAGs, organized by sample in folders. Individual MAGs are DNAFASTAFormat
files. The MANIFEST is a table specifying the relationship MAGs and samples.
class MultiMAGSequencesDirFmt(MultiFASTADirectoryFormat):
sequences = model.FileCollection(r'.+\.(fa|fasta)$', format=DNAFASTAFormat)
manifest = model.File('MANIFEST', format=MultiMAGManifestFormat)
data
├── MANIFEST
├── <sample_id>
│ ├── <mag_id>.fasta
│ ⋮
│ └── <mag_id>.fasta
⋮
└── <sample_id>
├── <mag_id>.fasta
⋮
└── <mag_id>.fasta
- See Generate MAGs from reads tutorial for a full example.
- Below we list actions in
q2-moshpit
that have this semantic type as output or input.