@@ -66,6 +66,7 @@ var api = {
6666 summary : require ( './api/summary' ) ,
6767 fasta : require ( './api/fasta' ) ,
6868 genBank : require ( './api/genBank' ) ,
69+ gff3 : require ( './api/gff3' ) ,
6970 metadata : require ( './api/metadata' ) ,
7071 autocomplete : require ( './api/autocomplete' ) ,
7172 count : require ( './api/count' ) ,
@@ -385,6 +386,7 @@ function App () {
385386 app . get ( '/public/:collectionId/:displayId/:version/:filename.json' , api . summary )
386387 app . get ( '/public/:collectionId/:displayId/:version/:filename.fasta' , api . fasta )
387388 app . get ( '/public/:collectionId/:displayId/:version/:filename.gb' , api . genBank )
389+ app . get ( '/public/:collectionId/:displayId/:version/:filename.gff' , api . gff3 )
388390 app . get ( '/public/:collectionId/:displayId/:version/sbol' , api . sbol )
389391 app . get ( '/public/:collectionId/:displayId/:version/sbolnr' , api . sbolnr )
390392 app . get ( '/public/:collectionId/:displayId/:version/metadata' , api . metadata )
@@ -394,6 +396,7 @@ function App () {
394396 app . get ( '/user/:userId/:collectionId/:displayId/:version/:filename.json' , api . summary )
395397 app . get ( '/user/:userId/:collectionId/:displayId/:version/:filename.fasta' , api . fasta )
396398 app . get ( '/user/:userId/:collectionId/:displayId/:version/:filename.gb' , api . genBank )
399+ app . get ( '/user/:userId/:collectionId/:displayId/:version/:filename.gff' , api . gff3 )
397400 app . get ( '/user/:userId/:collectionId/:displayId/:version/sbol' , api . sbol )
398401 app . get ( '/user/:userId/:collectionId/:displayId/:version/sbolnr' , api . sbolnr )
399402 app . get ( '/user/:userId/:collectionId/:displayId/:version/metadata' , api . metadata )
@@ -403,6 +406,7 @@ function App () {
403406 app . get ( '/user/:userId/:collectionId/:displayId/:version/:hash/share/:filename.json' , api . summary )
404407 app . get ( '/user/:userId/:collectionId/:displayId/:version/:hash/share/:filename.fasta' , api . fasta )
405408 app . get ( '/user/:userId/:collectionId/:displayId/:version/:hash/share/:filename.gb' , api . genBank )
409+ app . get ( '/user/:userId/:collectionId/:displayId/:version/:hash/share/:filename.gff' , api . gff3 )
406410 app . get ( '/user/:userId/:collectionId/:displayId/:version/:hash/share/sbol' , api . sbol )
407411 app . get ( '/user/:userId/:collectionId/:displayId/:version/:hash/share/sbolnr' , api . sbolnr )
408412 app . get ( '/user/:userId/:collectionId/:displayId/:version/:hash/share/metadata' , api . metadata )
0 commit comments