From 59be21d3fc11346dfdd22283d49b10d1517d95bf Mon Sep 17 00:00:00 2001 From: Katie Spivakovsky <kspivakovsky@gmail.com> Date: Sat, 19 Aug 2023 15:27:09 -0400 Subject: [PATCH] alignment api up --- wiki/pages/align.html | 2 +- wiki/pages/software.html | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/wiki/pages/align.html b/wiki/pages/align.html index 80cb660..8be65c2 100644 --- a/wiki/pages/align.html +++ b/wiki/pages/align.html @@ -59,7 +59,7 @@ delimiters: ['${', '}'], methods: { async align(event) { - const resp = await fetch('http://127.0.0.1:9000/align', { + const resp = await fetch('https://stingray-app-ymmlq.ondigitalocean.app/align', { method: 'POST', headers: { 'Accept': 'application/json', diff --git a/wiki/pages/software.html b/wiki/pages/software.html index 3d668bc..289e965 100644 --- a/wiki/pages/software.html +++ b/wiki/pages/software.html @@ -34,7 +34,8 @@ </div> <p> Sequence alignment is central to biological experimentation, with extensive applications enabling everything from inference of evolutionary relationships between genes or proteins to comparison of synthetic genetic constructs with their theoretical designs. Some software include alignment tools as auxiliary and suboptimally designed resources, and computational packages like BioPython provide sufficient functionality for experienced coders to align their own sequences; however, there are no easily accessible and straightforward online alignment tools where users can simply upload their sequences and view alignment information. - + </p> + <p> We experienced these difficulties firsthand when we received sequencing results of some of our most important plasmid constructs and found that aligning them with our theoretical designs was frustrating and confusing. Thus, we implemented our own pairwise sequence alignment tool. </p> <p>Click <a href="{{ url_for('pages', page='align') }}" target="_blank">here</a> to use our sequence alignment tool!</p> -- GitLab