Feeds
已回答
How to predict unknown data with a RegressionPartitionedSVM-model
Hi, Let me add to what Shubh already said, the partitioned model contains several models, so which one should be used for predi...
How to predict unknown data with a RegressionPartitionedSVM-model
Hi, Let me add to what Shubh already said, the partitioned model contains several models, so which one should be used for predi...
5 years 前 | 1
已回答
How do you convert a tsv or txt file to a GFF file on matlab, with data you've downloading from NCBI or Ensembl ?
There is a demo function ( |ensemblmart2gff| ) in the toolbox/bioinfo/biodemos directory that may help you to get you started. ...
How do you convert a tsv or txt file to a GFF file on matlab, with data you've downloading from NCBI or Ensembl ?
There is a demo function ( |ensemblmart2gff| ) in the toolbox/bioinfo/biodemos directory that may help you to get you started. ...
10 years 前 | 0
已回答
Can't set Biograph edges individually
|bg2.edges| is an array of |biograph.edge| objects. With |set| you can set the |LineWidth| porperty of multiple objects to the _...
Can't set Biograph edges individually
|bg2.edges| is an array of |biograph.edge| objects. With |set| you can set the |LineWidth| porperty of multiple objects to the _...
10 years 前 | 0
| 已接受
已回答
Biograph node label elimination. How to?
bg.NodeAutoSize='off' bg.ShowTextInNodes='none' set(bg.Nodes,'Size',[1 1]); set(bg.Nodes,'Shape','circle'); view(b...
Biograph node label elimination. How to?
bg.NodeAutoSize='off' bg.ShowTextInNodes='none' set(bg.Nodes,'Size',[1 1]); set(bg.Nodes,'Shape','circle'); view(b...
10 years 前 | 0
已回答
How can I reverse an edge in biograph viewer without redrawing the figure?
You must call the layout engine to redraw graph. This is because in some types of layouts the actual chronological order of the ...
How can I reverse an edge in biograph viewer without redrawing the figure?
You must call the layout engine to redraw graph. This is because in some types of layouts the actual chronological order of the ...
11 years 前 | 0
已回答
Saving to BAM files from a BioMap object ?
You can not only split, but you can use this convenient method to filter (or preprocess) your files, for example you can filter ...
Saving to BAM files from a BioMap object ?
You can not only split, but you can use this convenient method to filter (or preprocess) your files, for example you can filter ...
11 years 前 | 1
| 已接受
已回答
How to open a BAM file?
It may be possible that the BAM file is not ordered. The Bioinfomatics Toolbox (12b) automatically indexes the BAM file, but for...
How to open a BAM file?
It may be possible that the BAM file is not ordered. The Bioinfomatics Toolbox (12b) automatically indexes the BAM file, but for...
12 years 前 | 0
| 已接受
已回答
dendrograms in clustergram vs pdist->linkage->dendrogram
Clustergram standardizes the data. I am not sure what release you are using but the way you control this option with the input a...
dendrograms in clustergram vs pdist->linkage->dendrogram
Clustergram standardizes the data. I am not sure what release you are using but the way you control this option with the input a...
12 years 前 | 1
已回答
official examples could not run --- bioinformatics toolbox
This a known issue. There are workarounds already published. <http://www.mathworks.com/support/bugreports/865214> HTH L...
official examples could not run --- bioinformatics toolbox
This a known issue. There are workarounds already published. <http://www.mathworks.com/support/bugreports/865214> HTH L...
12 years 前 | 1
| 已接受
已回答
how to solve Dijkstra algorithm in MATLAB?
I get the distance of 1-16-2-6-10 to be 5.8, while 1-3-6-10 is 5.15. HTH
how to solve Dijkstra algorithm in MATLAB?
I get the distance of 1-16-2-6-10 to be 5.8, while 1-3-6-10 is 5.15. HTH
12 years 前 | 0
已回答
msresample error message: The MZ vector is not evenly nor linearly spaced.
Setting the option MISSING to TRUE should only be used when you are certain that the spacing between MZ values follows a linear ...
msresample error message: The MZ vector is not evenly nor linearly spaced.
Setting the option MISSING to TRUE should only be used when you are certain that the spacing between MZ values follows a linear ...
12 years 前 | 0
| 已接受
已回答
Need access to certain fields using BioMap for .bam file reading
Currently, you'll need to look into the mate, wich you could find using the MatePosition. This is not optimal and would require ...
Need access to certain fields using BioMap for .bam file reading
Currently, you'll need to look into the mate, wich you could find using the MatePosition. This is not optimal and would require ...
12 years 前 | 0
已回答
Bioinformatics toolbox - featuresmap question
Razvan: featuresmap cannot do what you need, you'll need to plot the CDS manually, hopefully this gets you started: figu...
Bioinformatics toolbox - featuresmap question
Razvan: featuresmap cannot do what you need, you'll need to plot the CDS manually, hopefully this gets you started: figu...
12 years 前 | 0
| 已接受
已回答
open huge SAM files
The 4GB limitation for BioIndexedFile (which is the back-end support to read SAM files into BioMap) has been removed in 12a. Bef...
open huge SAM files
The 4GB limitation for BioIndexedFile (which is the back-end support to read SAM files into BioMap) has been removed in 12a. Bef...
12 years 前 | 0
| 已接受
已回答
HeatMap to Figure in 2009b vs. 2010b
This is a bug in 2010b, this was later fixed. This has a simple workaround, use: plot(hmo,figure('Renderer','ZBuffer','Vi...
HeatMap to Figure in 2009b vs. 2010b
This is a bug in 2010b, this was later fixed. This has a simple workaround, use: plot(hmo,figure('Renderer','ZBuffer','Vi...
13 years 前 | 0
| 已接受
已回答
FASTA AND BLAST
None of these alignment algorithms are included in Matlab. Do not mix the "fasta" alignment algorithm with the "fasta" file ...
FASTA AND BLAST
None of these alignment algorithms are included in Matlab. Do not mix the "fasta" alignment algorithm with the "fasta" file ...
13 years 前 | 1
已回答
why nucleotides is more than 4?
Ambiguous nucleotide symbols are used to characterize sequences that can have variations. It was introduced in the 80's and they...
why nucleotides is more than 4?
Ambiguous nucleotide symbols are used to characterize sequences that can have variations. It was introduced in the 80's and they...
13 years 前 | 1
已回答
Sort items to existing cluster groups
Use the function |cluster| to give a cluster idx to each sample in X: C = cluster(Z,'MaxClust',number_of_groups); Then f...
Sort items to existing cluster groups
Use the function |cluster| to give a cluster idx to each sample in X: C = cluster(Z,'MaxClust',number_of_groups); Then f...
13 years 前 | 0
| 已接受
已回答
Dot plot screen resolution
You could visualize the dot plot by regions: seqdotplot(AHSINS5H5N1(1:500),AHSINS5H5N1(1:500),11,7) seqdotplot(AHSINS5H5N1...
Dot plot screen resolution
You could visualize the dot plot by regions: seqdotplot(AHSINS5H5N1(1:500),AHSINS5H5N1(1:500),11,7) seqdotplot(AHSINS5H5N1...
13 years 前 | 0
已回答
tie-breaking in nwalign
Under ties, the simplegap algorithm favors first diagonal (matches/missmatches) then gap instertions in the first sequence and...
tie-breaking in nwalign
Under ties, the simplegap algorithm favors first diagonal (matches/missmatches) then gap instertions in the first sequence and...
13 years 前 | 0
| 已接受
已回答
Difference between heatmap and clustermap
clustergram automatically standarizes the data in order to maximize the usage of the colormap. You may also alter the dynamic ra...
Difference between heatmap and clustermap
clustergram automatically standarizes the data in order to maximize the usage of the colormap. You may also alter the dynamic ra...
13 years 前 | 0
已回答
Load files to ngsbrowser from command line
This is undocummented, unfortunately it is only possible for short read data: bm1 = BioMap('mysamfile.sam') bm2 = BioMap...
Load files to ngsbrowser from command line
This is undocummented, unfortunately it is only possible for short read data: bm1 = BioMap('mysamfile.sam') bm2 = BioMap...
13 years 前 | 1
已回答
Sequence Distance
When you are comparing sequences it is common to first align them using a dynamic programing algorithm. SEQPDIST uses NWALIGN to...
Sequence Distance
When you are comparing sequences it is common to first align them using a dynamic programing algorithm. SEQPDIST uses NWALIGN to...
13 years 前 | 0
已回答
Bioinformatics
The first input of multialign is a collection of sequences to be aligned, this can be: 1) an array of structures with the "Seq...
Bioinformatics
The first input of multialign is a collection of sequences to be aligned, this can be: 1) an array of structures with the "Seq...
13 years 前 | 2
| 已接受
已回答
Colorbar displays in new figure
Adding to what Patrick said, please not that you can pass a PVP to the constructor HeatMap object with the colormap: HeatMap(...
Colorbar displays in new figure
Adding to what Patrick said, please not that you can pass a PVP to the constructor HeatMap object with the colormap: HeatMap(...
13 years 前 | 0
已回答
Error message when use geosoftread() function
In 2008a GEOSOFTREAD was only able to read data sets GDS and sample GSM files. Is your file a GSE file? You should use instead G...
Error message when use geosoftread() function
In 2008a GEOSOFTREAD was only able to read data sets GDS and sample GSM files. Is your file a GSE file? You should use instead G...
13 years 前 | 0
已回答
How to understand "predecessor node" of the winning paths?
The PRED in your example 'encodes' all shortest paths from S to all other nodes, for example the shortest path between 1 and 6 i...
How to understand "predecessor node" of the winning paths?
The PRED in your example 'encodes' all shortest paths from S to all other nodes, for example the shortest path between 1 and 6 i...
13 years 前 | 1
| 已接受
已回答
Problem with biograph layout
The layout engine will readjust the size of the page according with the positions of the nodes, so, if you are going to set the ...
Problem with biograph layout
The layout engine will readjust the size of the page according with the positions of the nodes, so, if you are going to set the ...
14 years 前 | 2