Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/audy/hiseq-16s-pipeline
Process Illumina 16S amplicons on the really big computer at the University of Florida
https://github.com/audy/hiseq-16s-pipeline
Last synced: 20 days ago
JSON representation
Process Illumina 16S amplicons on the really big computer at the University of Florida
- Host: GitHub
- URL: https://github.com/audy/hiseq-16s-pipeline
- Owner: audy
- Created: 2013-11-04T18:49:22.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-09-08T12:39:52.000Z (about 9 years ago)
- Last Synced: 2024-10-28T04:46:27.820Z (23 days ago)
- Language: Python
- Homepage:
- Size: 1.49 MB
- Stars: 2
- Watchers: 2
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# HPC OTU Pipeline
## Requirements
1. Python 2.7
2. BioPython `pip install bio`
3. USEARCH
4. Torque SGE Cluster## Methods
In a nutshell...
```bash
demultiplex \
| trim \
| reverse complement right read \
| convert to fasta format \
| break sequences into chunks \
| query reads against GreenGenes using USEARCH (map) \
| combine uc files into a single CSV file (reduce)
```- All of the above steps except for the last are streamed using UNIX pipes.
- Query jobs are distributed automatically by the SGE cluster.
- Checks are in place to ensure jobs completed successfully.
- There are scripts to automatically retry failed jobs.## Usage
All scripts located in `bin/`. Move to `$PATH` if you so desire.
For example, put this in your `~/.bashrc`:
```sh
export PATH="/path/to/hiseq-16s-pipeline/bin:$PATH"
```1. `hp-label-by-barcode`
2. `hp-split-for-array`
3. (trimming/converting to FASTA)
4. `hp-split-for-array`
5. `qsub ... misc/usearch_array.qsub`## License
The MIT License (MIT)
Copyright (c) 2013-2015 Austin G. Davis-Richardson
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.