search for: extracellular

Displaying 5 results from an estimated 5 matches for "extracellular".

2015 Jul 26
1
Get term from document by position
...search string? 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...
2013 Feb 13
1
An extended Hodgkin-Huxley model that doesn't want to work.
...70)/6); # taumh htaum <- function(v) 272+(1499/(1+exp(-(v+42.2)/8.73))); Kminf <- function(v) 1/(1+exp(-(v+14.2)/11.8)); Ktaum <- function(v) 7.2-(6.4/(1+exp(-(v+28.3)/19.2))); # Reversal potential of intracellular calcium concentration # Nernst Equation using extracellular concentration of Ca = 13mM # eca ECa <- function(Ca2) 12.2396*log(13000/(Ca2)); #ECa <- function(CaI) 12.2396*log(13000/(CaI)); #Sum of all the Ca # function(v) CaTminf(v) + CaSminf(v); CaI <- gCaT*CaTm^3*CaTh*(v-ECa(CaI)) + gCaS*CaSm^3*(v-ECa(CaI)) #AB #...
2015 Jul 26
1
Get term from document by position
...apian.h> #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.se...
2010 May 11
1
comparing and combing files
...deaminases zinc-binding,Antigen peptide transporter 2,AAA+ ATPases core,ABC transporters transmembrane region,ABC transporters ABCB2,ABC transporters transmembrane regions type 1 ATP-BINDING CASSETTE TRANSPORTER,ABC TRANSPORTER TAP1 Biological process unclassified,Immunity and defense,Transport Extracellular transport and import
2009 Jul 09
2
How to Populate List
Hi, I'm new to R and would like to know, how one can populate the list with array data. I'm reading a tab separated table in R. The data in the table looks something like this. #Table Data Comp    A    B    C Extracellular    103    268    535759 Nucleus    45603    47783    442744 #R code myData <- read.table("table.data",                 header=T,                 sep="\t",                 comment.char = "#"                 ); inp <- scan("table.data", what=list(comp=&q...