Skip to content

Commit

Permalink
Deploy manual sequence selection to main site
Browse files Browse the repository at this point in the history
Refs #2266
  • Loading branch information
kimrutherford committed Nov 6, 2024
1 parent e72f1a0 commit 05163cc
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@
<a (click)="clearSelection()">Clear selection</a>
</span>

<span *ngIf="!showNucSequence && !deployConfigService.productionMode()" class="manual-selection">
<span *ngIf="!showNucSequence" class="manual-selection">
<a *ngIf="!selectedResidueRange && !manualSelectionVisible" (click)="manualSelectionVisible=true;">Manually select residues</a>
<span *ngIf="manualSelectionVisible && !selectedResidueRange">
Select range: <input [(ngModel)]="manualSelection" (change)="manualSelectionChanged()"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import { GeneDetails, ProteinDetails, PombaseAPIService, Strand } from '../pomba
import { Util } from '../shared/util';
import { DisplaySequence, DisplaySequencePart, ResidueRange } from '../display-sequence';
import { getAppConfig, replaceFieldsInUrl } from '../config';
import { DeployConfigService } from '../deploy-config.service';

@Component({
selector: 'app-transcript-sequence-select',
Expand Down Expand Up @@ -64,7 +63,6 @@ export class TranscriptSequenceSelectComponent implements OnChanges {
downloadWithFeaturesURL = getAppConfig().seq_and_features_download_url;

constructor(private apiService: PombaseAPIService,
public deployConfigService: DeployConfigService,
@Inject('Window') private window: Window) { }

updateHeader(sequenceLength: number) {
Expand Down

0 comments on commit 05163cc

Please sign in to comment.