forked from barionleg/3D-Barcoding-Spots-Code-GIT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimportfile.m
72 lines (61 loc) · 2.28 KB
/
importfile.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
function barcodekey = importfile(filename,hyb, startRow, endRow)
%IMPORTFILE Import numeric data from a text file as a matrix.
% TF1KBARCODES = IMPORTFILE(FILENAME) Reads data from text file FILENAME
% for the default selection.
%
% TF1KBARCODES = IMPORTFILE(FILENAME, STARTROW, ENDROW) Reads data from
% rows STARTROW through ENDROW of text file FILENAME.
%
% Example:
% TF1kbarcodes = importfile('TF_1k_barcodes.csv', 2, 1001);
%
% See also TEXTSCAN.
% Auto-generated by MATLAB on 2017/01/28 15:30:26
%% Initialize variables.
if isempty(filename)
[filename,PathName,FilterIndex] = uigetfile;
filename = [PathName '\' filename];
end
delimiter = ',';
if nargin<=3
startRow = 2;
endRow = inf;
end
%% Format string for each line of text:
% column1: text (%s)
% column2: double (%f)
% column3: double (%f)
% column4: double (%f)
% column5: double (%f)
% For more information, see the TEXTSCAN documentation.
strs = '%s';
for i = 1:hyb;
strs = [strs '%f'];
end
formatSpec = [strs '%[^\n\r]'];
%% Open the text file.
fileID = fopen(filename,'r');
%% Read columns of data according to format string.
% This call is based on the structure of the file used to generate this
% code. If an error occurs for a different file, try regenerating the code
% from the Import Tool.
dataArray = textscan(fileID, formatSpec, endRow(1)-startRow(1)+1, 'Delimiter', delimiter, 'HeaderLines', startRow(1)-1, 'ReturnOnError', false);
for block=2:length(startRow)
frewind(fileID);
dataArrayBlock = textscan(fileID, formatSpec, endRow(block)-startRow(block)+1, 'Delimiter', delimiter, 'HeaderLines', startRow(block)-1, 'ReturnOnError', false);
for col=1:length(dataArray)
dataArray{col} = [dataArray{col};dataArrayBlock{col}];
end
end
%% Close the text file.
fclose(fileID);
%% Post processing for unimportable data.
% No unimportable data rules were applied during the import, so no post
% processing code is included. To generate code which works for
% unimportable data, select unimportable cells in a file and regenerate the
% script.
%% Create output variable
dataArray(2:hyb+1) = cellfun(@(x) num2cell(x), dataArray(2:hyb+1), 'UniformOutput', false);
TF1kbarcodes = [dataArray{1:end-1}];
barcodekey.names = TF1kbarcodes(:,1);
barcodekey.barcode = cell2mat(TF1kbarcodes(:,2:end));