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
11b0df80
Commit
11b0df80
authored
14 years ago
by
felmer
Browse files
Options
Downloads
Patches
Plain Diff
SE-251 only primary proteins are showed in GUI
SVN: 16170
parent
236379ac
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
rtd_phosphonetx/source/java/ch/systemsx/cisd/openbis/plugin/phosphonetx/server/dataaccess/IProteinQueryDAO.java
+8
-8
8 additions, 8 deletions
...lugin/phosphonetx/server/dataaccess/IProteinQueryDAO.java
with
8 additions
and
8 deletions
rtd_phosphonetx/source/java/ch/systemsx/cisd/openbis/plugin/phosphonetx/server/dataaccess/IProteinQueryDAO.java
+
8
−
8
View file @
11b0df80
...
...
@@ -49,7 +49,7 @@ public interface IProteinQueryDAO extends BaseQuery
+
"left join identified_proteins as ip on ip.sequ_id = s.id "
+
"left join proteins as p on ip.prot_id = p.id "
+
"left join data_sets as d on p.dase_id = d.id "
+
"left join experiments as e on d.expe_id = e.id where e.perm_id = ?{1}"
)
+
"left join experiments as e on d.expe_id = e.id where e.perm_id = ?{1}
and ip.is_primary = 't'
"
)
public
DataSet
<
ProteinReferenceWithProtein
>
listProteinReferencesByExperiment
(
String
experimentPermID
);
...
...
@@ -65,7 +65,7 @@ public interface IProteinQueryDAO extends BaseQuery
+
"left join peptides as pe on pe.prot_id = p.id "
+
"left join data_sets as d on p.dase_id = d.id "
+
"left join experiments as e on d.expe_id = e.id "
+
"where e.perm_id = ?{1} "
)
+
"where e.perm_id = ?{1}
and ip.is_primary = 't'
"
)
public
DataSet
<
ProteinReferenceWithProbabilityAndPeptide
>
listProteinsWithProbabilityAndPeptidesByExperiment
(
String
experimentPermID
);
...
...
@@ -89,11 +89,11 @@ public interface IProteinQueryDAO extends BaseQuery
+
"probability, count(pe.id) as peptide_count, amino_acid_sequence, s.db_id, name_and_version "
+
"from data_sets as ds join experiments as e on ds.expe_id = e.id "
+
" join proteins as p on p.dase_id = ds.id "
+
" join identified_proteins as i on i.prot_id = p.id "
+
" join sequences as s on i.sequ_id = s.id "
+
" join identified_proteins as i
p
on i
p
.prot_id = p.id "
+
" join sequences as s on i
p
.sequ_id = s.id "
+
" join databases as db on s.db_id = db.id "
+
" left join peptides as pe on pe.prot_id = p.id "
+
"where s.prre_id = ?{2} and e.perm_id = ?{1} "
+
"where s.prre_id = ?{2} and e.perm_id = ?{1}
and ip.is_primary = 't'
"
+
"group by data_set_id, data_set_perm_id, protein_id, probability, "
+
" amino_acid_sequence, s.db_id, name_and_version order by data_set_perm_id"
)
public
DataSet
<
IdentifiedProtein
>
listProteinsByProteinReferenceAndExperiment
(
...
...
@@ -106,10 +106,10 @@ public interface IProteinQueryDAO extends BaseQuery
+
"from abundances as a left join proteins as p on a.prot_id = p.id "
+
" left join data_sets as d on p.dase_id = d.id "
+
" left join experiments as e on d.expe_id = e.id "
+
" left join identified_proteins as i on i.prot_id = p.id "
+
" left join sequences as s on i.sequ_id = s.id "
+
" left join identified_proteins as i
p
on i
p
.prot_id = p.id "
+
" left join sequences as s on i
p
.sequ_id = s.id "
+
" left join samples on a.samp_id = samples.id "
+
"where e.perm_id = ?{1} and s.prre_id = ?{2}"
)
+
"where e.perm_id = ?{1} and s.prre_id = ?{2}
and ip.is_primary = 't'
"
)
public
DataSet
<
SampleAbundance
>
listSampleAbundanceByProtein
(
String
experimentPermID
,
long
proteinReferenceID
);
...
...
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