Displaying 20 results from an estimated 22 matches for "featurenames".
Did you mean:
featurename
2012 Oct 18
2
Different return codes on exec during puppet agent run vs command line Windows
Trying to run this exec in one of our manifests. When the resource is run
during a puppet run, it returns a error code 87. But when I execute the
same command on command prompt, it returns 3010. Is there any way to dig
and and find out why the return codes are different. FYI, I am using the
sysnative path to avoid the file system redirection on windows.
Platform: Windows 2008R2 64 bit
2006 Oct 11
1
Possible bug in accessing methods documentation?
...ase is not installed
source("http://bioconductor.org/biocLite.R")
biocLite("Biobase")
> library("Biobase")
> data(sample.ExpressionSet)
> class(sample.ExpressionSet)
[1] "ExpressionSet"
attr(,"package")
[1] "Biobase"
> z <- featureNames(sample.ExpressionSet)
> z[1:2]
[1] "AFFX-MurIL2_at" "AFFX-MurIL10_at"
> ?featureNames(sample.ExpressionSet)
Warning message:
no method defined for function 'featureNames' and signature 'object = "missing"' in: .helpForCall(e1Expr, parent.frame())...
2006 Oct 11
1
Possible bug in accessing methods documentation? (PR#9291)
...bioconductor.org/biocLite.R")
> biocLite("Biobase")
>
>> library("Biobase")
>> data(sample.ExpressionSet)
>> class(sample.ExpressionSet)
> [1] "ExpressionSet"
> attr(,"package")
> [1] "Biobase"
>> z <- featureNames(sample.ExpressionSet)
>> z[1:2]
> [1] "AFFX-MurIL2_at" "AFFX-MurIL10_at"
>> ?featureNames(sample.ExpressionSet)
> Warning message:
> no method defined for function 'featureNames' and signature 'object = "missing"' in: .helpForCall(...
2006 Oct 12
1
getMethods() not finding all methods
...help(Biobase)'. For details
on reading vignettes, see the openVignette help page.
Loading required package: affyio
> getMethods("geneNames")
An object of class ?MethodsList?
Slot "methods":
$ExpressionSet
Method Definition:
function (object)
{
.Deprecated("featureNames")
featureNames(object)
}
<environment: namespace:Biobase>
Signatures:
object
target "ExpressionSet"
defined "ExpressionSet"
$exprSet
Method Definition:
function (object)
featureNames(object)
<environment: namespace:Biobase>
Signatures:...
2013 May 06
0
How are feature weights extracted from 'superpc' analysis?
...s below:
library(superpc)
set.seed(332)
#generate some data
x<-matrix(rnorm(1000*40),ncol=40)
y<-10+svd(x[1:60,])$v[,1]+ .1*rnorm(40)
ytest<-10+svd(x[1:60,])$v[,1]+ .1*rnorm(40)
censoring.status<- sample(c(rep(1,30),rep(0,10)))
censoring.status.test<- sample(c(rep(1,30),rep(0,10)))
featurenames <- paste("feature",as.character(1:1000),sep="")
data<-list(x=x,y=y, censoring.status=censoring.status,
featurenames=featurenames)
data.test<-list(x=x,y=ytest, censoring.status=censoring.status.test,
featurenames= featurenames)
a<- superpc.train(data, type="sur...
2013 Mar 06
22
Windows Remote Desktop Services (Could not find a suitable provider for dism)
Hello all
Was wondering if someone could help or advise where i''m going wrong
i''m trying to install Windows 2008 R2 Remote Desktop Services via Puppet
using either DISM or Powershell modules from the forge and getting the same
error
When using DISM
class roles::trm::remote_desktop_services {
dism { ''AppServer'':
ensure => present,
}
dism {
2018 May 29
4
Can't join Windows 10 to classic domain
I've been running Samba 4 in NT4 Domain mode for a few years, and
it's been working fine with Windows 7 PCs.
I now need to join a new Windows 10 PC to the domain, but I'm not
having any success!
When I try to join the domain, the Windows 10 PC says "An Active
Directory Domain Controller could not be contacted...."
I've tried a few things, including:-
Setting
2018 Jan 05
3
Adding a Windows Server 2008 as a DC to the domain fails
Hi,
I have a samba domain based on Samba version 4.7.4 compiled from sources
running on Debian Stretch v 9.3. The domain is working fine, but when I try to
add another DC (a Windows Server 2008 Standard Edition) using the Wiki at
https://wiki.samba.org/index.php/Joining_a_Windows_Server_2008_/_2008_R2_DC_to_a
_Samba_AD it fails with the error:
"The operation failed because:
The functional
2011 Jun 28
1
help required for GO Annotation problem
...nerating the Figure 3, for GO annotations the following command is not working:
> ll <- mget(geneNames(esetSel),hgu95av2LOCUSID)
#it is displaying error messages Error in mget(geneNames(esetSel), hgu95av2LOCUSID) : object 'hgu95av2LOCUSID' not foundand also geneNames not found try featureNames instead
Hence I cant proceed to the next set of commands provided in the paper which are as follows:
> ll <- unique(unlist(ll))> mf <- as.data.frame(GOHyperG(ll))[, 1:3]> mf <- mf[mf$pvalue < 0.01, ]
sincerelySumanCCMB Hyderabad.
[[alternative HTML version deleted]]
2013 Apr 03
1
Select single probe-set with median expression from multiple probe-sets corresponding to same gene -AFFY
Hello All,
I need your help. I am analysing affymetrix data and have to select the
probe-set that has median expression among all the probe-sets for same
gene. This way I want to remove the redundancy by keeping the analysis
to single gene entry level. I am fully aware that it is not a nice thing
to do but I just have to do it.
To do so, I came across 'findLargest' function of
2011 Oct 24
2
C function is wrong under Windows 7
Dear mailing list,
I have a C function that gives me a wrong result when I run it under Windows
7.
This is the code under Linux (RHEL5):
> library(phenoTest)
> data(epheno)
> sign <- sample(featureNames(epheno))[1:20]
> score <- getFc(epheno)[,1]
> head(score)
1007_s_at 1053_at 117_at 121_at 1255_g_at 1294_at
-1.183019 1.113544 1.186186 -1.034779 -1.044456 -1.023471
> s <- which(names(score) %in% sign)
> es.c <- .Call('getEs',score,s,PACKAGE='phenoTest&...
2018 Jan 05
1
Adding a Windows Server 2008 as a DC to the domain fails
Hai Roy,
Hmm, i dont know for sure, but based on my google magic, i say your correct.
Lowering the samba DC domain level should help you out.
If someone can confirm this, thanks!
But i must mention.
Adding a "unsupported" ms 2008 server as dc... wil cost you ms licenses..
I suggest if possible, add a new samba AD DC.
Add the windows server as member, and you dont have to lower
2009 Jan 22
1
Zap connection problem
Greetings all,
I'm trying to connect to an AT&T teleconference, but the
call is never marked as ANSWERED by asterisk and therefore won't bridge and
continue. The only work-around I've come up with so far is to dial like
this:
Exten => 744,1,Dial(Zap/g1,,p)
The "private" mode keeps the line open without trying to do a bridge, but
requires the
2018 May 30
2
Can't join Windows 10 to classic domain
The issue does not seem to be connected to SMB1.
It can be installed and it still won't authenticate.
Something has been changed to force authentication to
AD/DNS either solely or as a first step. The translation
of the netbios name never happens even if the computer
can resolve the name.
Given that the authentication thru netbios resolution
seems to get grandfathered in provided the domain
2007 Dec 20
1
custom subset method / handling columns selection as logic in '...' parameter
...J R U W X)
ExpressionSet (storageMode: lockedEnvironment)
assayData: 500 features, 7 samples
element names: exprs, se.exprs
phenoData
sampleNames: C, F, ..., X (7 total)
varLabels and varMetadata description:
sex: Female/Male
type: Case/Control
score: Testing Score
featureData
featureNames: AFFX-MurIL2_at, AFFX-MurIL10_at, ..., 31739_at (500 total)
fvarLabels and fvarMetadata description: none
experimentData: use 'experimentData(object)'
Annotation: hgu95av2
# what I would like to allow in use:
(subset2 = subset(expressionSet, sex=="Male", score > 0.75) # no...
2012 Nov 26
1
A problem subsetting a data frame
...ge "Biobase"] with 4 slots
> .. .. ..@ varMetadata :'data.frame': 0 obs. of 1 variable:
> .. .. .. ..$ labelDescription: logi(0)
> .. .. ..@ data :'data.frame': 12625 obs. of 0 variables
> .. .. ..@ dimLabels : chr [1:2] "featureNames" "featureColumns"
> .. .. ..@ .__classVersion__:Formal class 'Versions' [package "Biobase"] with 1 slots
> .. .. .. .. ..@ .Data:List of 1
> .. .. .. .. .. ..$ : int [1:3] 1 1 0
> ..@ annotation : chr "hgu95av2"
> ..@ protoco...
2018 Jan 05
0
Adding a Windows Server 2008 as a DC to the domain fails
Hai Roy,
What happens if you disable smb1 in win 2008, reboot and try again.
In powershell run :
Get-WindowsFeature FS-SMB1
Disable-WindowsOptionalFeature -Online -FeatureName smb1protocol
Greetz,
Louis
> -----Oorspronkelijk bericht-----
> Van: samba [mailto:samba-bounces at lists.samba.org] Namens Roy
> Eastwood via samba
> Verzonden: vrijdag 5 januari 2018 13:23
>
2018 May 30
0
Can't join Windows 10 to classic domain
Yes, you correct, you wasted time on this..
Read also, this will give more insight.
https://support.microsoft.com/en-us/help/4034314/smbv1-is-not-installed-by-default-in-windows
Greetz,
Louis
> -----Oorspronkelijk bericht-----
> Van: samba [mailto:samba-bounces at lists.samba.org] Namens
> Marco Shmerykowsky PE via samba
> Verzonden: dinsdag 29 mei 2018 19:12
> Aan: samba
2011 Nov 22
2
filtering probesets with Bioconductor?
Hi,
I am relatively new to R and Bioconductor and am trying to filter the
topTable that I generated of differentially expressed genes from my
normlized eset file comprised of ~ 40 HG-133A Affy microarrays . I would
like to see if particular probesets are represented in this list.
Alternatively I would like to
generate a topTable of differentially expressed genes using only specified
probesets
2009 Sep 07
2
features.conf : feature map ==> getting feature to work
Hi there,
I need some help with a 'custom' feature.
I have following feature defined in features.conf :
[applicationmap]
opnemencallee =>
#3,self/callee,Monitor,wav,/var/samba/profiles/jonaskl/recording,m
In my dialplan :
[from-HostAst]
exten => s,1,Set(__DYNAMIC_FEATURES=opnemencallee)
exten => s,n,Dial(SIP/grandstream,30)
I want the callee to be able to press #3 to be able