We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2d5153 commit d873ddcCopy full SHA for d873ddc
1 file changed
frontend/public/index.html
@@ -41,13 +41,13 @@
41
// Download assembly function
42
function download_assembly() {
43
// Blob
44
- fh = FS.open('/IDBFS/velvet/contigs.fa', 'r');
+ fh = FS.open('/IDBFS/velvet/LastGraph', 'r');
45
blob = new Blob([fh.node.contents], {type: 'text/plain'});
46
FS.close(fh);
47
// Associate with element
48
link = document.createElement('a');
49
link.href = URL.createObjectURL(blob);
50
- link.download = 'contigs.fa';
+ link.download = 'assembly.gfa';
51
// Place element in HTML and simulate click
52
document.body.append(link);
53
link.click();
0 commit comments