search for: normlize

Displaying 4 results from an estimated 4 matches for "normlize".

Did you mean: normalize
2010 Oct 15
1
scaling on normlized data set
...r re-normalize them again, so that it can be used for further analysis. Unfortunately, I did not manage it on using AffyPLM package. Would you please help me out with this problem. Thanks in advance. Best regards, H. Nawaz -- View this message in context: http://r.789695.n4.nabble.com/scaling-on-normlized-data-set-tp2996771p2996771.html Sent from the R help mailing list archive at Nabble.com.
2018 Jul 28
3
[PATCH] file: Normalize errno value for ENODEV
...ed(FALLOC_FL_PUNCH_HOLE) || defined(FALLOC_FL_ZERO_RANGE) +static int +do_fallocate(int fd, int mode, off_t offset, off_t len) +{ + int r = -1; + r = fallocate (fd, mode, offset, len); + /* kernel 3.10 fails with ENODEV for block device. Kernel >= 4.9 fails + with EOPNOTSUPP in this case. Normlize errno to simplify callers. */ + if (r == -1 && errno == ENODEV) { + errno = EOPNOTSUPP; + } + return r; +} +#endif + static void file_unload (void) { @@ -241,9 +256,9 @@ file_zero (void *handle, uint32_t count, uint64_t offset, int may_trim) #ifdef FALLOC_FL_PUNCH_HOLE if (ma...
2018 Jul 30
0
Re: [PATCH] file: Normalize errno value for ENODEV
...t you aren't directly copying code from that project to this one, due to the difference in licensing). > + int r = -1; > + r = fallocate (fd, mode, offset, len); > + /* kernel 3.10 fails with ENODEV for block device. Kernel >= 4.9 fails > + with EOPNOTSUPP in this case. Normlize errno to simplify callers. */ s/Normlize/Normalize/ > + if (r == -1 && errno == ENODEV) { > + errno = EOPNOTSUPP; > + } Question - do we care about retrying on EINTR? That would also fit well in this normalizing wrapper. But that can be a separate patch. With the typo f...
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 within my eset file. Can anyone tell me how I woul...