Skip to content

Commit

Permalink
feat: reduce sequences sent to UShER to 400
Browse files Browse the repository at this point in the history
  • Loading branch information
chaoran-chen committed Sep 18, 2023
1 parent dd406a6 commit ca1a51a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/external-integrations/UsherIntegration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { LapisSelector } from '../../data/LapisSelector';
const usherUrl =
'https://genome.ucsc.edu/cgi-bin/hgPhyloPlace?db=wuhCor1&phyloPlaceTree=hgPhyloPlaceData/wuhCor1' +
'/public.plusGisaid.latest.masked.pb&subtreeSize=5000&remoteFile=';
const defaultOrderAndLimit: OrderAndLimitConfig = { orderBy: 'random', limit: 1000 };
const defaultOrderAndLimit: OrderAndLimitConfig = { orderBy: 'random', limit: 400 };

export class UsherIntegration implements Integration {
name = 'UShER';
Expand Down

0 comments on commit ca1a51a

Please sign in to comment.