Skip to content

Commit d873ddc

Browse files
committed
Return graph rather than flat contigs
1 parent b2d5153 commit d873ddc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/public/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@
4141
// Download assembly function
4242
function download_assembly() {
4343
// Blob
44-
fh = FS.open('/IDBFS/velvet/contigs.fa', 'r');
44+
fh = FS.open('/IDBFS/velvet/LastGraph', 'r');
4545
blob = new Blob([fh.node.contents], {type: 'text/plain'});
4646
FS.close(fh);
4747
// Associate with element
4848
link = document.createElement('a');
4949
link.href = URL.createObjectURL(blob);
50-
link.download = 'contigs.fa';
50+
link.download = 'assembly.gfa';
5151
// Place element in HTML and simulate click
5252
document.body.append(link);
5353
link.click();

0 commit comments

Comments
 (0)