search for: unluckily

Displaying 20 results from an estimated 42 matches for "unluckily".

Did you mean: luckily
2010 Feb 02
2
finding files whose name does NOT contain a given character
Unluckily I dela with miRNA files whose name may contain the character "*". Because of the special meaning of "*" I have to remove it. I found out how to make list.files() extract only those file names which contain a "*" Namely: # list.files(pattern="\\*") Now I hav...
2009 Jul 01
3
is there a way to extract fata from web pages through some R function ?
I deal with a huge amount of Biology data stored in different databases. The databases belongig to Bioconductor organization can be accessed through Bioconductor packages. Unluckily some useful data is stored in databases like, for instance, miRDB, miRecords, etc ... which offer just an interactive HTML interface. See for instance http://mirdb.org/cgi-bin/search.cgi, http://mirecords.umn.edu/miRecords/interactions.php?species=Homo+sapiens&mirna_acc=Any&targetgene_ty...
2007 Jan 10
2
request tracker
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 The wiki page http://wiki.centos.org/RT_3.4.x_On_CentOS_4.x describes step by step how to install RT. Unluckily the install fails on step 4 because auf a missing dependency: Error: Missing Dependency: mod_perl >= 2.0.0 is needed by package rt Error: Missing Dependency: perl(Apache2::Log) is needed by package perl-Log-Dispatch Error: Missing Dependency: perl(DBD::Oracle) is needed by package perl-DBIx-Sea...
2016 Jun 24
4
Postfix and Dovecot LDA vs. LMTP
I'm new to Dovecot and will be using it with Postfix. I'm looking for recommendations regarding the use of Dovecot's LDA or LMTP for virtual mailbox delivery. Many of the simple examples on the wiki use LDA. So I've set that up initially. But apparently an advantage of LMTP is recipient verification. So, as I understand it, LMTP would let Postfix know whether or not the
2009 Mar 23
1
how to estimate multidimensional spectral measure of coherence
Please, does anyone know of an R packge to estimate multidimensional spectral measure of coherence within a moving time window ? Some time ago I expeimented with a similar package that performs Cross Spectrum Analysis on the whole signal though. Unluckily I deal with non-stationary signals whose properties change along with time. Therefore estimates can only be made over time periods roughly proportional to the reciprocal of the rate at which properties are changing. Thank you very much. Maura tutti i telefonini TIM! [[alternative HTML version...
2006 Sep 12
1
smbclient mget and compression
Hi, I'm using smbclient to replicate a samba share from one Linux machine to another one. Unluckily, the amount of data is quite large, thus I'd like to transfer it with a compression, but I didn't find such as asny option in smbclient. Is it possible? Thanks, Luca P.S. I cannot use, in this case, other tools like rsync, just only smb!
2020 Aug 25
2
smbclient mask command seems not to work the same way with recurse ON for mget and mput
...samba.org>) escribi?: > On Tue, 2020-08-25 at 00:49 +0200, LPC DPG via samba wrote: > > Dear Jeremy. > > > > Really appreciate you took your time to answer. I had already > > reviewed > > source4/client/client.c looking for mput (cmd_mput) command, but > > unluckily > > saying that my C programming skills are poor woud be really > > overrating them. > > To make things even more confusing, the code in source4/client/client.c > is not the code for the smbclient you are running. That one is for a > forked copy left over from the samba3/sa...
2016 Jun 25
3
Postfix and Dovecot LDA vs. LMTP
...s from experienced users of postfix with dovecot. > > Are > > you using Dovecot LDA or LMTP and why? > I have LMTP with dovecot running on Ubuntu 14.04 and Ubuntu 16.04. > > LDA is the worser solution, this is best explained in chapter LTMP in > Peers dovecot book, which is unluckily in german and more or less out of > print. > > But you can easily grasp the configuration details and reverse engineer > the technical german phrases ... > > > > > > > > > > Thanks much, > > > > Michael > > > > > > > >...
2020 Aug 24
2
smbclient mask command seems not to work the same way with recurse ON for mget and mput
Dear Jeremy. Really appreciate you took your time to answer. I had already reviewed source4/client/client.c looking for mput (cmd_mput) command, but unluckily saying that my C programming skills are poor woud be really overrating them. I'm sorry to disagree for two reasons 1-. It works for mget, true that the source code is completely different. 2-. If taking a look into smbclient man latest release: " mask <mask> This command allows...
2011 May 24
2
R as.numeric()
...her xlsx::read.xlsx2 or gdata::read.xls). Select a subset and then try to make it numeric: # read in the excel-file alldata<-read.xlsx2("input.xls",1) # select the subset s<-subset(alldata, select=c("cI","cII","cIII","cIV","cV")) # unluckily we have "n/a" for missing values in the file - so we turn it into "proper" missing values s[s == "n/a"]<-NA n<-data.matrix(s); The problem I have is that it does not convert the date the way I would expect. just as an example: > s[1,2] [1] 30.94346629...
2016 Jul 12
1
Re: IRC question about virt-builder ubuntu-* images
...ng since virt-builder will duplicate the template multiple times and each copy will share the same key. But luckily we also run virt-sysprep on the template after creating it which deletes those host keys: http://libguestfs.org/virt-sysprep.1.html#ssh-hostkeys That resolves the above problem. But unluckily the Debian openssh package doesn't automatically recreate host keys when it starts up, as Fedora does, see the several sshd*.{service,target} files here: http://pkgs.fedoraproject.org/cgit/rpms/openssh.git/tree/ I think this is a bug or missing functionality in the Debian openssh package. Ric...
2009 Sep 29
4
How can I avoid a for-loop through sapply or lapply ?
...AT[0-9]*") from here I get a vector of lists and I can separate the string I need through the [[]] operator, as shown in the following. > strsplit(nml,"MIMAT[0-9]*")[[1]][1] [1] "hsa-let-7a " > strsplit(nml,"MIMAT[0-9]*")[[2]][1] [1] "hsa-let-7b " Unluckily the [[]] operator acts on one vector element at a time. In fact: > strsplit(nml,"MIMAT[0-9]*")[[]][1] Error in strsplit(nml, "MIMAT[0-9]*")[[]] : invalid subscript type 'symbol' I guess a smart combination os strsplit ans sapply or lapply could do the job with one...
2020 Aug 25
1
smbclient mask command seems not to work the same way with recurse ON for mget and mput
...5 at 00:49 +0200, LPC DPG via samba wrote: >>> > Dear Jeremy. >>> > >>> > Really appreciate you took your time to answer. I had already >>> > reviewed >>> > source4/client/client.c looking for mput (cmd_mput) command, but >>> > unluckily >>> > saying that my C programming skills are poor woud be really >>> > overrating them. >>> >>> To make things even more confusing, the code in source4/client/client.c >>> is not the code for the smbclient you are running. That one is for a >&...
2008 Jul 03
13
[PATCH] Handle MSI irq storm
<<handle_msi_irq_storm.patch>> Hi, Keir, This patch handles MSI irq storm. Unluckily, I have observed this phenomenon again. This will happen when some kind of MSI-X capable NIC is assigned to an HVM guest. The basic idea is to mask the interrupt on receiving the second interrupt and set a timer to unmask after 1ms. Can you have a look and give some comments on that? Thanks! Best...
2016 Jun 24
2
Postfix and Dovecot LDA vs. LMTP
...s from experienced users of postfix with dovecot. > > Are > > you using Dovecot LDA or LMTP and why? > I have LMTP with dovecot running on Ubuntu 14.04 and Ubuntu 16.04. > > LDA is the worser solution, this is best explained in chapter LTMP in > Peers dovecot book, which is unluckily in german and more or less out of > print. > > But you can easily grasp the configuration details and reverse engineer > the technical german phrases ... > > > > > > > > > > Thanks much, > > > > Michael > > > > > > > >...
2020 Aug 25
0
smbclient mask command seems not to work the same way with recurse ON for mget and mput
...t;> On Tue, 2020-08-25 at 00:49 +0200, LPC DPG via samba wrote: >> > Dear Jeremy. >> > >> > Really appreciate you took your time to answer. I had already >> > reviewed >> > source4/client/client.c looking for mput (cmd_mput) command, but >> > unluckily >> > saying that my C programming skills are poor woud be really >> > overrating them. >> >> To make things even more confusing, the code in source4/client/client.c >> is not the code for the smbclient you are running. That one is for a >> forked copy left...
2009 Jun 10
0
help with package "simsalabim"
...01 1.627475 The above print-out marks EOF_1 and EOF_12 as capturing all the trend in the signal. I canNOT understand the difference between "smoothness" and "explainedVariance" I tried to compare such values with the leading frequency associated with EOF_1 and EOF_12. Unluckily, I am unable to draw any comclusion: > Amps.dc$freq[1] #EOF_1 LEADING FREQUENCY [1] 0.0007225434 > Amps.dc$freq[12] #EOF_12 LEADING FREQUENCY [1] 0.002890173 "getSignal" on-line documentation states about Trend "smoothness": The proportion of variance explaine...
2010 Mar 01
0
Is package "dr" appropriate for reducing the dimensionality of molecules conformational space ?
...ould perform a dimensionality reduction first (experimenting with some common non-linear methods) and then perform regressionto estimate the correlation (dependence) of the survived variables with the work curves. Then i came across R package "dr" which apparently does it all in one step. Unluckily the examples that come with dr documentation are far away from the research field I am involved in. I know dimensionality reduction methods apply to many different fields. I wonder whether dr can help me with finding a reduced representation of molecule conformational changes. Data samples are avai...
2009 Sep 21
0
Memdisk in Release 3.82 conflicts with a IntelBIOSupdate Image
Thank you Shao I have no Linux env to compile the newest snapshot to C32 format. Instead, I downloaded the 3.83pre11 from http://www.kernel.org/pub/linux/utils/boot/syslinux/Testing/syslinux-3.83-pr e11.zip and replaced the files on my PXE server. Unluckily, it didn't work. I suspect it is not due to memdisk. I tried to use a combination of pxelinux.0(in 3.73) and memdisk(in 3.82), it did work! I think the pxelinux. 0 in 3.82 allocate different or more address in RAM, comparing with the one in 3.73, which conflicts with RAM access of Intel BIOS u...
2010 May 28
0
NWDS
Hi all, I'm a newby in linux environment and I'm trying to find a way of making SAP Netweaver Developer Studio working on my notebook. NWDS is an IDE based on Eclipse. Unluckily SAP decided to include in its plugins some activeX making this tool unaccessible for linux users. Could anyone help me in this challenge? Thanks Skabuby