-
Notifications
You must be signed in to change notification settings - Fork 265
Conversation
Implements Low-Error Amplicon Sequencing (LEA-Seq) method, described in: Faith, Jeremiah J., et al. "The long-term stability of the human gut microbiota." Science 341.6141 (2013).
Implements Low-Error Amplicon Sequencing (LEA-Seq) method, described in: Faith, Jeremiah J., et al. "The long-term stability of the human gut microbiota." Science 341.6141 (2013).
Build results will soon be (or already are) available at: http://ci.qiime.org/job/qiime-github-pr/824/ |
@ElBrogrammer just so you are aware this is in, take a quick look at it if you have some time this week |
#!/usr/bin/env python | ||
from __future__ import division | ||
|
||
__author__ = "Jai Ram Rideout" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can change the author to yourself since you wrote most of this.
log_out: string | ||
to be printed in log file | ||
""" | ||
log_out = "Quality filter results\nTotal number of input sequences: {}\nBarcode not in mapping file: {}\nSequence shorter than threshold: {}\nBarcode errors exceeds limit: {}\nPrimer mismatch count: {}\n\nTotal number seqs written: {}".format(input_seqs_count, barcode_not_in_map_count, seq_too_short_count, barcode_errors_exceed_max_count, primer_mismatch_count, total_seqs_kept) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Trim down to 79 characters
Few more comments. @charudatta-navare I recomend to run |
Thanks @josenavas! @charudatta-navare if you can take care of the issues pointed by Jose, we should be close to wrapping this up. |
@josenavas @cleme @jairideout |
Build results will soon be (or already are) available at: http://ci.qiime.org/job/qiime-github-pr/1212/ |
Looks like the checks are failing due to a different issue (pip can't proceed with requirement 'pynast==1.2.2 (from qiime==1.8.0-dev)' due to a pre-existing build directory.) The tests are passing on my machine, so I think when the problem with pynast installation is solved, the tests should pass. |
I am not exactly sure why you are getting that error, I think I read somewhere running pip with --force-reinstall on the install requirements fixes this, but not sure. @jairideout @gregcaporaso @josenavas any suggestions on this? |
The error comes in automated testing of the build on Jenkins. The tests fail after running for just over a minute. |
Retest this please |
Sometimes re-testing works |
Build results will soon be (or already are) available at: http://ci.qiime.org/job/qiime-github-pr/1214/ |
retest this please |
Build results will soon be (or already are) available at: http://ci.qiime.org/job/qiime-github-pr/1216/ |
@charudatta-navare I don't see any issues with this. However, before merging, can you pull form upstream and push again? Now that #1700 has been merged, I'm not completely sure if all your |
Build results will soon be (or already are) available at: http://ci.qiime.org/job/qiime-github-pr/1241/ |
Build results will soon be (or already are) available at: http://ci.qiime.org/job/qiime-github-pr/1242/ |
Thanks for pointing that out, @josenavas! It needed a few changes in skbio imports, but that tests are passing now. |
Great! Thanks for the hard work @charudatta-navare |
Implements Low-Error Amplicon Sequencing (LEA-Seq) method, described in: Faith, Jeremiah J., et al. "The long-term stability of the human gut microbiota." Science 341.6141 (2013).
I need to add a couple of functions in split_libraries_lea_seq.py, and I need to add unit tests. I will add those soon.