Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
UNLOCK
kubernetes
Commits
83be6ed1
Commit
83be6ed1
authored
Dec 02, 2020
by
Koehorst, Jasper
Browse files
query name change
parent
6eb2317d
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/main/java/nl/munlock/irods/Search.java
View file @
83be6ed1
...
...
@@ -104,7 +104,7 @@ public class Search {
}
}
Iterable
<
ResultLine
>
resultLines
=
domain
.
getRDFSimpleCon
().
runQuery
(
"get
Assay
s.txt"
,
true
);
Iterable
<
ResultLine
>
resultLines
=
domain
.
getRDFSimpleCon
().
runQuery
(
"get
SubjectsAndType
s.txt"
,
true
);
ArrayList
<
Assay
>
assays
=
new
ArrayList
<>();
resultLines
.
forEach
(
resultLine
->
{
String
assayIRI
=
resultLine
.
getIRI
(
"assay"
);
...
...
@@ -121,6 +121,7 @@ public class Search {
assays
.
add
(
domain
.
make
(
DNASeqAssay
.
class
,
assayIRI
));
break
;
case
"PairedSequenceDataSet"
:
case
"AmpliconLibraryAssay"
:
case
"SingleSequenceDataSet"
:
break
;
default
:
...
...
src/main/resources/queries/get
Assay
s.txt
→
src/main/resources/queries/get
SubjectsAndType
s.txt
View file @
83be6ed1
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment