-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Bugfix] Update codebase to latest atlas-web-core module (#180)
* Fix test runners * Upgrade Mockito to 5.2.0 * Add ontology related files to the local Docker env * Remove large experiments from local env * Implement ExperimentCellCountDao interface * Remove experiment design tab from the experiment page * Remove unused stubbing * Add null check * Adjust test to code changes that happened in February 2022 Unfortunately test code was not adjusted when the `download` endpoint has been changed in February 2022 and probably the tests were not executed before the PR as merged. :-( * Add back E-MTAB-5214 to the experiment's fixtures * Add E-MTAB-5555 as a private experiment * Fix experiment fixture for GxaExperimentCrudIT * Remove E-MTAB-5200 from the small-experiment-fixture.sql as we don't have it local * Fix DASFeaturesControllerWIT's featuresURLGeneWithoutExpressions method * Add temporary folders to .gitignore * Fix port related issue for gradle task * New section - How to add a private experiment into our local env * Add known build issue to the README.md * Improve the README.md * Fix anchor in the README * Change property source to git.properties git.properties is being generated by the plugin * Define folder name to git.properties * Remove the definition of the folder for git.properties * Change the path and name of the generated git props file * add --recurse-submodules to index-bioentities git repo to pull submodules and add specific branch name to pull only that branch instead of dev * Remove SOLR_HOSTS and ZK_HOSTS to load jsonl files into a collection * Fix solr tasks to create bioentities and bulk-analytics collections in 2 steps * Update the README with the 2 SOLR sub-steps * Remove `-r` flag from bulk-analytics collection generation --------- Co-authored-by: Upendra Kumbham <[email protected]>
- Loading branch information
1 parent
3b7bcdf
commit 347c425
Showing
39 changed files
with
28,712 additions
and
133 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
app/src/main/java/uk/ac/ebi/atlas/experiments/ExperimentCellCountDaoImpl.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package uk.ac.ebi.atlas.experiments; | ||
|
||
import org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; | ||
import org.springframework.stereotype.Repository; | ||
import org.springframework.transaction.annotation.Transactional; | ||
|
||
@Repository | ||
@Transactional(transactionManager = "txManager", readOnly = true) | ||
public class ExperimentCellCountDaoImpl implements ExperimentCellCountDao { | ||
private final NamedParameterJdbcTemplate namedParameterJdbcTemplate; | ||
|
||
public ExperimentCellCountDaoImpl(NamedParameterJdbcTemplate namedParameterJdbcTemplate) { | ||
this.namedParameterJdbcTemplate = namedParameterJdbcTemplate; | ||
} | ||
|
||
@Override | ||
public Integer fetchNumberOfCellsByExperimentAccession(String experimentAccession) { | ||
return 0; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.