Skip to content

Commit

Permalink
fix commas
Browse files Browse the repository at this point in the history
  • Loading branch information
Dert1129 committed Oct 31, 2024
1 parent ab1c99d commit bca20c7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ public interface ParticipantClinicalDatasetRepository extends CrudRepository<Par
"p.age_binned, " +
"p.sex," +
"p.tissue_source, " +
"p.protocol," +
"p.sample_type," +
"p.protocol, " +
"p.sample_type " +
"from participant_clinical pc join participant p on pc.participant_id = p.participant_id where pc.participant_id = :participantId ", nativeQuery = true)
ParticipantClinicalDataset findByParticipantId(@Param("participantId") Integer participantId);

Expand Down

0 comments on commit bca20c7

Please sign in to comment.