Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
e0a8d893
Commit
e0a8d893
authored
14 years ago
by
felmer
Browse files
Options
Downloads
Patches
Plain Diff
SE-236 bug fixed
SVN: 15542
parent
26dfb33c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
screening/source/java/ch/systemsx/cisd/openbis/dss/genedata/FeatureStorageProcessor.java
+18
-7
18 additions, 7 deletions
...sx/cisd/openbis/dss/genedata/FeatureStorageProcessor.java
with
18 additions
and
7 deletions
screening/source/java/ch/systemsx/cisd/openbis/dss/genedata/FeatureStorageProcessor.java
+
18
−
7
View file @
e0a8d893
...
@@ -48,14 +48,10 @@ public class FeatureStorageProcessor extends DefaultStorageProcessor
...
@@ -48,14 +48,10 @@ public class FeatureStorageProcessor extends DefaultStorageProcessor
public
void
startNewColumn
(
String
columnName
)
public
void
startNewColumn
(
String
columnName
)
{
{
if
(
tableBuilder
!=
null
)
addColumn
();
{
columns
.
addAll
(
tableBuilder
.
getColumns
());
}
tableBuilder
=
new
TableBuilder
(
columnName
);
tableBuilder
=
new
TableBuilder
(
columnName
);
}
}
public
void
checkColumnsLine
(
int
lineIndex
,
String
line
)
public
void
checkColumnsLine
(
int
lineIndex
,
String
line
)
{
{
int
columnCount
=
new
StringTokenizer
(
line
).
countTokens
();
int
columnCount
=
new
StringTokenizer
(
line
).
countTokens
();
...
@@ -94,6 +90,11 @@ public class FeatureStorageProcessor extends DefaultStorageProcessor
...
@@ -94,6 +90,11 @@ public class FeatureStorageProcessor extends DefaultStorageProcessor
}
}
}
}
public
void
finish
()
{
addColumn
();
}
public
int
getNumberOfWells
()
public
int
getNumberOfWells
()
{
{
return
numberOfColumns
*
rowLetters
.
size
();
return
numberOfColumns
*
rowLetters
.
size
();
...
@@ -101,7 +102,7 @@ public class FeatureStorageProcessor extends DefaultStorageProcessor
...
@@ -101,7 +102,7 @@ public class FeatureStorageProcessor extends DefaultStorageProcessor
public
String
getRowLetter
(
int
index
)
public
String
getRowLetter
(
int
index
)
{
{
return
rowLetters
.
get
(
index
%
rowLetters
.
size
());
return
rowLetters
.
get
(
(
index
/
numberOfColumns
)
%
rowLetters
.
size
());
}
}
public
int
getColumnNumber
(
int
index
)
public
int
getColumnNumber
(
int
index
)
...
@@ -113,6 +114,15 @@ public class FeatureStorageProcessor extends DefaultStorageProcessor
...
@@ -113,6 +114,15 @@ public class FeatureStorageProcessor extends DefaultStorageProcessor
{
{
return
columns
;
return
columns
;
}
}
private
void
addColumn
()
{
if
(
tableBuilder
!=
null
)
{
columns
.
addAll
(
tableBuilder
.
getColumns
());
}
}
}
}
public
FeatureStorageProcessor
(
Properties
properties
)
public
FeatureStorageProcessor
(
Properties
properties
)
...
@@ -149,6 +159,7 @@ public class FeatureStorageProcessor extends DefaultStorageProcessor
...
@@ -149,6 +159,7 @@ public class FeatureStorageProcessor extends DefaultStorageProcessor
columnsBuilder
.
addRow
(
i
,
line
);
columnsBuilder
.
addRow
(
i
,
line
);
}
}
}
}
columnsBuilder
.
finish
();
List
<
Column
>
columns
=
columnsBuilder
.
getColumns
();
List
<
Column
>
columns
=
columnsBuilder
.
getColumns
();
StringBuilder
builder
=
new
StringBuilder
();
StringBuilder
builder
=
new
StringBuilder
();
builder
.
append
(
"barcode"
).
append
(
DELIMITER
).
append
(
"row"
).
append
(
DELIMITER
).
append
(
"col"
);
builder
.
append
(
"barcode"
).
append
(
DELIMITER
).
append
(
"row"
).
append
(
DELIMITER
).
append
(
"col"
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment