Mercurial > repos > vipints > deseq_hts
view deseq-hts_1.0/tools/separate.m @ 9:e27b4f7811c2 draft
Updated DESeq version 1.12
author | vipints <vipin@cbio.mskcc.org> |
---|---|
date | Tue, 08 Oct 2013 08:09:28 -0400 |
parents | 94a108763d9e |
children |
line wrap: on
line source
function f = separate(str, delim) f={}; idx=[0 find(str==delim) length(str)+1]; for i=1:length(idx)-1 f{i}=deblank(str(idx(i)+1:idx(i+1)-1)); end;