search for: mol

Displaying 20 results from an estimated 94 matches for "mol".

Did you mean: movl
2013 Mar 05
0
Samba 4, dynamic DNS, Kerberos
...ection) ... tkey-gssapi-keytab "/var/lib/samba/private/dns.keytab"; }; include "/etc/bind/samba.conf"; /* hardlink to /var/lib/samba/private/named.conf */ Server's smb.conf: # Global parameters [global] workgroup = FIREFLY realm = FIREFLY.MICHAEL.MOL.NAME netbios name = KAYLEE server role = active directory domain controller server services = s3fs, rpc, nbt, wrepl, ldap, cldap, kdc, drepl, winbind, ntp_signd, kcc, dnsupdate # Force auth toward NTLM2 lanman auth = no # Re-enabled NTLMv1, as Debian...
2003 Sep 05
3
Dotchart question
...al practictioner', 'Graduate student', 'High level manager', 'Low level manager', 'Mechanical engineer', 'Mechanic', 'Minister/priest/rabbi', 'Nurse', 'Professor', 'Sales clerk', 'Server', 'Taxi driver') mol <- c(34, 29, 27, 36, 20, 40, 35, 32, 30, 31, 30, 32, 37, 37, 27, 28, 36) dotchart(mol, labels = prof, main = 'Dot chart', xlab = 'Meaning of life score') I get a dot chart sorted by the values of prof; what I'd like is one sorted by values of mol. I looked at the help file...
2013 May 03
0
Multiple DNS update issues in samba4
...oo. samba 4.0.3 saffron -- client. Gentoo. Samba 3.6.12 wash -- client (Also network router). Debian. Samba 3.5.6 I'm using bind_dlz as a backend, for the record. I've joined saffron to the domain successfully, and the record shows up in DNS. $ samba-tool dns query kaylee firefly.michael.mol.name saffron all Name=, Records=1, Children=0 A: 192.168.83.146 (flags=f0, serial=3, ttl=3600) I *think* I've joined wash to the domain successfully: # net ads join -U Administrator -S kaylee Enter Administrator's password: Using short domain name -- FIREFLY Joined 'WASH' to...
2010 Jul 13
2
Want to exclude a column when using sample function
For example: When I take a sample of 5 from 10 columns, I want to exclude from the sample column 1 from being chosen. How do I do this? -- View this message in context: http://r.789695.n4.nabble.com/Want-to-exclude-a-column-when-using-sample-function-tp2287988p2287988.html Sent from the R help mailing list archive at Nabble.com.
2012 Nov 26
1
A problem subsetting a data frame
Hi all, I have this microarray large microarray data set (ALL) from which I would like to subset or extract a set of data based on a factor ($mol.biol). I looked up some example of subsetting in, picked up two commands and tried both but I got error messages as follows > testset <- subset(ALL, ALL$mol.biol %in% c("BCR/ABL","ALL1/AF4")) >> Error in c("BCR/ABL", "ALL1/AF4") : unused a...
2006 Dec 20
3
How to use strings from a data.frame as the argument of an expression() for plot
Greetings, I would like to use a data.frame with strings to feed the expression() in the title of a plot. The way I did this is: molecules <-data.frame(name=c("o3","no","no2"),expression=c("quote(O[3])","quote(NO)","quote(NO[2])")) for (mol in c(5,7,9)) { plot(x, y, type="b", main=eval(substitute(expression(paste(mol," Year 2005")), list(mol=e...
2008 Jul 09
3
Expression in axis
Hello, I am creating a plot and I would like to know how to put this expression to the y axis ?mol/10^6 cells I've tried some combinations using the expression() function, but none of them worked. Any idea? Best, Dani -- Daniel Valverde Saub? Grup de Biologia Molecular de Llevats Facultat de Veterin?ria de la Universitat Aut?noma de Barcelona Edifici V, Campus UAB 08193 Cerdanyola del...
2006 Jan 30
8
Translating a validtion flash
I''m a belgian Rails user (Dutch is my native language). I wondered if it is possible to translate error messages (generated by validators). I know how to create my own error messages: def method content rescue logger.error(...) flash[:notice] = ''My own error message" redirect_to(...) But where can I find the validator''s .rb files, so I can change them?
2011 Oct 27
2
help with paste
Hello gurus, I have some variables, and i am creating combinations for analysis in the end i need these variables to be displayed like "LEPTIN+SAA+PTH". currently i am using loop to perform this. I would appreciate any pointers to do it without the loop. > mols=c("LEPTIN","SAA","PTH","sEGFR") > samples=mols[1:3] > samples [1] "LEPTIN" "SAA" "PTH" > names1=samples[1] > for (j in 2:length(samples)){ names1 = paste (names1, samples[j], > sep="+")} > name...
2013 Feb 23
0
NXDOMAIN dual-stacked, Samba4/Samba 3 AD setup
...DNS management in a dual-stacked environment!) Here's a basic overview of my network so far: Kaylee: * Gentoo. * Running Samba 4.0.3. ** AD Domain controller. * One NIC ** One IPv4 address ** One IPv6 address * Resolv.conf: # Generated by net-scripts for interface eth0 domain firefly.michael.mol.name nameserver (kaylee's IPv4 address) nameserver 8.8.8.8 Wash: * Debian * Network router * Running Samba 3.5.6~dfsg-3squeeze9 ** Domain member * Running bind9 9.7.3.dfsg-1~squeeze8 ** Forwards home zone to Kaylee ** Forwards another domain's zone to relevant server on another network * T...
2011 Nov 07
2
help with formula for clogit
...x6=rnorm(20)+5, x7=rnorm(20)+5, x8=rnorm(20)+5, group=rep(c(1,2),10), Age=rnorm(20)+35,strata=c(rep(1,10), rep(2,10))) nam=names(d)[1:9] results <- c("Protein", "OR", "p-val") pc3=combinations(n=length(nam),r=2) for (len in 1:dim(pc3)[2]) { prs=pc3[len,] mols=nam[prs] d2=d[,c(mols,'group','Age','strata')] log.reg<-clogit(group~.,data=d2) a = summary(log.reg)$conf.int z= summary(log.reg)$coefficients[1,4] #ncol in coefficients is 3 * number of parameters pval = 2*pnorm(-abs(z)) res2 = c(paste('IL8+',molec...
2006 Feb 05
8
Agile Rails book: depot problem 2
My second problem is: Listing users, and deleting them doesn''t work. If I try to list user, i just get this list: User Delete User Delete User Delete User Delete I''m using this code in the login_controller: def list_users @all_users = User.find(:all) end def delete_user @id = params[:id] if id && user = User.find(id) begin User.destroy
2009 Oct 19
1
How do I wrap a long mixed text/math expression in an axis label?
...ese methods on my label, the exact string is returned, rather than evaluating the math symbols. My starting point: x<-c(1:10) y<-seq(5,50,5) par(mar=c(6,6,6,1),cex.lab=1.3,cex.axis=1.2) plot(x,y, xlab=NA, ylab=expression(paste("Saturating Irradiance, ",E[k],", ",mu,"mol photons ", m^-1," ", s^-1))) An unsuccessful example: plot(x,y, xlab=NA, ylab=strwrap(expression(paste("Saturating Irradiance, ",E[k],", ",mu,"mol photons ", m^-1," ", s^-1)), width=26)) I've tried so many iterations that I have thorough...
2002 Jun 20
16
problem with predict()
...em with using predict(). I train the model using 164 cases and then I try to use it on the data set with 35 cases, but I am getting 164 predictions ? R-code below illustrates in more detail what I am doing. Truly yours, R train = read.csv("train.csv", header = TRUE, row.names = "mol", comment.char="") yr <- train[,1] # take Y from 1 column xr <- train[,-1] # X is the rest xr <- scale(xr) # matrix <- scale(data.frame) x.center <- attr(xr, "scaled:center") x.scale <- attr(xr, "scaled:scale") mask <-...
2013 Jun 26
1
[PATCH] pygrub: add fedora 19 grub.cfg example
This grub.cfg from a default fedora 19 Beta install caused pygrub failures.The previous pygrub commit fixed taht. So this example file added for reference. Signed-off-by: Marcel Mol <marcel@mesa.nl> --- tools/pygrub/examples/fedora-19.grub2 | 117 +++++++++++++++++++++++++++++++++ 1 files changed, 117 insertions(+), 0 deletions(-) create mode 100644 tools/pygrub/examples/fedora-19.grub2 diff --git a/tools/pygrub/examples/fedora-19.grub2 b/tools/pygrub/examples/fedora...
2006 Feb 27
4
Belgian Ruby on Rails Site
...Is de content goed? Zijn de artikelen over de installatie te uitgebreid, te eenvoudig, te saai? Zijn de nieuwsberichten interessant? Ik vraag me af of er interesse is voor een Nederlandstalige Rails site... Alle opmerkingen en suggesties zijn welkom... Met vriendelijke groeten, Johan Van Mol http://www.onrails.be -- Posted via http://www.ruby-forum.com/.
2012 Sep 14
0
rcdk package, fingerprint without name?
Hi! I have a question concerning the rcdk package: I generated a test sdf-file with 3 molecules in it and tried to perform clustering by fingerprints and plot the results in a dendogramm. This is what I did: mols <- load.molecules ("molecules.sdf") fp.list <- lapply (mols, get.fingerprint, 'maccs') fp.dist <- fp.sim.matrix (fp.list, method='tanimoto'...
2015 Jul 16
4
Backups solution from WinDoze to linux
On Wed, July 15, 2015 7:05 pm, Michael Mol wrote: > On Tue, Jul 14, 2015, 10:37 AM <m.roth at 5-cent.us> wrote: > > My manager just tasked me at looking at this, for one team we're > supporting. Now, he'd been thinking of bacula, but I see their Windows > binaries are now not-free, so I'm looking around. I...
2006 Feb 05
8
Agile Rails book: depot problem
I recently finished the first part of the "Agile Rails" book. But, the depot doesn''t completely work as it should. I still have 2 problems: I will explain them in 2 threads. The first one is: I can''t destroy products (I can only creat and update them). When I try to delete a product --> http://localhost:3001/admin/destroy/3 I get this error message:
2011 Oct 27
2
help with parallel processing code
...S) library(ROCR) library(verification) library(caret) library(gregmisc) ##simulated data d=replicate(9, rnorm(40)+10) colnames(d)<-c("LEPTIN","SAA","PTH","sEGFR","IGFBP6","MMP2","OPG","IGFBP3","PDGFAABB") mols=c("LEPTIN","SAA","PTH","sEGFR","IGFBP6","MMP2","OPG","IGFBP3","PDGFAABB") ####Name of the results output file1="AUCvalues_3plex.csv" temp1=c('protein comb', 'AUC') pdf('R...