search for: microb

Displaying 9 results from an estimated 9 matches for "microb".

Did you mean: micro
2015 Jul 26
1
Get term from document by position
...? Here is the example (see attachment). This example does the following: 1)First, it indexes text from the "text.txt" file (see attachment) (actually, this is the text of the following book: "Abbas, Lichtman. Basic immunology"). 2)Next, it searches for the "extracellular microbe" string and generates snippet. Xapian::Snipper generates the following snippet: "? ? 1 I * I I Andre , Lichtma SECOND EDITION B Q ? If1 Immun logy Functions and Disorders of the Immune System NOT FOR SALE C1q ? lymph...
2011 Jan 05
2
Simulation - Natrual Selection
Hi, I've been modelling some data over the past few days, of my work, repeatedly challenging microbes to a certain concentration of cleaner, until the required concentration to inhibit or kill them increaces, at which point they are challenged to a slightly higher concentration each day. I'm doing ths for two different cleaners and I'm collecting the required concentration to kill the...
2011 Jan 05
0
Fwd: Re: Simulation - Natrual Selection
...thspa.org >>>> To: r-help@r-project.org >>>> Subject: [R] Simulation - Natrual Selection >>>> >>>> Hi, >>>> >>>> I've been modelling some data over the past few days, of my work, >>>> repeatedly challenging microbes to a certain concentration of cleaner, >>>> until the required concentration to inhibit or kill them increaces, at >>>> which point they are challenged to a slightly higher concentration each >>>> day. I'm doing ths for two different cleaners and I'm...
2012 Oct 16
5
CentOS 6.3 on Dell Poweredge R815
Hi, Any folks on this list who have installed CentOS 6.3 on the new Dell Poweredge R815 servers? How was your experience? Thanks -Surya -- Surya Saha Department of Plant Pathology and Plant-Microbe Biology Cornell University, NY, USA http://www.linkedin.com/in/suryasaha
2003 Oct 27
1
Bioassays Yielding concentration-Mortality data
Dear all, I'm trying reproduce an example of bioassays Yielding Concentration-Mortality Data particularly control - adjustment model from book Bioassay of Entomopathogenic Microbes and Nematodes chapter 7 with R. I used glm with family=binomial and link=probit, but I do not know how to implement parameter gamma (control mortality - mortality of the untreated control insect in this exaple) into model formula. Model in book: pi(x)=gamma+(1-gamma)F(alpha+beta log(x)) F....c...
2009 Dec 24
1
Multiple CHOLMOD errors when attempting poisson glmm
...son glmm using lme4 for some time now and have had a lot of trouble. I would say 9 times out of 10 I receive the following warning: CHOLMOD warning: %h Error in mer_finalize(ans) : Cholmod error `not positive definite' at file:../Cholesky/t_cholmod_rowfac.c, line 432 My data are counts of microbe colony forming units (CFUs) collected from termite cuticles and the surrounding environment over a 3 year period. I am attempting to analyze the effect of several factors on these counts (termite nest volume, temperature, humidity, light, incubation temperature, habitat, year, sample location, et...
2012 Oct 18
1
Temperature on Poweredge 2850
I am trying to get the temperature of a Poweredge 2850 with CentOS 6.3 on it. Has anybody on this list done this successfully? Thanks -Surya PS: Apologies for cross posting if you are on the Poweredge list. -- Surya Saha Department of Plant Pathology and Plant-Microbe Biology Cornell University, NY, USA http://www.linkedin.com/in/suryasaha
2011 Jan 04
1
Resampling to find Confidence intervals
Hi, I'm doing some modelling (lm) for my 3rd year dissertation and I want to do some resampling, especially as I'm working with microbes, getting them to evolve resistance to antimicrobial compounds, and after each exposure I'm measuring the minimum concentration required to kill them (which I'm expecting to rise over time, or exposures), I have 5 lineages per cleaner, and I'm using 2 cleaners(of different chemical...
2015 Jul 26
1
Get term from document by position
...include <iostream> #include <string> #include <cstdlib> // For exit(). #include <cstring> #include <fstream> class MyText { public: std::string text_str; void set_string(); }; std::string database_dir="db_dir"; std::string query_string="extracellular microbe"; int main(int argc, char **argv) { // indexing Xapian::WritableDatabase db_w(database_dir, Xapian::DB_CREATE_OR_OVERWRITE); MyText text_to_index; text_to_index.set_string(); Xapian::TermGenerator indexer; Xapian::Stem stemmer("english"); indexer.set_stemm...