Skip to content

Commit

Permalink
Another test on api.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Zaknarfen committed Jun 7, 2019
1 parent 999c74f commit 5e1d1a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/schemas/proteomics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ ProteomicsSchema.index(
{
hgnc_symbol: 'text',
ensembl_gene_id: 'text',
uniqid: 'text',
tissue: 'text',
uniprotid: 'text'
}
);
Expand Down
2 changes: 1 addition & 1 deletion src/server/routes/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ connection.once('open', () => {
log2fc: { $ne: null }
}
]
}).lean().exec(async (err, genes: Proteomics[]) => {
}).exec(async (err, genes: Proteomics[]) => {
if (err) {
next(err);
} else {
Expand Down

0 comments on commit 5e1d1a2

Please sign in to comment.