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
bb418fa4
Commit
bb418fa4
authored
13 years ago
by
tpylak
Browse files
Options
Downloads
Patches
Plain Diff
SE-352 maintain the original plate barcode, remove the part after the dot only for Abase queries
SVN: 22112
parent
d4f5f00e
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
sanofi/dist/etc/sanofi-dropbox/dropbox-all-in-one-with-library.py
+1
-1
1 addition, 1 deletion
...ist/etc/sanofi-dropbox/dropbox-all-in-one-with-library.py
sanofi/dist/etc/sanofi-dropbox/plateinitializer.py
+2
-1
2 additions, 1 deletion
sanofi/dist/etc/sanofi-dropbox/plateinitializer.py
with
3 additions
and
2 deletions
sanofi/dist/etc/sanofi-dropbox/dropbox-all-in-one-with-library.py
+
1
−
1
View file @
bb418fa4
...
...
@@ -218,7 +218,7 @@ def parseIncomingDirname(dirName):
raise
ValidationException
(
"
Data set directory name does not match the pattern
'
<ACQUISITION_BATCH_NAME>_<BAR_CODE>_<TIMESTAMP>
'
:
"
+
dirName
)
acquisitionBatch
=
tokens
[
0
]
plateCode
=
tokens
[
1
]
.
split
(
'
.
'
)[
0
]
plateCode
=
tokens
[
1
]
return
(
acquisitionBatch
,
plateCode
)
...
...
This diff is collapsed.
Click to expand it.
sanofi/dist/etc/sanofi-dropbox/plateinitializer.py
+
2
−
1
View file @
bb418fa4
...
...
@@ -132,8 +132,9 @@ class PlateInitializer:
else
:
query
=
self
.
ABASE_PRODUCTION_QUERY
plateCode
=
self
.
plateCode
.
split
(
"
.
"
)[
0
]
queryService
=
self
.
state
.
getDataSourceQueryService
()
queryResult
=
queryService
.
select
(
self
.
ABASE_DATA_SOURCE
,
query
,
[
self
.
plateCode
])
queryResult
=
queryService
.
select
(
self
.
ABASE_DATA_SOURCE
,
query
,
[
plateCode
])
sanofiMaterials
=
[]
for
resultMap
in
list
(
queryResult
):
...
...
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