├── .Rhistory ├── .gitignore ├── bin ├── count-taxonomies ├── label-by-barcode └── summarize-output ├── data ├── golay-barcodes.csv └── triplett-barcodes.csv ├── license.md ├── pipeline.sh ├── prepare.sh ├── readme.md ├── requirements.txt ├── test ├── data │ ├── reads_I1.fastq │ ├── reads_R1.fastq │ └── reads_R2.fastq ├── run.sh └── setup_hpc.sh └── tutorial.md /.Rhistory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | log.txt.bz2 2 | .DS_Store 3 | test-out/ 4 | -------------------------------------------------------------------------------- /bin/count-taxonomies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audy/miseq-16S-pipeline/HEAD/bin/count-taxonomies -------------------------------------------------------------------------------- /bin/label-by-barcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audy/miseq-16S-pipeline/HEAD/bin/label-by-barcode -------------------------------------------------------------------------------- /bin/summarize-output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audy/miseq-16S-pipeline/HEAD/bin/summarize-output -------------------------------------------------------------------------------- /data/golay-barcodes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audy/miseq-16S-pipeline/HEAD/data/golay-barcodes.csv -------------------------------------------------------------------------------- /data/triplett-barcodes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audy/miseq-16S-pipeline/HEAD/data/triplett-barcodes.csv -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audy/miseq-16S-pipeline/HEAD/license.md -------------------------------------------------------------------------------- /pipeline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audy/miseq-16S-pipeline/HEAD/pipeline.sh -------------------------------------------------------------------------------- /prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audy/miseq-16S-pipeline/HEAD/prepare.sh -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audy/miseq-16S-pipeline/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audy/miseq-16S-pipeline/HEAD/requirements.txt -------------------------------------------------------------------------------- /test/data/reads_I1.fastq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audy/miseq-16S-pipeline/HEAD/test/data/reads_I1.fastq -------------------------------------------------------------------------------- /test/data/reads_R1.fastq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audy/miseq-16S-pipeline/HEAD/test/data/reads_R1.fastq -------------------------------------------------------------------------------- /test/data/reads_R2.fastq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audy/miseq-16S-pipeline/HEAD/test/data/reads_R2.fastq -------------------------------------------------------------------------------- /test/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audy/miseq-16S-pipeline/HEAD/test/run.sh -------------------------------------------------------------------------------- /test/setup_hpc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audy/miseq-16S-pipeline/HEAD/test/setup_hpc.sh -------------------------------------------------------------------------------- /tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audy/miseq-16S-pipeline/HEAD/tutorial.md --------------------------------------------------------------------------------