├── .bowerrc ├── .gitignore ├── .gitmodules ├── .perltidyrc ├── AUTHORS ├── LICENSE ├── README.md ├── api.sh ├── bin ├── JalView │ └── jalviewApplet.jar ├── NJPlot │ └── njplot-2.3 │ │ ├── README │ │ ├── bigtree.phb │ │ ├── example.phb │ │ ├── helpers.html │ │ ├── makefile │ │ ├── multi.phb │ │ ├── njplot-vib.c │ │ ├── njplot.1 │ │ ├── njplot.gif │ │ ├── njplot.help │ │ ├── njplot.html │ │ ├── preptree.c │ │ ├── unrooted-vib.c │ │ └── unrooted.1 ├── Tabix │ ├── Tabix.pm │ └── TabixIterator.pm ├── aragorn1.2 ├── blastz_wrapper │ └── blastz.py ├── codeml │ ├── codeml-coge │ ├── codeml.ctl │ └── src │ │ ├── Makefile │ │ ├── Makefile.MSVC │ │ ├── Makefile.UNIX │ │ ├── README.txt │ │ ├── TreeTimeJeff.c │ │ ├── baseml │ │ ├── baseml.c │ │ ├── basemlg │ │ ├── basemlg.c │ │ ├── chi2 │ │ ├── chi2.c │ │ ├── codeml │ │ ├── codeml.c │ │ ├── ds.c │ │ ├── evolver │ │ ├── evolver.c │ │ ├── mcmctree │ │ ├── mcmctree.c │ │ ├── out.txt │ │ ├── paml.h │ │ ├── pamp │ │ ├── pamp.c │ │ ├── rst │ │ ├── rst1 │ │ ├── rub │ │ ├── tools.c │ │ ├── treespace.c │ │ ├── treesub.c │ │ ├── yn00 │ │ └── yn00.c ├── convert_long_blast_to_short_blast_names.pl ├── dagchainer │ ├── DAGCHAINER │ │ ├── Java_XY_plotter │ │ │ ├── lib │ │ │ │ ├── DatabaseMatch.class │ │ │ │ ├── DatabaseMatch.java │ │ │ │ ├── EvalueSlider$1.class │ │ │ │ ├── EvalueSlider.class │ │ │ │ ├── EvalueSlider.java │ │ │ │ ├── JsyntenyView$1.class │ │ │ │ ├── JsyntenyView$StringPair.class │ │ │ │ ├── JsyntenyView.class │ │ │ │ ├── JsyntenyView.java │ │ │ │ ├── MatchDiagonal.class │ │ │ │ ├── MatchDiagonal.java │ │ │ │ ├── RangeTree │ │ │ │ │ ├── RTleaf.class │ │ │ │ │ ├── RTleaf.java │ │ │ │ │ ├── RTpoint.class │ │ │ │ │ ├── RTpoint.java │ │ │ │ │ ├── RangeTree.class │ │ │ │ │ └── RangeTree.java │ │ │ │ ├── SequenceFeature.class │ │ │ │ ├── SequenceFeature.java │ │ │ │ ├── SequenceTicker.class │ │ │ │ ├── SequenceTicker.java │ │ │ │ ├── XYplot$1.class │ │ │ │ ├── XYplot$2.class │ │ │ │ ├── XYplot$3.class │ │ │ │ ├── XYplot$4.class │ │ │ │ ├── XYplot$5.class │ │ │ │ ├── XYplot$6.class │ │ │ │ ├── XYplot$XYcanvas.class │ │ │ │ ├── XYplot.class │ │ │ │ └── XYplot.java │ │ │ └── run_XYplot.pl │ │ ├── Makefile │ │ ├── NOTES_BY_COGE │ │ ├── README │ │ ├── accessory_scripts │ │ │ ├── chain_to_length_ratio.pl │ │ │ ├── count_genes_min_chain_len.pl │ │ │ ├── dagchainer_to_chain_spans.pl │ │ │ ├── dagchainer_to_gnuplot.pl │ │ │ ├── extract_only_chromo_pairs_with_dups.pl │ │ │ ├── filter_repetitive_matches.pl │ │ │ ├── findTandemGeneDuplicates.pl │ │ │ ├── limit_to_top_N_hits.pl │ │ │ ├── min_chain_len_filter.pl │ │ │ ├── report_dist_between_chain_segments.pl │ │ │ ├── separateDataSets.pl │ │ │ └── sum_genome_chain_nr_content.pl │ │ ├── dagchainer. │ │ ├── dagchainer.LINUX │ │ ├── dagchainer.cpp │ │ ├── dagchainer.x86_64-linux │ │ ├── docs │ │ │ ├── arab_xyplot.gif │ │ │ ├── arab_xyplot.half.gif │ │ │ ├── dagchainer_150dpi.jpg │ │ │ ├── dagchainer_documentation.asciidoc │ │ │ ├── dagchainer_documentation.html │ │ │ ├── tryp_xy.gif │ │ │ ├── tryp_xy.small.gif │ │ │ ├── xy_plotter_images │ │ │ │ ├── arab_2vs4.gif │ │ │ │ ├── arab_2vs4.select.gif │ │ │ │ ├── arab_2vs4.select.small.gif │ │ │ │ ├── arab_2vs4.small.gif │ │ │ │ ├── arab_2vs4.with_chains.gif │ │ │ │ ├── arab_2vs4.with_chains.small.gif │ │ │ │ ├── arab_2vs4.zoomed.e-value.menu.gif │ │ │ │ ├── arab_2vs4.zoomed.e-value.menu.small.gif │ │ │ │ ├── arab_2vs4.zoomed.gene_selection.gif │ │ │ │ ├── arab_2vs4.zoomed.gene_selection.small.gif │ │ │ │ ├── arab_2vs4.zoomed.gif │ │ │ │ ├── arab_2vs4.zoomed.small.gif │ │ │ │ ├── arab_2vs4.zoomed.unique_matches.gif │ │ │ │ └── arab_2vs4.zoomed.unique_matches.small.gif │ │ │ ├── xy_plotter_tutorial.asciidoc │ │ │ └── xy_plotter_tutorial.html │ │ ├── logo │ │ │ ├── dagchainer_150dpi.jpg │ │ │ ├── dagchainer_300dpi.jpg │ │ │ └── dagchainer_600dpi.jpg │ │ └── run_DAG_chainer.pl │ ├── dag_tools.py │ ├── filter_repetitive_matches.pl │ ├── find_nearby.py │ └── tandems.py ├── dagchainer_bp │ ├── Makefile │ ├── README.rst │ ├── cdagline.so │ ├── dag_chainer.py │ ├── dagchainer │ ├── dagchainer.cpp │ ├── dagtools.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── entry_points.txt │ │ ├── not-zip-safe │ │ └── top_level.txt │ ├── dagtools │ │ ├── __init__.py │ │ ├── cdagline.c │ │ ├── cdagline.pyx │ │ ├── evalue_adjust.py │ │ ├── find_nearby.py │ │ ├── from_blast.py │ │ └── plot_dag.py │ ├── dist │ │ └── dagtools-0.1-py2.6-linux-x86_64.egg │ └── setup.py ├── dataset_group_2_bed.pl ├── dialign2_dir │ ├── BLOSUM │ ├── dialign2-2_coge │ ├── tp400_dna │ ├── tp400_prot │ └── tp400_trans ├── dotplot.pl ├── gcat │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── histogram.pl ├── ks_histogram.pl ├── lagan-64bit │ ├── 1512.anchs.final │ ├── ERICLYONS_NOTES.txt │ ├── Makefile │ ├── Readmes │ │ ├── LICENSE │ │ ├── README.FIRST │ │ ├── README.chaos │ │ ├── README.lagan │ │ ├── README.mlagan │ │ ├── README.shuffle │ │ └── README.tools │ ├── Utils.pm │ ├── anal_gloc.pl │ ├── anchors │ ├── blosum62.txt │ ├── blosum62s.txt │ ├── chaos │ ├── chaos_coge │ ├── glocal │ ├── lagan.pl │ ├── lagan.pl.orig │ ├── mlagan │ ├── nucmatrix.txt │ ├── old │ │ └── prolagan │ ├── order │ ├── prolagan │ ├── rechaos.pl │ ├── rechaos.pl.orig │ ├── sample.fasta │ ├── sample.params │ ├── slagan-mfa.pl │ ├── slagan.pl │ ├── src │ │ ├── Makefile │ │ ├── Utils.pm │ │ ├── anal_gloc.pl │ │ ├── anchors.c │ │ ├── ancseq.cpp │ │ ├── ancseqrest.cpp │ │ ├── cutmfa.cpp │ │ ├── diagmatrix.c │ │ ├── diagmatrix.h │ │ ├── faindex.cpp │ │ ├── fchaos.c │ │ ├── fchaos.h │ │ ├── filebuffer.c │ │ ├── filebuffer.h │ │ ├── global.c │ │ ├── global.h │ │ ├── glocal │ │ │ ├── Makefile │ │ │ ├── default.score │ │ │ ├── glocal │ │ │ ├── glocal.cpp │ │ │ ├── glocal.h │ │ │ ├── io.cpp │ │ │ ├── io.h │ │ │ ├── leftinfluence.cpp │ │ │ ├── leftinfluence.h │ │ │ ├── rightinfluence.cpp │ │ │ ├── rightinfluence.h │ │ │ ├── score.cpp │ │ │ ├── score.h │ │ │ ├── structs.h │ │ │ └── test.score │ │ ├── lagan.pl │ │ ├── lagan2mfa.cpp │ │ ├── makecons.cpp │ │ ├── mempage.c │ │ ├── mempage.h │ │ ├── mlagan.c │ │ ├── multial.c │ │ ├── multial.h │ │ ├── order.c │ │ ├── order.h │ │ ├── prolagan.c │ │ ├── rechaos.pl │ │ ├── skiplist.c │ │ ├── skiplist.h │ │ ├── slagan-mfa.pl │ │ ├── slagan.pl │ │ ├── sortlist.c │ │ ├── supermap.pl │ │ ├── thrtrie.c │ │ ├── thrtrie.h │ │ ├── translate.c │ │ ├── translate.h │ │ ├── util.cpp │ │ ├── utils │ │ │ ├── Glue.cpp │ │ │ ├── MultiSequence.h │ │ │ ├── Output.h │ │ │ ├── SafeVector.h │ │ │ ├── Sequence.h │ │ │ ├── bin2bl.c │ │ │ ├── bin2mf.c │ │ │ ├── cextract.c │ │ │ ├── cmerge2.pl │ │ │ ├── contigorder.c │ │ │ ├── cstat.c │ │ │ ├── dotplot.cpp │ │ │ ├── draft.pl │ │ │ ├── fa2xfa.c │ │ │ ├── getbounds.c │ │ │ ├── getcontigpos.c │ │ │ ├── getlength.c │ │ │ ├── getoverlap.c │ │ │ ├── mextract.pl │ │ │ ├── mf2bin.pl │ │ │ ├── mpretty.pl │ │ │ ├── mproject.pl │ │ │ ├── mrun.pl │ │ │ ├── mrunfile.pl │ │ │ ├── mrunpairs.pl │ │ │ ├── mviz.pl │ │ │ ├── overlay.c │ │ │ ├── rc.c │ │ │ ├── scorealign.c │ │ │ ├── scorecontigs.c │ │ │ └── seqmerge.c │ │ └── xmfa2mfa.pl │ ├── supermap.pl │ ├── test.score │ ├── utils │ │ ├── Glue │ │ ├── Utils.pm │ │ ├── bin2bl │ │ ├── bin2mf │ │ ├── cextract │ │ ├── cmerge2.pl │ │ ├── contigorder │ │ ├── cstat │ │ ├── dotplot │ │ ├── draft.pl │ │ ├── fa2xfa │ │ ├── flipchaos.pl │ │ ├── getbounds │ │ ├── getcontigpos │ │ ├── getlength │ │ ├── getoverlap │ │ ├── mextract.pl │ │ ├── mf2bin.pl │ │ ├── mpretty.pl │ │ ├── mproject.pl │ │ ├── mrun.pl │ │ ├── mrunfile.pl │ │ ├── mrunpairs.pl │ │ ├── msplit.pl │ │ ├── mviz.pl │ │ ├── overlay │ │ ├── rc │ │ ├── scorealign │ │ ├── scorecontigs │ │ └── seqmerge │ └── xmfa2mfa.pl ├── last_wrapper │ ├── Bio │ │ ├── Affy │ │ │ ├── CelFile.py │ │ │ └── __init__.py │ │ ├── Align │ │ │ ├── AlignInfo.py │ │ │ ├── Applications │ │ │ │ ├── _Clustalw.py │ │ │ │ ├── _Dialign.py │ │ │ │ ├── _Mafft.py │ │ │ │ ├── _Muscle.py │ │ │ │ ├── _Prank.py │ │ │ │ ├── _Probcons.py │ │ │ │ ├── _TCoffee.py │ │ │ │ └── __init__.py │ │ │ ├── Generic.py │ │ │ └── __init__.py │ │ ├── AlignIO │ │ │ ├── ClustalIO.py │ │ │ ├── EmbossIO.py │ │ │ ├── FastaIO.py │ │ │ ├── Interfaces.py │ │ │ ├── NexusIO.py │ │ │ ├── PhylipIO.py │ │ │ ├── StockholmIO.py │ │ │ └── __init__.py │ │ ├── Alphabet │ │ │ ├── IUPAC.py │ │ │ ├── Reduced.py │ │ │ └── __init__.py │ │ ├── Application │ │ │ └── __init__.py │ │ ├── Blast │ │ │ ├── Applications.py │ │ │ ├── NCBIStandalone.py │ │ │ ├── NCBIWWW.py │ │ │ ├── NCBIXML.py │ │ │ ├── ParseBlastTable.py │ │ │ ├── Record.py │ │ │ └── __init__.py │ │ ├── CAPS │ │ │ └── __init__.py │ │ ├── Cluster │ │ │ ├── __init__.py │ │ │ └── cluster.py │ │ ├── Compass │ │ │ └── __init__.py │ │ ├── Crystal │ │ │ └── __init__.py │ │ ├── Data │ │ │ ├── CodonTable.py │ │ │ ├── IUPACData.py │ │ │ └── __init__.py │ │ ├── DocSQL.py │ │ ├── Emboss │ │ │ ├── Applications.py │ │ │ ├── Primer3.py │ │ │ ├── PrimerSearch.py │ │ │ └── __init__.py │ │ ├── Entrez │ │ │ ├── DTDs │ │ │ │ ├── EMBL_General.mod.dtd │ │ │ │ ├── GenBank_General.mod.dtd │ │ │ │ ├── HomoloGene.dtd │ │ │ │ ├── HomoloGene.mod.dtd │ │ │ │ ├── NCBI_Biblio.mod.dtd │ │ │ │ ├── NCBI_BioSource.mod.dtd │ │ │ │ ├── NCBI_BlastOutput.dtd │ │ │ │ ├── NCBI_BlastOutput.mod.dtd │ │ │ │ ├── NCBI_Entity.mod.dtd │ │ │ │ ├── NCBI_Entrezgene.dtd │ │ │ │ ├── NCBI_Entrezgene.mod.dtd │ │ │ │ ├── NCBI_GBSeq.dtd │ │ │ │ ├── NCBI_GBSeq.mod.dtd │ │ │ │ ├── NCBI_Gene.mod.dtd │ │ │ │ ├── NCBI_General.mod.dtd │ │ │ │ ├── NCBI_Medline.mod.dtd │ │ │ │ ├── NCBI_Mim.dtd │ │ │ │ ├── NCBI_Mim.mod.dtd │ │ │ │ ├── NCBI_Organism.mod.dtd │ │ │ │ ├── NCBI_Protein.mod.dtd │ │ │ │ ├── NCBI_Pub.mod.dtd │ │ │ │ ├── NCBI_RNA.mod.dtd │ │ │ │ ├── NCBI_Rsite.mod.dtd │ │ │ │ ├── NCBI_SeqTable.mod.dtd │ │ │ │ ├── NCBI_Seqalign.mod.dtd │ │ │ │ ├── NCBI_Seqfeat.mod.dtd │ │ │ │ ├── NCBI_Seqloc.mod.dtd │ │ │ │ ├── NCBI_Seqres.mod.dtd │ │ │ │ ├── NCBI_Seqset.dtd │ │ │ │ ├── NCBI_Seqset.mod.dtd │ │ │ │ ├── NCBI_Sequence.mod.dtd │ │ │ │ ├── NCBI_TSeq.dtd │ │ │ │ ├── NCBI_TSeq.mod.dtd │ │ │ │ ├── NCBI_TxInit.mod.dtd │ │ │ │ ├── PDB_General.mod.dtd │ │ │ │ ├── PIR_General.mod.dtd │ │ │ │ ├── PRF_General.mod.dtd │ │ │ │ ├── SP_General.mod.dtd │ │ │ │ ├── XHTMLtablesetup.ent │ │ │ │ ├── archivearticle.dtd │ │ │ │ ├── archivecustom-classes.ent │ │ │ │ ├── archivecustom-mixes.ent │ │ │ │ ├── archivecustom-models.ent │ │ │ │ ├── archivecustom-modules.ent │ │ │ │ ├── articlemeta.ent │ │ │ │ ├── backmatter.ent │ │ │ │ ├── bookdoc_100301.dtd │ │ │ │ ├── bookdoc_110101.dtd │ │ │ │ ├── chars.ent │ │ │ │ ├── common.ent │ │ │ │ ├── default-classes.ent │ │ │ │ ├── default-mixes.ent │ │ │ │ ├── display.ent │ │ │ │ ├── eInfo_020511.dtd │ │ │ │ ├── eLink_020511.dtd │ │ │ │ ├── eLink_090910.dtd │ │ │ │ ├── eLink_101123.dtd │ │ │ │ ├── ePost_020511.dtd │ │ │ │ ├── eSearch_020511.dtd │ │ │ │ ├── eSpell.dtd │ │ │ │ ├── eSummary_041029.dtd │ │ │ │ ├── egquery.dtd │ │ │ │ ├── elink_020122.dtd │ │ │ │ ├── format.ent │ │ │ │ ├── htmltable.dtd │ │ │ │ ├── isoamsa.ent │ │ │ │ ├── isoamsb.ent │ │ │ │ ├── isoamsc.ent │ │ │ │ ├── isoamsn.ent │ │ │ │ ├── isoamso.ent │ │ │ │ ├── isoamsr.ent │ │ │ │ ├── isobox.ent │ │ │ │ ├── isocyr1.ent │ │ │ │ ├── isocyr2.ent │ │ │ │ ├── isodia.ent │ │ │ │ ├── isogrk1.ent │ │ │ │ ├── isogrk2.ent │ │ │ │ ├── isogrk3.ent │ │ │ │ ├── isogrk4.ent │ │ │ │ ├── isolat1.ent │ │ │ │ ├── isolat2.ent │ │ │ │ ├── isomfrk.ent │ │ │ │ ├── isomopf.ent │ │ │ │ ├── isomscr.ent │ │ │ │ ├── isonum.ent │ │ │ │ ├── isopub.ent │ │ │ │ ├── isotech.ent │ │ │ │ ├── journalmeta.ent │ │ │ │ ├── link.ent │ │ │ │ ├── list.ent │ │ │ │ ├── math.ent │ │ │ │ ├── mathml2-qname-1.mod │ │ │ │ ├── mathml2.dtd │ │ │ │ ├── mathmlsetup.ent │ │ │ │ ├── mmlalias.ent │ │ │ │ ├── mmlextra.ent │ │ │ │ ├── modules.ent │ │ │ │ ├── nlm-articleset-2.0.dtd │ │ │ │ ├── nlmcommon_011101.dtd │ │ │ │ ├── nlmcommon_080101.dtd │ │ │ │ ├── nlmcommon_090101.dtd │ │ │ │ ├── nlmmedline_011101.dtd │ │ │ │ ├── nlmmedline_080101.dtd │ │ │ │ ├── nlmmedline_090101.dtd │ │ │ │ ├── nlmmedlinecitation_011101.dtd │ │ │ │ ├── nlmmedlinecitation_080101.dtd │ │ │ │ ├── nlmmedlinecitation_090101.dtd │ │ │ │ ├── nlmmedlinecitationset_100101.dtd │ │ │ │ ├── nlmmedlinecitationset_100301.dtd │ │ │ │ ├── nlmmedlinecitationset_110101.dtd │ │ │ │ ├── nlmserials_080101.dtd │ │ │ │ ├── nlmserials_100101.dtd │ │ │ │ ├── nlmsharedcatcit_080101.dtd │ │ │ │ ├── nlmsharedcatcit_090101.dtd │ │ │ │ ├── notat.ent │ │ │ │ ├── para.ent │ │ │ │ ├── phrase.ent │ │ │ │ ├── pmc-1.dtd │ │ │ │ ├── pubmed_020114.dtd │ │ │ │ ├── pubmed_080101.dtd │ │ │ │ ├── pubmed_090101.dtd │ │ │ │ ├── pubmed_100101.dtd │ │ │ │ ├── pubmed_100301.dtd │ │ │ │ ├── pubmed_110101.dtd │ │ │ │ ├── references.ent │ │ │ │ ├── section.ent │ │ │ │ ├── taxon.dtd │ │ │ │ └── xmlspecchars.ent │ │ │ ├── Parser.py │ │ │ └── __init__.py │ │ ├── ExPASy │ │ │ ├── Enzyme.py │ │ │ ├── Prodoc.py │ │ │ ├── Prosite.py │ │ │ ├── ScanProsite.py │ │ │ └── __init__.py │ │ ├── FSSP │ │ │ ├── FSSPTools.py │ │ │ ├── __init__.py │ │ │ └── fssp_rec.py │ │ ├── File.py │ │ ├── GA │ │ │ ├── Crossover │ │ │ │ ├── General.py │ │ │ │ ├── GeneralPoint.py │ │ │ │ ├── Point.py │ │ │ │ ├── TwoPoint.py │ │ │ │ ├── Uniform.py │ │ │ │ └── __init__.py │ │ │ ├── Evolver.py │ │ │ ├── Mutation │ │ │ │ ├── General.py │ │ │ │ ├── Simple.py │ │ │ │ └── __init__.py │ │ │ ├── Organism.py │ │ │ ├── Repair │ │ │ │ ├── Stabilizing.py │ │ │ │ └── __init__.py │ │ │ ├── Selection │ │ │ │ ├── Abstract.py │ │ │ │ ├── Diversity.py │ │ │ │ ├── RouletteWheel.py │ │ │ │ ├── Tournament.py │ │ │ │ └── __init__.py │ │ │ └── __init__.py │ │ ├── GenBank │ │ │ ├── LocationParser.py │ │ │ ├── Record.py │ │ │ ├── Scanner.py │ │ │ ├── __init__.py │ │ │ └── utils.py │ │ ├── Geo │ │ │ ├── Record.py │ │ │ └── __init__.py │ │ ├── Graphics │ │ │ ├── BasicChromosome.py │ │ │ ├── Comparative.py │ │ │ ├── DisplayRepresentation.py │ │ │ ├── Distribution.py │ │ │ ├── GenomeDiagram │ │ │ │ ├── _AbstractDrawer.py │ │ │ │ ├── _CircularDrawer.py │ │ │ │ ├── _Colors.py │ │ │ │ ├── _Diagram.py │ │ │ │ ├── _Feature.py │ │ │ │ ├── _FeatureSet.py │ │ │ │ ├── _Graph.py │ │ │ │ ├── _GraphSet.py │ │ │ │ ├── _LinearDrawer.py │ │ │ │ ├── _Track.py │ │ │ │ └── __init__.py │ │ │ └── __init__.py │ │ ├── HMM │ │ │ ├── DynamicProgramming.py │ │ │ ├── MarkovModel.py │ │ │ ├── Trainer.py │ │ │ ├── Utilities.py │ │ │ └── __init__.py │ │ ├── HotRand.py │ │ ├── Index.py │ │ ├── KDTree │ │ │ ├── KDTree.py │ │ │ ├── _CKDTree.py │ │ │ └── __init__.py │ │ ├── KEGG │ │ │ ├── Compound │ │ │ │ └── __init__.py │ │ │ ├── Enzyme │ │ │ │ └── __init__.py │ │ │ ├── Map │ │ │ │ └── __init__.py │ │ │ └── __init__.py │ │ ├── LogisticRegression.py │ │ ├── MarkovModel.py │ │ ├── MaxEntropy.py │ │ ├── Medline │ │ │ └── __init__.py │ │ ├── Motif │ │ │ ├── Applications │ │ │ │ ├── _AlignAce.py │ │ │ │ └── __init__.py │ │ │ ├── Parsers │ │ │ │ ├── AlignAce.py │ │ │ │ ├── MAST.py │ │ │ │ ├── MEME.py │ │ │ │ └── __init__.py │ │ │ ├── Thresholds.py │ │ │ ├── _Motif.py │ │ │ ├── __init__.py │ │ │ └── _pwm.py │ │ ├── NMR │ │ │ ├── NOEtools.py │ │ │ ├── __init__.py │ │ │ └── xpktools.py │ │ ├── NaiveBayes.py │ │ ├── NeuralNetwork │ │ │ ├── BackPropagation │ │ │ │ ├── Layer.py │ │ │ │ ├── Network.py │ │ │ │ └── __init__.py │ │ │ ├── Gene │ │ │ │ ├── Motif.py │ │ │ │ ├── Pattern.py │ │ │ │ ├── Schema.py │ │ │ │ ├── Signature.py │ │ │ │ └── __init__.py │ │ │ ├── StopTraining.py │ │ │ ├── Training.py │ │ │ └── __init__.py │ │ ├── Nexus │ │ │ ├── Nexus.py │ │ │ ├── Nodes.py │ │ │ ├── Trees.py │ │ │ ├── __init__.py │ │ │ └── cnexus.py │ │ ├── PDB │ │ │ ├── AbstractPropertyMap.py │ │ │ ├── Atom.py │ │ │ ├── Chain.py │ │ │ ├── DSSP.py │ │ │ ├── Dice.py │ │ │ ├── Entity.py │ │ │ ├── FragmentMapper.py │ │ │ ├── HSExposure.py │ │ │ ├── MMCIF2Dict.py │ │ │ ├── MMCIFParser.py │ │ │ ├── Model.py │ │ │ ├── NACCESS.py │ │ │ ├── NeighborSearch.py │ │ │ ├── PDBExceptions.py │ │ │ ├── PDBIO.py │ │ │ ├── PDBList.py │ │ │ ├── PDBParser.py │ │ │ ├── PSEA.py │ │ │ ├── Polypeptide.py │ │ │ ├── Residue.py │ │ │ ├── ResidueDepth.py │ │ │ ├── Selection.py │ │ │ ├── Structure.py │ │ │ ├── StructureAlignment.py │ │ │ ├── StructureBuilder.py │ │ │ ├── Superimposer.py │ │ │ ├── Vector.py │ │ │ ├── __init__.py │ │ │ ├── mmCIF │ │ │ │ └── __init__.py │ │ │ └── parse_pdb_header.py │ │ ├── ParserSupport.py │ │ ├── Parsers │ │ │ ├── __init__.py │ │ │ └── spark.py │ │ ├── Pathway │ │ │ ├── Rep │ │ │ │ ├── Graph.py │ │ │ │ ├── HashSet.py │ │ │ │ ├── MultiGraph.py │ │ │ │ └── __init__.py │ │ │ └── __init__.py │ │ ├── Phylo │ │ │ ├── Applications │ │ │ │ ├── _Phyml.py │ │ │ │ └── __init__.py │ │ │ ├── BaseTree.py │ │ │ ├── Newick.py │ │ │ ├── NewickIO.py │ │ │ ├── NexusIO.py │ │ │ ├── PAML │ │ │ │ ├── __init__.py │ │ │ │ ├── _paml.py │ │ │ │ ├── _parse_baseml.py │ │ │ │ ├── _parse_codeml.py │ │ │ │ ├── _parse_yn00.py │ │ │ │ ├── baseml.py │ │ │ │ ├── chi2.py │ │ │ │ ├── codeml.py │ │ │ │ └── yn00.py │ │ │ ├── PhyloXML.py │ │ │ ├── PhyloXMLIO.py │ │ │ ├── __init__.py │ │ │ ├── _io.py │ │ │ ├── _sugar.py │ │ │ └── _utils.py │ │ ├── PopGen │ │ │ ├── Async │ │ │ │ ├── Local.py │ │ │ │ └── __init__.py │ │ │ ├── FDist │ │ │ │ ├── Async.py │ │ │ │ ├── Controller.py │ │ │ │ ├── Utils.py │ │ │ │ └── __init__.py │ │ │ ├── GenePop │ │ │ │ ├── Controller.py │ │ │ │ ├── EasyController.py │ │ │ │ ├── FileParser.py │ │ │ │ ├── LargeFileParser.py │ │ │ │ ├── Utils.py │ │ │ │ └── __init__.py │ │ │ ├── SimCoal │ │ │ │ ├── Async.py │ │ │ │ ├── Cache.py │ │ │ │ ├── Controller.py │ │ │ │ ├── Template.py │ │ │ │ ├── __init__.py │ │ │ │ └── data │ │ │ │ │ ├── bottle.par │ │ │ │ │ ├── decline_lambda.par │ │ │ │ │ ├── decline_split.par │ │ │ │ │ ├── island.par │ │ │ │ │ ├── simple.par │ │ │ │ │ ├── split_island.par │ │ │ │ │ ├── split_ssm_1d.par │ │ │ │ │ ├── split_ssm_2d.par │ │ │ │ │ ├── ssm_1d.par │ │ │ │ │ └── ssm_2d.par │ │ │ └── __init__.py │ │ ├── Restriction │ │ │ ├── PrintFormat.py │ │ │ ├── RanaConfig.py │ │ │ ├── Restriction.py │ │ │ ├── Restriction_Dictionary.py │ │ │ ├── _Update │ │ │ │ ├── RestrictionCompiler.py │ │ │ │ ├── Update.py │ │ │ │ └── __init__.py │ │ │ └── __init__.py │ │ ├── SCOP │ │ │ ├── Cla.py │ │ │ ├── Des.py │ │ │ ├── Dom.py │ │ │ ├── Hie.py │ │ │ ├── Raf.py │ │ │ ├── Residues.py │ │ │ └── __init__.py │ │ ├── SVDSuperimposer │ │ │ ├── SVDSuperimposer.py │ │ │ └── __init__.py │ │ ├── Search.py │ │ ├── Seq.py │ │ ├── SeqFeature.py │ │ ├── SeqIO │ │ │ ├── AbiIO.py │ │ │ ├── AceIO.py │ │ │ ├── FastaIO.py │ │ │ ├── IgIO.py │ │ │ ├── InsdcIO.py │ │ │ ├── Interfaces.py │ │ │ ├── PhdIO.py │ │ │ ├── PirIO.py │ │ │ ├── QualityIO.py │ │ │ ├── SeqXmlIO.py │ │ │ ├── SffIO.py │ │ │ ├── SwissIO.py │ │ │ ├── TabIO.py │ │ │ ├── UniprotIO.py │ │ │ ├── __init__.py │ │ │ ├── _convert.py │ │ │ └── _index.py │ │ ├── SeqRecord.py │ │ ├── SeqUtils │ │ │ ├── CheckSum.py │ │ │ ├── CodonUsage.py │ │ │ ├── CodonUsageIndices.py │ │ │ ├── IsoelectricPoint.py │ │ │ ├── MeltingTemp.py │ │ │ ├── ProtParam.py │ │ │ ├── ProtParamData.py │ │ │ ├── __init__.py │ │ │ └── lcc.py │ │ ├── Sequencing │ │ │ ├── Ace.py │ │ │ ├── Applications │ │ │ │ ├── _Novoalign.py │ │ │ │ └── __init__.py │ │ │ ├── Phd.py │ │ │ └── __init__.py │ │ ├── Statistics │ │ │ ├── __init__.py │ │ │ └── lowess.py │ │ ├── SubsMat │ │ │ ├── FreqTable.py │ │ │ ├── MatrixInfo.py │ │ │ └── __init__.py │ │ ├── SwissProt │ │ │ ├── KeyWList.py │ │ │ └── __init__.py │ │ ├── UniGene │ │ │ ├── UniGene.py │ │ │ └── __init__.py │ │ ├── Wise │ │ │ ├── __init__.py │ │ │ ├── dnal.py │ │ │ └── psw.py │ │ ├── __init__.py │ │ ├── _py3k.py │ │ ├── cpairwise2.py │ │ ├── kNN.py │ │ ├── pairwise2.py │ │ ├── trie.py │ │ └── triefind.py │ ├── README.rst │ ├── last.py │ ├── last_helper.py │ ├── lastal │ ├── lastdb │ ├── lastex │ ├── patch │ └── test │ │ ├── 4241-CDS.fasta │ │ ├── 4241-CDS.prj │ │ ├── 4241-CDS0.bck │ │ ├── 4241-CDS0.des │ │ ├── 4241-CDS0.prj │ │ ├── 4241-CDS0.sds │ │ ├── 4241-CDS0.ssp │ │ ├── 4241-CDS0.suf │ │ ├── 4241-CDS0.tis │ │ ├── 4242-CDS.fasta │ │ ├── README │ │ └── test.out ├── nwserver.py ├── quota-alignment │ ├── .gitignore │ ├── README.rst │ ├── box_utils.py │ ├── cluster_utils.py │ ├── grimm │ ├── grouper.py │ ├── lp_solvers.py │ ├── maf_utils.py │ ├── quota_align.py │ ├── run.sh │ └── scripts │ │ ├── bed_utils.py │ │ ├── blast_plot.py │ │ ├── blast_to_raw.py │ │ ├── gff_to_bed.py │ │ ├── lis.py │ │ ├── qa_plot.py │ │ ├── qa_to_pairs.py │ │ ├── run.sh │ │ └── synteny_score.py ├── snp_search │ ├── Makefile │ ├── snp_search │ └── snp_search.cpp └── spa.pl ├── bower.json ├── make_perl.sh ├── modules.txt ├── modules ├── Accessory │ ├── MANIFEST │ ├── Makefile.PL │ ├── lib │ │ └── CoGe │ │ │ └── Accessory │ │ │ ├── Annotation.pm │ │ │ ├── BisQue.pm │ │ │ ├── Entrez.pm │ │ │ ├── GBlite.pm │ │ │ ├── GenBank.pm │ │ │ ├── GenBank │ │ │ └── Feature.pm │ │ │ ├── GenomeThreader_report.pm │ │ │ ├── IRODS.pm │ │ │ ├── SynMap_report.pm │ │ │ ├── TDS.pm │ │ │ ├── Tile │ │ │ └── Cache.pm │ │ │ ├── Utils.pm │ │ │ ├── Web.pm │ │ │ ├── bl2seq_report.pm │ │ │ ├── blast_report.pm │ │ │ ├── blastz_report.pm │ │ │ ├── blastz_report │ │ │ ├── segment.pm │ │ │ └── seq.pm │ │ │ ├── chaos_report.pm │ │ │ ├── dialign_report.pm │ │ │ ├── dialign_report │ │ │ └── anchors.pm │ │ │ ├── genetic_code.pm │ │ │ ├── histogram.pm │ │ │ ├── lagan_report.pm │ │ │ └── parse_report │ │ │ └── HSP.pm │ └── t │ │ ├── 001_load.t │ │ └── url.t ├── Algos │ ├── Codeml │ │ ├── MANIFEST │ │ ├── Makefile.PL │ │ ├── lib │ │ │ └── CoGe │ │ │ │ └── Algos │ │ │ │ └── Codeml.pm │ │ └── t │ │ │ ├── 001_load.t │ │ │ └── test.phy │ ├── KsCalc │ │ ├── MANIFEST │ │ ├── Makefile.PL │ │ ├── lib │ │ │ └── CoGe │ │ │ │ └── Algos │ │ │ │ └── KsCalc.pm │ │ ├── scripts │ │ │ └── test.pl │ │ └── t │ │ │ └── 001_load.t │ ├── Makefile.PL │ ├── Pairwise │ │ ├── MANIFEST │ │ ├── Makefile.PL │ │ ├── lib │ │ │ └── CoGe │ │ │ │ └── Algos │ │ │ │ └── Pairwise.pm │ │ ├── scripts │ │ │ ├── convert_matrix.pl │ │ │ └── test.pl │ │ └── t │ │ │ └── 001_load.t │ └── PopGen │ │ ├── MANIFEST │ │ ├── Makefile.PL │ │ └── lib │ │ └── CoGe │ │ └── Algos │ │ └── PopGen │ │ ├── Diversity.pm │ │ ├── FileFormats.pm │ │ └── Stats.pm ├── Core │ ├── MANIFEST │ ├── Makefile.PL │ └── lib │ │ └── CoGe │ │ └── Core │ │ ├── Chromosomes.pm │ │ ├── Experiment.pm │ │ ├── Favorites.pm │ │ ├── Feature.pm │ │ ├── Genome.pm │ │ ├── Item.pm │ │ ├── Metadata.pm │ │ ├── Notebook.pm │ │ ├── Search.pm │ │ ├── Sequence.pm │ │ └── Storage.pm ├── Database │ ├── MANIFEST │ ├── Makefile.PL │ ├── lib │ │ ├── CoGeDBI.pm │ │ ├── CoGeX.pm │ │ ├── CoGeX │ │ │ ├── Result │ │ │ │ ├── AnnotationType.pm │ │ │ │ ├── AnnotationTypeGroup.pm │ │ │ │ ├── DataSource.pm │ │ │ │ ├── Dataset.pm │ │ │ │ ├── DatasetConnector.pm │ │ │ │ ├── Experiment.pm │ │ │ │ ├── ExperimentAnnotation.pm │ │ │ │ ├── ExperimentType.pm │ │ │ │ ├── ExperimentTypeConnector.pm │ │ │ │ ├── FavoriteConnector.pm │ │ │ │ ├── Feature.pm │ │ │ │ ├── FeatureAnnotation.pm │ │ │ │ ├── FeatureName.pm │ │ │ │ ├── FeatureType.pm │ │ │ │ ├── Genome.pm │ │ │ │ ├── GenomeAnnotation.pm │ │ │ │ ├── GenomicSequence.pm │ │ │ │ ├── GenomicSequenceType.pm │ │ │ │ ├── Image.pm │ │ │ │ ├── Job.pm │ │ │ │ ├── List.pm │ │ │ │ ├── ListAnnotation.pm │ │ │ │ ├── ListConnector.pm │ │ │ │ ├── ListType.pm │ │ │ │ ├── Location.pm │ │ │ │ ├── Log.pm │ │ │ │ ├── Organism.pm │ │ │ │ ├── Role.pm │ │ │ │ ├── User.pm │ │ │ │ ├── UserConnector.pm │ │ │ │ ├── UserGroup.pm │ │ │ │ ├── UserSession.pm │ │ │ │ └── WebPreferences.pm │ │ │ └── ResultSet │ │ │ │ ├── Dataset.pm │ │ │ │ ├── Experiment.pm │ │ │ │ ├── Feature.pm │ │ │ │ ├── FeatureAnnotation.pm │ │ │ │ ├── FeatureName.pm │ │ │ │ ├── Genome.pm │ │ │ │ ├── GenomicSequenceType.pm │ │ │ │ ├── List.pm │ │ │ │ └── Organism.pm │ │ ├── DBIxProfiler.pm │ │ └── FastBit.pm │ └── t │ │ ├── 001_load.t │ │ ├── 002_feature_by_id.t │ │ ├── 003_organism_by_name.t │ │ ├── 004_features_from_dataset.t │ │ ├── 005_feature_by_organism.t │ │ ├── 006_genome_sequence_datasetid.t │ │ ├── 007_protein_sequence_from_feature.t │ │ ├── 008_genomic_sequence_from_feature.t │ │ ├── 009_feature_from_dataset_repeated.t │ │ ├── 010_features_in_region.t │ │ ├── 011_features_in_region_split.t │ │ ├── 012_feature_in_region_locs.t │ │ ├── 013_features_in_region_ecoli.t │ │ ├── 014_get_seq.t │ │ ├── asdf.fasta │ │ ├── asdf.fasta.nhr │ │ ├── asdf.fasta.nin │ │ ├── asdf.fasta.nnd │ │ ├── asdf.fasta.nni │ │ ├── asdf.fasta.nsd │ │ ├── asdf.fasta.nsi │ │ └── asdf.fasta.nsq ├── ECNCS │ ├── MANIFEST │ ├── Makefile.PL │ ├── lib │ │ └── CoGe │ │ │ ├── ECNCS.pm │ │ │ └── ECNCS │ │ │ ├── DB.pm │ │ │ └── DB │ │ │ ├── Algorithm.pm │ │ │ ├── Algorithm_data.pm │ │ │ ├── Algorithm_run.pm │ │ │ ├── Author.pm │ │ │ ├── Classification.pm │ │ │ ├── Data_mask.pm │ │ │ ├── Ecncs.pm │ │ │ ├── Location.pm │ │ │ ├── Spike.pm │ │ │ └── Status.pm │ └── t │ │ ├── 001_load.t │ │ ├── 002_load.t │ │ ├── 003_load.t │ │ ├── 004_load.t │ │ ├── 005_load.t │ │ ├── 006_load.t │ │ ├── 007_load.t │ │ ├── 008_load.t │ │ ├── 009_load.t │ │ ├── 010_load.t │ │ ├── 011_load.t │ │ └── 012_load.t ├── Exception │ ├── MANIFEST │ ├── Makefile.PL │ └── lib │ │ └── CoGe │ │ └── Exception │ │ ├── AccessDenied.pm │ │ ├── Generic.pm │ │ ├── ItemNotFound.pm │ │ └── MissingField.pm ├── Graphics │ ├── MANIFEST │ ├── Makefile.PL │ ├── lib │ │ └── CoGe │ │ │ ├── Graphics.pm │ │ │ └── Graphics │ │ │ ├── Chromosome.pm │ │ │ ├── Feature.pm │ │ │ ├── Feature │ │ │ ├── AminoAcid.pm │ │ │ ├── Block.pm │ │ │ ├── Circle.pm │ │ │ ├── Diamond.pm │ │ │ ├── Domain.pm │ │ │ ├── Exon_motifs.pm │ │ │ ├── Flag.pm │ │ │ ├── GAGA.pm │ │ │ ├── GBox.pm │ │ │ ├── Gene.pm │ │ │ ├── HSP.pm │ │ │ ├── Link.pm │ │ │ ├── NucTide.pm │ │ │ ├── Outline.pm │ │ │ ├── Quant.pm │ │ │ └── Sigma54.pm │ │ │ └── GenomeView.pm │ └── t │ │ ├── 001_load.t │ │ └── 002_load.t ├── JEX │ ├── MANIFEST │ ├── Makefile.PL │ └── lib │ │ └── CoGe │ │ └── JEX │ │ ├── Jex.pm │ │ └── Workflow.pm ├── MANIFEST ├── Makefile.PL ├── Pipelines │ ├── MANIFEST │ ├── Makefile.PL │ └── lib │ │ └── CoGe │ │ ├── Builder │ │ ├── Alignment │ │ │ ├── Aligner.pm │ │ │ ├── BWA.pm │ │ │ ├── BWAmeth.pm │ │ │ ├── Bismark.pm │ │ │ ├── Bowtie.pm │ │ │ ├── GSNAP.pm │ │ │ ├── HISAT2.pm │ │ │ └── Tophat.pm │ │ ├── Buildable.pm │ │ ├── CommonTasks.pm │ │ ├── Data │ │ │ └── Extractor.pm │ │ ├── Export │ │ │ ├── Experiment.pm │ │ │ ├── Fasta.pm │ │ │ ├── Genome.pm │ │ │ └── Gff.pm │ │ ├── Expression │ │ │ ├── Analyzer.pm │ │ │ └── Cufflinks.pm │ │ ├── Load │ │ │ ├── Annotation.pm │ │ │ ├── BatchExperiment.pm │ │ │ ├── Experiment.pm │ │ │ ├── Genome.pm │ │ │ └── SRA.pm │ │ ├── Methylation │ │ │ ├── Analyzer.pm │ │ │ ├── BWAmeth.pm │ │ │ ├── Bismark.pm │ │ │ └── Metaplot.pm │ │ ├── PopGen │ │ │ └── SummaryStats.pm │ │ ├── Protein │ │ │ └── ChIPseq.pm │ │ ├── SNP │ │ │ ├── Analyzer.pm │ │ │ ├── CoGeSNPs.pm │ │ │ ├── GATK.pm │ │ │ ├── Merge.pm │ │ │ ├── Platypus.pm │ │ │ └── Samtools.pm │ │ ├── Tools │ │ │ ├── CoGeBlast.pm │ │ │ ├── PercentGCAT.pm │ │ │ ├── Pseudoassembly.pm │ │ │ ├── SynMap.pm │ │ │ ├── SynMap3D.pm │ │ │ └── SynMapN.pm │ │ └── Trimming │ │ │ ├── BBDuk.pm │ │ │ ├── Cutadapt.pm │ │ │ ├── TrimGalore.pm │ │ │ ├── Trimmer.pm │ │ │ └── Trimmomatic.pm │ │ ├── Factory │ │ ├── PipelineFactory.pm │ │ └── RequestFactory.pm │ │ └── Request │ │ ├── CoGeBlast.pm │ │ ├── Empty.pm │ │ ├── Experiment.pm │ │ ├── ExperimentAnalysis.pm │ │ ├── Genome.pm │ │ ├── NExperiments.pm │ │ ├── NGenomes.pm │ │ ├── Request.pm │ │ └── TwoGenomes.pm └── Services │ ├── MANIFEST │ ├── Makefile.PL │ └── lib │ └── CoGe │ └── Services │ ├── API │ ├── Annotations.pm │ ├── Dataset.pm │ ├── Download.pm │ ├── Experiment.pm │ ├── FTP.pm │ ├── Feature.pm │ ├── Genome.pm │ ├── Group.pm │ ├── IRODS.pm │ ├── JBrowse │ │ ├── Annotation.pm │ │ ├── Configuration.pm │ │ ├── Experiment.pm │ │ ├── GCcontent.pm │ │ ├── Genome.pm │ │ ├── Search.pm │ │ └── Sequence.pm │ ├── Job.pm │ ├── Log.pm │ ├── Notebook.pm │ ├── Organism.pm │ ├── Search.pm │ ├── Sequence.pm │ └── User.pm │ ├── Auth.pm │ └── Error.pm ├── old ├── Blank.pl ├── Blank.tmpl ├── CoGeBlast_old.pl ├── CoGe_faq.html ├── CodeFusion.pl ├── CodeFusion.tmpl ├── Experiments.pl ├── Experiments.tmpl ├── FeatID2Names.pl ├── FeatListView.pl ├── FeatListView.tmpl ├── GenomeAlign.pl ├── GenomeAlign.tmpl ├── GenomeAlign │ ├── mauve_alignment.pl │ └── progressiveMauve-muscleMatrix ├── GenomePNG.pl ├── GenomeView_old.pl ├── GenomeView_old.tmpl ├── Genomes.pl ├── Genomes.tmpl ├── GetSequence.pl ├── Groups.pl ├── Groups.tmpl ├── History.pl ├── History.tmpl ├── Jobs.pl ├── Jobs.tmpl ├── MSAView.pl ├── MSAView.tmpl ├── MotifFind.pl ├── MotifFind.tmpl ├── MotifView.pl ├── MotifView.tmpl ├── MotifViewDev.pl ├── Notebooks.pl ├── Notebooks.tmpl ├── SeqType.pl ├── SeqType.tmpl ├── Sources.pl ├── Sources.tmpl ├── SynFind_old.pl ├── SynView-papaya.pl ├── TreeView.pl ├── TreeView.tmpl ├── UserGraph.pl ├── UserGraph.tmpl ├── fastbit_query.pl ├── get_org_list.pl ├── three_dots_merge.py └── tiler.pl ├── resources ├── adapters.fa └── experiment.README.txt ├── scripts ├── README ├── add_items_to_notebook.pl ├── add_metadata_to_results.pl ├── add_workflow_result.pl ├── backup │ ├── audit_backup.pl │ ├── backup.sh │ ├── fetch.sh │ └── sync_jex_db.pl ├── chipseq │ └── homer_peaks_to_csv.pl ├── clean_up_bad_synmap.pl ├── cleanup │ ├── cleanup_staging.pl │ ├── compress_experiment_files.pl │ └── delete_genome_derivative_files.pl ├── coge2bed.pl ├── coge2bed.v2.pl ├── coge_gff.pl ├── copy_genome │ ├── copy_load_mask_genome.pl │ ├── hard_mask.pl │ ├── merge_genomes.pl │ ├── replicate_annotations.pl │ └── windowmasker ├── create_notebook.pl ├── cutadapt.pl ├── diags │ ├── add_annotations_using_dag_file.pl │ ├── clean_blastn.pl │ ├── clean_condensed.pl │ ├── clean_genomic.pl │ ├── clean_old_comparisons.pl │ ├── clean_old_filtered.pl │ ├── clean_old_images.pl │ ├── clean_old_ks_files.pl │ ├── clean_old_running.pl │ ├── clean_old_sqlite.pl │ ├── clean_qac.pl │ ├── compress_stuff.pl │ ├── gen_pairs_file.pl │ └── scrub_diags_directory.pl ├── export_NCBI_TBL.pl ├── export_experiment_or_genome.pl ├── export_features_by_type.pl ├── export_to_gff.pl ├── fasta_reheader.pl ├── filter_sam.pl ├── fix_chromosome_id.pl ├── ftp.pl ├── genbank_genome_loader.pl ├── generate_chr_fasta.pl ├── generate_results.pl ├── gff_to_bed.pl ├── irods.pl ├── link_results.pl ├── load_all_ncbi_genomes.pl ├── load_all_ncbi_microbial_complete_genomes.pl ├── load_annotation.pl ├── load_annotation_ensembl_GTF.pl ├── load_batch.pl ├── load_experiment.pl ├── load_genome.pl ├── methylation │ ├── coge-import_bismark.py │ ├── coge-import_pileometh.py │ ├── fix_chromosome_id.py │ └── makeMetaplot.pl ├── migration │ ├── index_genomes.pl │ └── update_exp_count.pl ├── normalize_bed.pl ├── old │ ├── BGF_annotation_loader.pl │ ├── add_chr_to_dataset.pl │ ├── add_dataset_to_dataset_group.pl │ ├── add_gene_features_to_dataset.pl │ ├── add_user.pl │ ├── break_fasta_2_chr.pl │ ├── check_ncbi_genome_lengths.pl │ ├── clone_dataset.pl │ ├── clone_empty_genome.pl │ ├── code_fusion_for_org.pl │ ├── codon_usage.pl │ ├── coge_mauve_alignment.pl │ ├── convert_to_gene_order.pl │ ├── create_dataset.pl │ ├── create_dataset_group.pl │ ├── dataset_summary_for_organism.pl │ ├── delete_dataset.pl │ ├── delete_dataset_group.pl │ ├── delete_features.pl │ ├── delete_features_for_dataset.pl │ ├── delete_features_for_organism.pl │ ├── delete_organism.pl │ ├── delete_organisms_with_no_dataset_groups.pl │ ├── dotplot_dots.pl │ ├── export_to_bed.pl │ ├── export_to_flat.pl │ ├── export_to_simple.pl │ ├── fasta_genome_loader.pl │ ├── feature_merge.pl │ ├── find_SNPs.pl │ ├── find_datasets_with_no_sequence.pl │ ├── find_duplicate_datasets.pl │ ├── find_gene_annotations.pl │ ├── find_organisms_with_no_dataset.pl │ ├── find_tRNAs_with_aragorn.pl │ ├── fix_duplicate_organism_entries.pl │ ├── fix_feature_names.pl │ ├── fix_locations_for_organism.pl │ ├── gen_fasta_file_for_CDS_for_blast.pl │ ├── genbank_contig_loader.pl │ ├── genbank_genome_loader.pl │ ├── genbank_genome_loader_new.pl │ ├── generate_dataset_groups.pl │ ├── get_by_name.pl │ ├── get_codon_usage_for_org.pl │ ├── get_features_for_genome.pl │ ├── get_features_for_organism.pl │ ├── get_features_locs.pl │ ├── get_genome_for_organism.pl │ ├── get_genomic_sequence_for_organism.pl │ ├── get_org_list.pl │ ├── get_tRNA_usage_for_org.pl │ ├── get_wobble_count_for_org.pl │ ├── gff_annotation_loader.pl │ ├── gff_annotation_loader_msu_rice.pl │ ├── gff_annotation_loader_phytozome.pl │ ├── load_TIGR_XML.pl │ ├── load_additional_annotations.pl │ ├── load_all_ncbi_genomes_bioprojects.pl │ ├── load_custom_genbank.pl │ ├── load_domains.pl │ ├── load_genome_and_copy_features.pl │ ├── load_jgi_go.pl │ ├── load_tRNA_scan_models.pl │ ├── load_tab_delimited_annotation.pl │ ├── load_tabdelim_features_for_dataset.pl │ ├── migrate_coge5.5.pl │ ├── migrate_coge5.pl │ ├── migrate_genomes.pl │ ├── polyMFind.pl │ ├── poplar │ │ ├── fix_poplar.pl │ │ ├── new_names_to_old.pl │ │ ├── poplar_order.pl │ │ └── poplar_sequence.pl │ ├── prodigal_gff_annotation_loader.pl │ ├── qteller.pl │ ├── remove_duplicate_ncbi_datasets.pl │ ├── replicate_annotations.pl │ ├── replicate_dataset_features.pl │ ├── replicate_genome.pl │ ├── replicate_genome_between_coge_installations.pl │ ├── simle2sqlite.py │ ├── syntenic_annotation_lift_over.pl │ ├── update_feature_names_to_add_primary_name.pl │ └── update_ncbi_dataset_links.pl ├── parse_cufflinks.py ├── percent_gc_at.py ├── pileup_SNPs.pl ├── pileup_to_bed.pl ├── popgen │ └── sumstats.pl ├── process_fasta.pl ├── query_analytics.py ├── send_email.pl ├── sort_fasta.pl ├── synmap │ ├── blast2bed.pl │ ├── dag_tools.py │ ├── dotplot.py │ ├── dotplot_dots.py │ ├── fractionation_bias.py │ ├── gene_order.py │ ├── generate_fasta.pl │ ├── gevo_links.pl │ ├── kscalc.pl │ ├── order_contigs_to_chromosome.pl │ ├── process_dups.pl │ ├── quota_align_coverage.pl │ ├── quota_align_merge.pl │ ├── svgfig.py │ └── synmerge_3.py ├── system_stats.pl ├── tophat.pl ├── utils │ ├── alert_on_filesystem_full.pl │ ├── audit_coge5.5.pl │ ├── audit_datasets.pl │ ├── check_coge_data_dirs.pl │ ├── gen_fake_data.pl │ └── update-jobs.py └── validate_fastq.pl ├── setup.sh ├── tests ├── JEX │ └── validate_workflow.pl └── api │ ├── cogeblast.robot │ ├── data │ ├── experiment_add.json │ ├── experiment_fetch.json │ ├── genome_add.json │ ├── genome_add_16911.json │ ├── genome_fetch.json │ ├── load_annotation.json │ ├── notebook_add.json │ └── notebook_fetch.json │ ├── experiments.robot │ ├── export.robot │ ├── genomes.robot │ ├── notebooks.robot │ ├── organisms.robot │ ├── performance.robot │ ├── resource.robot │ ├── run_tests.sh │ └── search.robot ├── tmpl ├── Account.tmpl ├── Admin.tmpl ├── CoGeAlign.tmpl ├── CoGeBlast.tmpl ├── CoGeBlast_coge.tmpl ├── CoGeBlast_ncbi.tmpl ├── CodeOn.tmpl ├── ExperimentList.tmpl ├── ExperimentView.tmpl ├── FastaView.tmpl ├── FeatList.tmpl ├── FeatMap.tmpl ├── FeatView.tmpl ├── GEvo-old.tmpl ├── GEvo.tmpl ├── GEvo_direct.tmpl ├── GenomeInfo.tmpl ├── GenomeList.tmpl ├── GenomeView.tmpl ├── GroupView.tmpl ├── HSPView.tmpl ├── LoadAnnotation.tmpl ├── LoadBatch.tmpl ├── LoadExperiment.tmpl ├── LoadGenome.tmpl ├── MatrixView.tmpl ├── NotebookView.tmpl ├── OrganismView.tmpl ├── PopGen.tmpl ├── Project.tmpl ├── SearchResults.tmpl ├── SeqView.tmpl ├── SynFind.tmpl ├── SynMap.tmpl ├── SynMap3D.tmpl ├── SynMapN.tmpl ├── SynSub.tmpl ├── Taxonomy.tmpl ├── User.tmpl ├── box.tmpl ├── embedded_page.tmpl ├── footer.tmpl ├── generic_page.tmpl ├── header.tmpl ├── header_includes.tmpl ├── index.tmpl ├── partials │ ├── organism_menu.tmpl │ ├── synmap_results.tmpl │ └── user_common.tmpl ├── tRNAView.tmpl └── widgets │ ├── AdminOnly.tmpl │ ├── Annotations.tmpl │ ├── Certified.tmpl │ ├── Dotplot.tmpl │ ├── FileSelect.tmpl │ ├── GenomeSelect.tmpl │ ├── JBrowse.tmpl │ ├── Login.tmpl │ ├── Overlay.tmpl │ ├── Progress.tmpl │ ├── Spinner.tmpl │ ├── Splash.tmpl │ ├── Wizard.tmpl │ ├── experiment_info_table.tmpl │ └── pipeline-options.tmpl └── web ├── .htaccess ├── Account.pl ├── Admin.pl ├── CoGeAlign.pl ├── CoGeBlast.pl ├── CodeOn.pl ├── DirSelect.pl ├── DisplayMessage.pl ├── Error.pl ├── ExperimentList.pl ├── ExperimentView.pl ├── FastaView.pl ├── FeatAnno.pl ├── FeatList.pl ├── FeatMap.pl ├── FeatView.pl ├── GEvo-old.pl ├── GEvo.pl ├── GEvo_direct.pl ├── GenomeInfo.pl ├── GenomeList.pl ├── GenomeView.pl ├── GroupView.pl ├── HSPView.pl ├── LoadAnnotation.pl ├── LoadBatch.pl ├── LoadExperiment.pl ├── LoadGenome.pl ├── MatrixView.pl ├── NotebookView.pl ├── OrganismView.pl ├── PopGen.pl ├── Project.pl ├── SSWAP ├── CoGe ├── CoGe.json ├── README └── resources │ └── FastaView │ ├── FastaView │ ├── FastaView.json │ └── README ├── SearchResults.pl ├── SeqView.pl ├── SynFind.pl ├── SynMap.pl ├── SynMap3D.pl ├── SynMapN.pl ├── SynSub.pl ├── Taxonomy.pl ├── User.pl ├── ViennaFold.pl ├── bisque_image.pl ├── bisque_viewer.pl ├── coge2bed.pl ├── coge_feature_types.sql ├── coge_mysql_schema.sql ├── css ├── coge-spinner.css ├── coge.css ├── colorpicker.css ├── dataTables.css ├── glyphicons.css ├── layout.css └── ui.tabs.css ├── export_NCBI_TBL.pl ├── favicon.ico ├── get_percent_gc_at_for_chr.pl ├── get_percent_gc_at_for_chr_json.pl ├── get_seq_for_chr.pl ├── get_seqs_for_feattype_for_genome.pl ├── gobe ├── docs │ └── textfield.html ├── flash │ ├── Gobe.hx │ ├── HSP.hx │ ├── gobe.hxml │ ├── gobe.swf │ ├── hxjson2-old │ │ ├── JSON.hx │ │ ├── JSONDecoder.hx │ │ ├── JSONEncoder.hx │ │ ├── JSONParseError.hx │ │ ├── JSONToken.hx │ │ └── JSONTokenizer.hx │ ├── hxjson2 │ │ ├── .svn-old │ │ │ ├── all-wcprops │ │ │ ├── entries │ │ │ └── text-base │ │ │ │ ├── JSON.hx.svn-base │ │ │ │ ├── JSONDecoder.hx.svn-base │ │ │ │ ├── JSONEncoder.hx.svn-base │ │ │ │ ├── JSONParseError.hx.svn-base │ │ │ │ ├── JSONToken.hx.svn-base │ │ │ │ └── JSONTokenizer.hx.svn-base │ │ ├── JSON.hx │ │ ├── JSONDecoder.hx │ │ ├── JSONEncoder.hx │ │ ├── JSONParseError.hx │ │ ├── JSONToken.hx │ │ └── JSONTokenizer.hx │ └── service.wsgi ├── gobe.py ├── index.html ├── new_images.sh ├── predict_cns.py ├── predict_cns.pyc ├── query.pl ├── static │ ├── clear_button.gif │ ├── close_button.gif │ ├── gobe-new.js │ ├── gobe.js │ ├── minus.gif │ ├── plus.gif │ ├── save.gif │ └── swfobject │ │ ├── .svn-old │ │ ├── all-wcprops │ │ ├── entries │ │ ├── prop-base │ │ │ └── expressInstall.swf.svn-base │ │ └── text-base │ │ │ ├── expressInstall.swf.svn-base │ │ │ └── swfobject.js.svn-base │ │ ├── expressInstall.swf │ │ └── swfobject.js └── tmp │ ├── GEvo_WxUonWBr.log │ ├── GEvo_WxUonWBr.sqlite │ ├── GEvo_WxUonWBr_1.png │ ├── GEvo_WxUonWBr_2.png │ └── GEvo_WxUonWBr_3.png ├── image.pl ├── index.pl ├── jbrowse_conf.json ├── js ├── coge │ ├── colors.js │ ├── contentpanel.js │ ├── datagrid.js │ ├── entrez.js │ ├── exporter.js │ ├── file-select.js │ ├── infopanel.js │ ├── logout.js │ ├── newsfeed.js │ ├── progress.js │ ├── services.js │ ├── tocpanel.js │ ├── utils.js │ ├── wikifeed.js │ └── wizard.js ├── colorpicker.js ├── filterlist.js ├── fractbias_plotter.js ├── img │ ├── blank.gif │ ├── east-mini.png │ ├── layer-switcher-maximize.png │ ├── layer-switcher-minimize.png │ ├── slider.png │ ├── west-mini.png │ ├── zoom-minus-mini.png │ ├── zoom-plus-mini.png │ └── zoombar.png ├── jquery-ui-1.12.1.custom │ ├── AUTHORS.txt │ ├── LICENSE.txt │ ├── external │ │ └── jquery │ │ │ └── jquery.js │ ├── images │ │ ├── ui-icons_444444_256x240.png │ │ ├── ui-icons_555555_256x240.png │ │ ├── ui-icons_777620_256x240.png │ │ ├── ui-icons_777777_256x240.png │ │ ├── ui-icons_cc0000_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ ├── index.html │ ├── jquery-ui.css │ ├── jquery-ui.js │ ├── jquery-ui.min.js │ ├── jquery-ui.structure.css │ ├── jquery-ui.structure.min.css │ ├── jquery-ui.theme.css │ ├── jquery-ui.theme.min.css │ └── package.json ├── jquery.fileupload.js ├── jquery.tablesorter.2.0.3.js ├── jquery.tablesorter.pager.js ├── pages │ ├── admin.js │ ├── blast.js │ ├── experiment-view.js │ ├── genome-info.js │ ├── load-annotation.js │ ├── load-batch.js │ ├── load-experiment.js │ ├── load-genome.js │ ├── notebook-view.js │ ├── organism-view.js │ ├── project.js │ ├── search-results.js │ ├── synfind.js │ ├── synmap-3d.js │ ├── synmap.js │ ├── synmapn.js │ ├── user-common.js │ └── user.js ├── sswap.js ├── syn3d │ ├── VREffect_modified.js │ ├── WebVR_modified.js │ ├── modified_FlatOrbitControls.js │ ├── syn3d-0.2.js │ ├── syn3d-1.0.js │ ├── three-73.min.js │ ├── three-77.min.js │ └── threex.domevent.js ├── ui.tabs.js └── xhairs.js ├── picts ├── A.png ├── C.png ├── CoGe.svg ├── CoGeBlast.svg ├── CoGeCircuitLeaf1.svg ├── CoGePedia_icon.png ├── CoGe_logo_small.png ├── FeatView.svg ├── G.png ├── GEvo.svg ├── GenomeView.svg ├── GenomeView_GEvo-links.png ├── LoadExperiment.svg ├── LoadGenome.svg ├── LyonsLab-logo.png ├── Moore_Foundation.png ├── MotifView-logo.jpg ├── Opticon.ttf ├── Organism.svg ├── OrganismView.svg ├── PoweredbyCyverse_LogoSquare_0_0.png ├── SSWAP │ └── FastaView-SSWAP-logo.png ├── SynFind.svg ├── SynMap-inverse.svg ├── SynMap.svg ├── SynMap3d.svg ├── SynMap_AlternateColoration.svg ├── T.png ├── YouTube-icon-full_color.png ├── ajax-loader-large.gif ├── ajax-loader-medium.gif ├── ajax-loader.gif ├── animations │ ├── DNA_orbit_animated_small-side.gif │ ├── DNA_orbit_animated_small.gif │ ├── DNA_orbit_animated_small_half.gif │ ├── DNA_orbit_animated_small_third.gif │ ├── DNA_orbit_animated_small_two_third.gif │ ├── spinning_helix.gif │ └── spinning_helix_small.gif ├── arrow-down-icon.png ├── arrow-right-icon.png ├── ball.png ├── blast_table │ ├── small.gif │ ├── small_asc.gif │ └── small_desc.gif ├── buttons │ ├── CoGeBlast │ │ ├── coge_blast.png │ │ ├── ncbi_blast.png │ │ ├── ncbi_blast │ │ │ ├── active.png │ │ │ ├── inactive.png │ │ │ └── pressed.png │ │ └── ncbi_blast_new.png │ ├── GEvo │ │ ├── add.png │ │ ├── add │ │ │ ├── active.png │ │ │ ├── inactive.png │ │ │ └── pressed.png │ │ ├── add_new.png │ │ ├── clear.png │ │ ├── clear │ │ │ ├── active.png │ │ │ ├── inactive.png │ │ │ └── pressed.png │ │ ├── clear_new.png │ │ ├── expression_tree.png │ │ ├── genome_view.png │ │ ├── go.png │ │ ├── go │ │ │ ├── active.png │ │ │ ├── inactive.png │ │ │ └── pressed.png │ │ ├── go_cns │ │ │ ├── active.png │ │ │ ├── inactive.png │ │ │ └── pressed.png │ │ ├── go_new.png │ │ ├── go_synteny │ │ │ ├── active.png │ │ │ ├── inactive.png │ │ │ └── pressed.png │ │ ├── reload │ │ │ ├── active.png │ │ │ ├── inactive.png │ │ │ └── pressed.png │ │ ├── remove.png │ │ ├── remove │ │ │ ├── active.png │ │ │ ├── inactive.png │ │ │ └── pressed.png │ │ ├── remove_new.png │ │ └── sequence.png │ ├── minus.png │ └── plus.png ├── cancel.png ├── chromosome-small.png ├── chromosome2-small.png ├── colorpicker-images │ ├── Thumbs.db │ ├── blank.gif │ ├── colorpicker_background.png │ ├── colorpicker_hex.png │ ├── colorpicker_hsb_b.png │ ├── colorpicker_hsb_h.png │ ├── colorpicker_hsb_s.png │ ├── colorpicker_indic.gif │ ├── colorpicker_overlay.png │ ├── colorpicker_rgb_b.png │ ├── colorpicker_rgb_g.png │ ├── colorpicker_rgb_r.png │ ├── colorpicker_select.gif │ ├── colorpicker_submit.png │ ├── custom_background.png │ ├── custom_hex.png │ ├── custom_hsb_b.png │ ├── custom_hsb_h.png │ ├── custom_hsb_s.png │ ├── custom_indic.gif │ ├── custom_rgb_b.png │ ├── custom_rgb_g.png │ ├── custom_rgb_r.png │ ├── custom_submit.png │ ├── select.png │ ├── select2.png │ └── slider.png ├── comment-icon.png ├── default_user_image.png ├── delete.png ├── disc.png ├── disk.png ├── dna-icon-small.png ├── dna-icon.png ├── dna.png ├── error.png ├── feature-icon.png ├── gevo-synteny.png ├── gnome.jpg ├── group-icon-small.png ├── group-icon.png ├── home_page │ ├── 500px-3440_3441.CDS-CDS.blastn.dag_geneorder_D20_g10_A5.1-1.w800.png │ ├── 500px-Reconstructingchromosomes.png │ ├── 500px-SynPlot-Chr1-At-v-Al.png │ ├── 600px-CoGeBlast-At1g02120-eval.png │ ├── 600px-Maize-sorghum-cns.png │ ├── 600px-Phylogeny_fr_PhyML.png │ ├── 600px-Plasmodium-codon-substitution-matirx.png │ ├── 600px-SynPlot-Chr1-At-v-Al.png │ ├── 600px-Syntenic_dotplot_medicago_truncatula_v2_vs_v3.png │ ├── 600px-System_framework.png │ ├── 800px-GeLo-nucleotides.png │ ├── 800px-GenomeView_GEvo-links.png │ ├── 800px-Human-mouse-tandem-gene-duplication.png │ ├── 800px-Maize-sorghum-cns.png │ ├── 800px-Master_3068_8.CDS-CDS.blastn_geneorder_D20_g10_A5.w2000.ks.png │ ├── FeatMap-screenshot.png │ ├── GEvo-ecoli-insertion-direct-repeats.png │ ├── GenomeView-MG1655.png │ ├── Grapevine-peach_K2_historgram.png │ ├── Master_2361_2360.CDS-CDS.blastn_geneorder_D20_g10_A5.w500.png │ ├── Master_3068_8.CDS-CDS.blastn_geneorder_D20_g10_A5.w2000.ks.hist-1.png │ ├── OrganismView-search.png │ ├── Os-Sb-CNS-rich.png │ ├── Plasmodium_knowlesi_cds_gc_content_histogram.png │ ├── Three_minute_load_video.png │ ├── gevo-synteny.png │ ├── jbrowse-genome-view.png │ └── k12-CDS-aa-usage.png ├── in.png ├── jquery-ui-images │ ├── ui-bg_diagonals-small_100_f0efea_40x40.png │ ├── ui-bg_diagonals-small_95_ffe5ad_40x40.png │ ├── ui-bg_flat_35_f0f0f0_40x100.png │ ├── ui-bg_glow-ball_25_2e2e28_600x600.png │ ├── ui-bg_highlight-soft_100_e3eacc_1x100.png │ ├── ui-bg_highlight-soft_25_327E04_1x100.png │ ├── ui-bg_highlight-soft_25_5fac16_1x100.png │ ├── ui-bg_highlight-soft_55_edfcba_1x100.png │ ├── ui-bg_inset-soft_22_928868_1x100.png │ ├── ui-icons_67af2c_256x240.png │ ├── ui-icons_808080_256x240.png │ ├── ui-icons_8DC262_256x240.png │ ├── ui-icons_cd0a0a_256x240.png │ ├── ui-icons_ebebea_256x240.png │ ├── ui-icons_eeeeee_256x240.png │ └── ui-icons_ffffff_256x240.png ├── no-comment-icon.png ├── notebook-icon-small.png ├── notebook-icon.png ├── nsf-logo.gif ├── other │ ├── CoGe-icon.png │ ├── NCBI-icon.png │ ├── google-icon.png │ └── wikipedia-icon.png ├── out.png ├── page_not_found.png ├── preview │ ├── Blast.png │ ├── FeatView.png │ ├── GEvo.png │ ├── GeLo.png │ ├── GenomeView.png │ ├── MSAView.png │ ├── SynMap.png │ ├── TreeView.png │ └── app_schema.png ├── refresh-icon.png ├── server_error.png ├── smiley_default.png ├── smiley_default2.png ├── smiley_face.png ├── smileyface-icon.png ├── star-full.png ├── star-hollow.png ├── success.png ├── table │ ├── coge_table_bkgd_bottom.png │ ├── coge_table_bkgd_left.png │ ├── coge_table_bkgd_right.png │ ├── coge_table_bkgd_top.png │ ├── spacer-1x1.png │ ├── table_bg_body_b.png │ ├── table_bg_body_bl.png │ ├── table_bg_body_br.png │ ├── table_bg_body_l.png │ ├── table_bg_body_r.png │ ├── table_bg_body_t.png │ ├── table_bg_body_tl.png │ ├── table_bg_body_tr.png │ ├── table_bg_head_b.png │ ├── table_bg_head_bl.png │ ├── table_bg_head_br.png │ ├── table_bg_head_l.png │ ├── table_bg_head_r.png │ ├── table_bg_head_t.png │ ├── table_bg_head_tl.png │ └── table_bg_head_tr.png ├── tablesorter-pager-icons │ ├── first.png │ ├── last.png │ ├── next.png │ └── prev.png ├── tabs │ ├── loading.gif │ └── tab.png ├── test_tube.png ├── testtube-icon-small.png ├── testtube-icon.png ├── thumbs_down.png ├── thumbs_up.png ├── uc_seal.gif ├── urlicon │ └── favicon.ico ├── usda_logo.png ├── user-icon-small.png ├── user-icon.png ├── vr_icon.png ├── warning.png └── youtube-play-button.png ├── robots.txt ├── run_dotplot.pl ├── services ├── api.pl └── jex.py ├── setup.sh └── tRNAView.pl /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "web/js/vendor" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/.gitmodules -------------------------------------------------------------------------------- /.perltidyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/.perltidyrc -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/README.md -------------------------------------------------------------------------------- /api.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/api.sh -------------------------------------------------------------------------------- /bin/JalView/jalviewApplet.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/JalView/jalviewApplet.jar -------------------------------------------------------------------------------- /bin/NJPlot/njplot-2.3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/NJPlot/njplot-2.3/README -------------------------------------------------------------------------------- /bin/NJPlot/njplot-2.3/bigtree.phb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/NJPlot/njplot-2.3/bigtree.phb -------------------------------------------------------------------------------- /bin/NJPlot/njplot-2.3/example.phb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/NJPlot/njplot-2.3/example.phb -------------------------------------------------------------------------------- /bin/NJPlot/njplot-2.3/helpers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/NJPlot/njplot-2.3/helpers.html -------------------------------------------------------------------------------- /bin/NJPlot/njplot-2.3/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/NJPlot/njplot-2.3/makefile -------------------------------------------------------------------------------- /bin/NJPlot/njplot-2.3/multi.phb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/NJPlot/njplot-2.3/multi.phb -------------------------------------------------------------------------------- /bin/NJPlot/njplot-2.3/njplot-vib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/NJPlot/njplot-2.3/njplot-vib.c -------------------------------------------------------------------------------- /bin/NJPlot/njplot-2.3/njplot.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/NJPlot/njplot-2.3/njplot.1 -------------------------------------------------------------------------------- /bin/NJPlot/njplot-2.3/njplot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/NJPlot/njplot-2.3/njplot.gif -------------------------------------------------------------------------------- /bin/NJPlot/njplot-2.3/njplot.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/NJPlot/njplot-2.3/njplot.help -------------------------------------------------------------------------------- /bin/NJPlot/njplot-2.3/njplot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/NJPlot/njplot-2.3/njplot.html -------------------------------------------------------------------------------- /bin/NJPlot/njplot-2.3/preptree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/NJPlot/njplot-2.3/preptree.c -------------------------------------------------------------------------------- /bin/NJPlot/njplot-2.3/unrooted-vib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/NJPlot/njplot-2.3/unrooted-vib.c -------------------------------------------------------------------------------- /bin/NJPlot/njplot-2.3/unrooted.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/NJPlot/njplot-2.3/unrooted.1 -------------------------------------------------------------------------------- /bin/Tabix/Tabix.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/Tabix/Tabix.pm -------------------------------------------------------------------------------- /bin/Tabix/TabixIterator.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/Tabix/TabixIterator.pm -------------------------------------------------------------------------------- /bin/aragorn1.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/aragorn1.2 -------------------------------------------------------------------------------- /bin/blastz_wrapper/blastz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/blastz_wrapper/blastz.py -------------------------------------------------------------------------------- /bin/codeml/codeml-coge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/codeml/codeml-coge -------------------------------------------------------------------------------- /bin/codeml/codeml.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/codeml/codeml.ctl -------------------------------------------------------------------------------- /bin/codeml/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/codeml/src/Makefile -------------------------------------------------------------------------------- /bin/codeml/src/Makefile.MSVC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/codeml/src/Makefile.MSVC -------------------------------------------------------------------------------- /bin/codeml/src/Makefile.UNIX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/codeml/src/Makefile.UNIX -------------------------------------------------------------------------------- /bin/codeml/src/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/codeml/src/README.txt -------------------------------------------------------------------------------- /bin/codeml/src/TreeTimeJeff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/codeml/src/TreeTimeJeff.c -------------------------------------------------------------------------------- /bin/codeml/src/baseml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/codeml/src/baseml -------------------------------------------------------------------------------- /bin/codeml/src/baseml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/codeml/src/baseml.c -------------------------------------------------------------------------------- /bin/codeml/src/basemlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/codeml/src/basemlg -------------------------------------------------------------------------------- /bin/codeml/src/basemlg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/codeml/src/basemlg.c -------------------------------------------------------------------------------- /bin/codeml/src/chi2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/codeml/src/chi2 -------------------------------------------------------------------------------- /bin/codeml/src/chi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/codeml/src/chi2.c -------------------------------------------------------------------------------- /bin/codeml/src/codeml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/codeml/src/codeml -------------------------------------------------------------------------------- /bin/codeml/src/codeml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/codeml/src/codeml.c -------------------------------------------------------------------------------- /bin/codeml/src/ds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/codeml/src/ds.c -------------------------------------------------------------------------------- /bin/codeml/src/evolver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/codeml/src/evolver -------------------------------------------------------------------------------- /bin/codeml/src/evolver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/codeml/src/evolver.c -------------------------------------------------------------------------------- /bin/codeml/src/mcmctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/codeml/src/mcmctree -------------------------------------------------------------------------------- /bin/codeml/src/mcmctree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/codeml/src/mcmctree.c -------------------------------------------------------------------------------- /bin/codeml/src/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/codeml/src/out.txt -------------------------------------------------------------------------------- /bin/codeml/src/paml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/codeml/src/paml.h -------------------------------------------------------------------------------- /bin/codeml/src/pamp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/codeml/src/pamp -------------------------------------------------------------------------------- /bin/codeml/src/pamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/codeml/src/pamp.c -------------------------------------------------------------------------------- /bin/codeml/src/rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/codeml/src/rst1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/codeml/src/rub: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/codeml/src/tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/codeml/src/tools.c -------------------------------------------------------------------------------- /bin/codeml/src/treespace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/codeml/src/treespace.c -------------------------------------------------------------------------------- /bin/codeml/src/treesub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/codeml/src/treesub.c -------------------------------------------------------------------------------- /bin/codeml/src/yn00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/codeml/src/yn00 -------------------------------------------------------------------------------- /bin/codeml/src/yn00.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/codeml/src/yn00.c -------------------------------------------------------------------------------- /bin/dagchainer/DAGCHAINER/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/dagchainer/DAGCHAINER/Makefile -------------------------------------------------------------------------------- /bin/dagchainer/DAGCHAINER/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/dagchainer/DAGCHAINER/README -------------------------------------------------------------------------------- /bin/dagchainer/DAGCHAINER/dagchainer.: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/dagchainer/DAGCHAINER/dagchainer. -------------------------------------------------------------------------------- /bin/dagchainer/dag_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/dagchainer/dag_tools.py -------------------------------------------------------------------------------- /bin/dagchainer/find_nearby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/dagchainer/find_nearby.py -------------------------------------------------------------------------------- /bin/dagchainer/tandems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/dagchainer/tandems.py -------------------------------------------------------------------------------- /bin/dagchainer_bp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/dagchainer_bp/Makefile -------------------------------------------------------------------------------- /bin/dagchainer_bp/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/dagchainer_bp/README.rst -------------------------------------------------------------------------------- /bin/dagchainer_bp/cdagline.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/dagchainer_bp/cdagline.so -------------------------------------------------------------------------------- /bin/dagchainer_bp/dag_chainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/dagchainer_bp/dag_chainer.py -------------------------------------------------------------------------------- /bin/dagchainer_bp/dagchainer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/dagchainer_bp/dagchainer -------------------------------------------------------------------------------- /bin/dagchainer_bp/dagchainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/dagchainer_bp/dagchainer.cpp -------------------------------------------------------------------------------- /bin/dagchainer_bp/dagtools.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bin/dagchainer_bp/dagtools.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bin/dagchainer_bp/dagtools.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | dagtools 2 | cdagline 3 | -------------------------------------------------------------------------------- /bin/dagchainer_bp/dagtools/cdagline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/dagchainer_bp/dagtools/cdagline.c -------------------------------------------------------------------------------- /bin/dagchainer_bp/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/dagchainer_bp/setup.py -------------------------------------------------------------------------------- /bin/dataset_group_2_bed.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/dataset_group_2_bed.pl -------------------------------------------------------------------------------- /bin/dialign2_dir/BLOSUM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/dialign2_dir/BLOSUM -------------------------------------------------------------------------------- /bin/dialign2_dir/dialign2-2_coge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/dialign2_dir/dialign2-2_coge -------------------------------------------------------------------------------- /bin/dialign2_dir/tp400_dna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/dialign2_dir/tp400_dna -------------------------------------------------------------------------------- /bin/dialign2_dir/tp400_prot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/dialign2_dir/tp400_prot -------------------------------------------------------------------------------- /bin/dialign2_dir/tp400_trans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/dialign2_dir/tp400_trans -------------------------------------------------------------------------------- /bin/dotplot.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/dotplot.pl -------------------------------------------------------------------------------- /bin/gcat/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/gcat/Cargo.toml -------------------------------------------------------------------------------- /bin/gcat/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/gcat/src/main.rs -------------------------------------------------------------------------------- /bin/histogram.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/histogram.pl -------------------------------------------------------------------------------- /bin/ks_histogram.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/ks_histogram.pl -------------------------------------------------------------------------------- /bin/lagan-64bit/1512.anchs.final: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/lagan-64bit/ERICLYONS_NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/ERICLYONS_NOTES.txt -------------------------------------------------------------------------------- /bin/lagan-64bit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/Makefile -------------------------------------------------------------------------------- /bin/lagan-64bit/Readmes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/Readmes/LICENSE -------------------------------------------------------------------------------- /bin/lagan-64bit/Readmes/README.FIRST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/Readmes/README.FIRST -------------------------------------------------------------------------------- /bin/lagan-64bit/Readmes/README.chaos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/Readmes/README.chaos -------------------------------------------------------------------------------- /bin/lagan-64bit/Readmes/README.lagan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/Readmes/README.lagan -------------------------------------------------------------------------------- /bin/lagan-64bit/Readmes/README.mlagan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/Readmes/README.mlagan -------------------------------------------------------------------------------- /bin/lagan-64bit/Readmes/README.tools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/Readmes/README.tools -------------------------------------------------------------------------------- /bin/lagan-64bit/Utils.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/Utils.pm -------------------------------------------------------------------------------- /bin/lagan-64bit/anal_gloc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/anal_gloc.pl -------------------------------------------------------------------------------- /bin/lagan-64bit/anchors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/anchors -------------------------------------------------------------------------------- /bin/lagan-64bit/blosum62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/blosum62.txt -------------------------------------------------------------------------------- /bin/lagan-64bit/blosum62s.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/blosum62s.txt -------------------------------------------------------------------------------- /bin/lagan-64bit/chaos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/chaos -------------------------------------------------------------------------------- /bin/lagan-64bit/chaos_coge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/chaos_coge -------------------------------------------------------------------------------- /bin/lagan-64bit/glocal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/glocal -------------------------------------------------------------------------------- /bin/lagan-64bit/lagan.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/lagan.pl -------------------------------------------------------------------------------- /bin/lagan-64bit/lagan.pl.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/lagan.pl.orig -------------------------------------------------------------------------------- /bin/lagan-64bit/mlagan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/mlagan -------------------------------------------------------------------------------- /bin/lagan-64bit/nucmatrix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/nucmatrix.txt -------------------------------------------------------------------------------- /bin/lagan-64bit/old/prolagan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/old/prolagan -------------------------------------------------------------------------------- /bin/lagan-64bit/order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/order -------------------------------------------------------------------------------- /bin/lagan-64bit/prolagan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/prolagan -------------------------------------------------------------------------------- /bin/lagan-64bit/rechaos.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/rechaos.pl -------------------------------------------------------------------------------- /bin/lagan-64bit/rechaos.pl.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/rechaos.pl.orig -------------------------------------------------------------------------------- /bin/lagan-64bit/sample.fasta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/sample.fasta -------------------------------------------------------------------------------- /bin/lagan-64bit/sample.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/sample.params -------------------------------------------------------------------------------- /bin/lagan-64bit/slagan-mfa.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/slagan-mfa.pl -------------------------------------------------------------------------------- /bin/lagan-64bit/slagan.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/slagan.pl -------------------------------------------------------------------------------- /bin/lagan-64bit/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/Makefile -------------------------------------------------------------------------------- /bin/lagan-64bit/src/Utils.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/Utils.pm -------------------------------------------------------------------------------- /bin/lagan-64bit/src/anal_gloc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/anal_gloc.pl -------------------------------------------------------------------------------- /bin/lagan-64bit/src/anchors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/anchors.c -------------------------------------------------------------------------------- /bin/lagan-64bit/src/ancseq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/ancseq.cpp -------------------------------------------------------------------------------- /bin/lagan-64bit/src/ancseqrest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/ancseqrest.cpp -------------------------------------------------------------------------------- /bin/lagan-64bit/src/cutmfa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/cutmfa.cpp -------------------------------------------------------------------------------- /bin/lagan-64bit/src/diagmatrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/diagmatrix.c -------------------------------------------------------------------------------- /bin/lagan-64bit/src/diagmatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/diagmatrix.h -------------------------------------------------------------------------------- /bin/lagan-64bit/src/faindex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/faindex.cpp -------------------------------------------------------------------------------- /bin/lagan-64bit/src/fchaos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/fchaos.c -------------------------------------------------------------------------------- /bin/lagan-64bit/src/fchaos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/fchaos.h -------------------------------------------------------------------------------- /bin/lagan-64bit/src/filebuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/filebuffer.c -------------------------------------------------------------------------------- /bin/lagan-64bit/src/filebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/filebuffer.h -------------------------------------------------------------------------------- /bin/lagan-64bit/src/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/global.c -------------------------------------------------------------------------------- /bin/lagan-64bit/src/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/global.h -------------------------------------------------------------------------------- /bin/lagan-64bit/src/glocal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/glocal/Makefile -------------------------------------------------------------------------------- /bin/lagan-64bit/src/glocal/glocal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/glocal/glocal -------------------------------------------------------------------------------- /bin/lagan-64bit/src/glocal/glocal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/glocal/glocal.cpp -------------------------------------------------------------------------------- /bin/lagan-64bit/src/glocal/glocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/glocal/glocal.h -------------------------------------------------------------------------------- /bin/lagan-64bit/src/glocal/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/glocal/io.cpp -------------------------------------------------------------------------------- /bin/lagan-64bit/src/glocal/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/glocal/io.h -------------------------------------------------------------------------------- /bin/lagan-64bit/src/glocal/score.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/glocal/score.cpp -------------------------------------------------------------------------------- /bin/lagan-64bit/src/glocal/score.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/glocal/score.h -------------------------------------------------------------------------------- /bin/lagan-64bit/src/glocal/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/glocal/structs.h -------------------------------------------------------------------------------- /bin/lagan-64bit/src/glocal/test.score: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/glocal/test.score -------------------------------------------------------------------------------- /bin/lagan-64bit/src/lagan.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/lagan.pl -------------------------------------------------------------------------------- /bin/lagan-64bit/src/lagan2mfa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/lagan2mfa.cpp -------------------------------------------------------------------------------- /bin/lagan-64bit/src/makecons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/makecons.cpp -------------------------------------------------------------------------------- /bin/lagan-64bit/src/mempage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/mempage.c -------------------------------------------------------------------------------- /bin/lagan-64bit/src/mempage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/mempage.h -------------------------------------------------------------------------------- /bin/lagan-64bit/src/mlagan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/mlagan.c -------------------------------------------------------------------------------- /bin/lagan-64bit/src/multial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/multial.c -------------------------------------------------------------------------------- /bin/lagan-64bit/src/multial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/multial.h -------------------------------------------------------------------------------- /bin/lagan-64bit/src/order.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/order.c -------------------------------------------------------------------------------- /bin/lagan-64bit/src/order.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/order.h -------------------------------------------------------------------------------- /bin/lagan-64bit/src/prolagan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/prolagan.c -------------------------------------------------------------------------------- /bin/lagan-64bit/src/rechaos.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/rechaos.pl -------------------------------------------------------------------------------- /bin/lagan-64bit/src/skiplist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/skiplist.c -------------------------------------------------------------------------------- /bin/lagan-64bit/src/skiplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/skiplist.h -------------------------------------------------------------------------------- /bin/lagan-64bit/src/slagan-mfa.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/slagan-mfa.pl -------------------------------------------------------------------------------- /bin/lagan-64bit/src/slagan.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/slagan.pl -------------------------------------------------------------------------------- /bin/lagan-64bit/src/sortlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/sortlist.c -------------------------------------------------------------------------------- /bin/lagan-64bit/src/supermap.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/supermap.pl -------------------------------------------------------------------------------- /bin/lagan-64bit/src/thrtrie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/thrtrie.c -------------------------------------------------------------------------------- /bin/lagan-64bit/src/thrtrie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/thrtrie.h -------------------------------------------------------------------------------- /bin/lagan-64bit/src/translate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/translate.c -------------------------------------------------------------------------------- /bin/lagan-64bit/src/translate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/translate.h -------------------------------------------------------------------------------- /bin/lagan-64bit/src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/util.cpp -------------------------------------------------------------------------------- /bin/lagan-64bit/src/utils/Glue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/utils/Glue.cpp -------------------------------------------------------------------------------- /bin/lagan-64bit/src/utils/Output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/utils/Output.h -------------------------------------------------------------------------------- /bin/lagan-64bit/src/utils/Sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/utils/Sequence.h -------------------------------------------------------------------------------- /bin/lagan-64bit/src/utils/bin2bl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/utils/bin2bl.c -------------------------------------------------------------------------------- /bin/lagan-64bit/src/utils/bin2mf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/utils/bin2mf.c -------------------------------------------------------------------------------- /bin/lagan-64bit/src/utils/cextract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/utils/cextract.c -------------------------------------------------------------------------------- /bin/lagan-64bit/src/utils/cmerge2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/utils/cmerge2.pl -------------------------------------------------------------------------------- /bin/lagan-64bit/src/utils/cstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/utils/cstat.c -------------------------------------------------------------------------------- /bin/lagan-64bit/src/utils/dotplot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/utils/dotplot.cpp -------------------------------------------------------------------------------- /bin/lagan-64bit/src/utils/draft.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/utils/draft.pl -------------------------------------------------------------------------------- /bin/lagan-64bit/src/utils/fa2xfa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/utils/fa2xfa.c -------------------------------------------------------------------------------- /bin/lagan-64bit/src/utils/getbounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/utils/getbounds.c -------------------------------------------------------------------------------- /bin/lagan-64bit/src/utils/getlength.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/utils/getlength.c -------------------------------------------------------------------------------- /bin/lagan-64bit/src/utils/mextract.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/utils/mextract.pl -------------------------------------------------------------------------------- /bin/lagan-64bit/src/utils/mf2bin.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/utils/mf2bin.pl -------------------------------------------------------------------------------- /bin/lagan-64bit/src/utils/mpretty.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/utils/mpretty.pl -------------------------------------------------------------------------------- /bin/lagan-64bit/src/utils/mproject.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/utils/mproject.pl -------------------------------------------------------------------------------- /bin/lagan-64bit/src/utils/mrun.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/utils/mrun.pl -------------------------------------------------------------------------------- /bin/lagan-64bit/src/utils/mrunfile.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/utils/mrunfile.pl -------------------------------------------------------------------------------- /bin/lagan-64bit/src/utils/mviz.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/utils/mviz.pl -------------------------------------------------------------------------------- /bin/lagan-64bit/src/utils/overlay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/utils/overlay.c -------------------------------------------------------------------------------- /bin/lagan-64bit/src/utils/rc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/utils/rc.c -------------------------------------------------------------------------------- /bin/lagan-64bit/src/utils/seqmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/utils/seqmerge.c -------------------------------------------------------------------------------- /bin/lagan-64bit/src/xmfa2mfa.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/src/xmfa2mfa.pl -------------------------------------------------------------------------------- /bin/lagan-64bit/supermap.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/supermap.pl -------------------------------------------------------------------------------- /bin/lagan-64bit/test.score: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/test.score -------------------------------------------------------------------------------- /bin/lagan-64bit/utils/Glue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/utils/Glue -------------------------------------------------------------------------------- /bin/lagan-64bit/utils/Utils.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/utils/Utils.pm -------------------------------------------------------------------------------- /bin/lagan-64bit/utils/bin2bl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/utils/bin2bl -------------------------------------------------------------------------------- /bin/lagan-64bit/utils/bin2mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/utils/bin2mf -------------------------------------------------------------------------------- /bin/lagan-64bit/utils/cextract: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/utils/cextract -------------------------------------------------------------------------------- /bin/lagan-64bit/utils/cmerge2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/utils/cmerge2.pl -------------------------------------------------------------------------------- /bin/lagan-64bit/utils/contigorder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/utils/contigorder -------------------------------------------------------------------------------- /bin/lagan-64bit/utils/cstat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/utils/cstat -------------------------------------------------------------------------------- /bin/lagan-64bit/utils/dotplot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/utils/dotplot -------------------------------------------------------------------------------- /bin/lagan-64bit/utils/draft.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/utils/draft.pl -------------------------------------------------------------------------------- /bin/lagan-64bit/utils/fa2xfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/utils/fa2xfa -------------------------------------------------------------------------------- /bin/lagan-64bit/utils/flipchaos.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/utils/flipchaos.pl -------------------------------------------------------------------------------- /bin/lagan-64bit/utils/getbounds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/utils/getbounds -------------------------------------------------------------------------------- /bin/lagan-64bit/utils/getcontigpos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/utils/getcontigpos -------------------------------------------------------------------------------- /bin/lagan-64bit/utils/getlength: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/utils/getlength -------------------------------------------------------------------------------- /bin/lagan-64bit/utils/getoverlap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/utils/getoverlap -------------------------------------------------------------------------------- /bin/lagan-64bit/utils/mextract.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/utils/mextract.pl -------------------------------------------------------------------------------- /bin/lagan-64bit/utils/mf2bin.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/utils/mf2bin.pl -------------------------------------------------------------------------------- /bin/lagan-64bit/utils/mpretty.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/utils/mpretty.pl -------------------------------------------------------------------------------- /bin/lagan-64bit/utils/mproject.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/utils/mproject.pl -------------------------------------------------------------------------------- /bin/lagan-64bit/utils/mrun.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/utils/mrun.pl -------------------------------------------------------------------------------- /bin/lagan-64bit/utils/mrunfile.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/utils/mrunfile.pl -------------------------------------------------------------------------------- /bin/lagan-64bit/utils/mrunpairs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/utils/mrunpairs.pl -------------------------------------------------------------------------------- /bin/lagan-64bit/utils/msplit.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/utils/msplit.pl -------------------------------------------------------------------------------- /bin/lagan-64bit/utils/mviz.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/utils/mviz.pl -------------------------------------------------------------------------------- /bin/lagan-64bit/utils/overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/utils/overlay -------------------------------------------------------------------------------- /bin/lagan-64bit/utils/rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/utils/rc -------------------------------------------------------------------------------- /bin/lagan-64bit/utils/scorealign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/utils/scorealign -------------------------------------------------------------------------------- /bin/lagan-64bit/utils/scorecontigs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/utils/scorecontigs -------------------------------------------------------------------------------- /bin/lagan-64bit/utils/seqmerge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/utils/seqmerge -------------------------------------------------------------------------------- /bin/lagan-64bit/xmfa2mfa.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/lagan-64bit/xmfa2mfa.pl -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/Affy/CelFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/Affy/CelFile.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/Affy/__init__.py: -------------------------------------------------------------------------------- 1 | """Deal with Affymetrix related data such as cel files. 2 | """ 3 | -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/Align/Generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/Align/Generic.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/Blast/NCBIWWW.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/Blast/NCBIWWW.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/Blast/NCBIXML.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/Blast/NCBIXML.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/Blast/Record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/Blast/Record.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/CAPS/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/CAPS/__init__.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/Data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/Data/__init__.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/DocSQL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/DocSQL.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/Emboss/__init__.py: -------------------------------------------------------------------------------- 1 | """Code to interact with the ever-so-useful EMBOSS programs. 2 | """ 3 | -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/Entrez/Parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/Entrez/Parser.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/ExPASy/Enzyme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/ExPASy/Enzyme.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/ExPASy/Prodoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/ExPASy/Prodoc.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/FSSP/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/FSSP/__init__.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/FSSP/fssp_rec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/FSSP/fssp_rec.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/File.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/File.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/GA/Crossover/__init__.py: -------------------------------------------------------------------------------- 1 | # make files in this directory importable 2 | -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/GA/Evolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/GA/Evolver.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/GA/Mutation/__init__.py: -------------------------------------------------------------------------------- 1 | # make files in this directory importable 2 | -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/GA/Organism.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/GA/Organism.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/GA/Repair/__init__.py: -------------------------------------------------------------------------------- 1 | # make files in this directory importable 2 | -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/GA/Selection/__init__.py: -------------------------------------------------------------------------------- 1 | # make files in this directory importable 2 | -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/GA/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/GA/__init__.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/GenBank/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/GenBank/utils.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/Geo/Record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/Geo/Record.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/Geo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/Geo/__init__.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/HMM/Trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/HMM/Trainer.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/HMM/Utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/HMM/Utilities.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/HMM/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/HMM/__init__.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/HotRand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/HotRand.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/Index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/Index.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/KDTree/KDTree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/KDTree/KDTree.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/KEGG/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/KEGG/__init__.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/MarkovModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/MarkovModel.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/MaxEntropy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/MaxEntropy.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/Motif/Parsers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/Motif/_Motif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/Motif/_Motif.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/Motif/_pwm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/Motif/_pwm.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/NMR/NOEtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/NMR/NOEtools.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/NMR/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/NMR/__init__.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/NMR/xpktools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/NMR/xpktools.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/NaiveBayes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/NaiveBayes.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/NeuralNetwork/BackPropagation/__init__.py: -------------------------------------------------------------------------------- 1 | # Allow files in this directory to be imported 2 | -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/NeuralNetwork/Gene/__init__.py: -------------------------------------------------------------------------------- 1 | # Allow files in this directory to be imported 2 | -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/NeuralNetwork/__init__.py: -------------------------------------------------------------------------------- 1 | # Allow files in this directory to be imported 2 | -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/Nexus/Nexus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/Nexus/Nexus.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/Nexus/Nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/Nexus/Nodes.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/Nexus/Trees.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/Nexus/Trees.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/Nexus/cnexus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/Nexus/cnexus.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/PDB/Atom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/PDB/Atom.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/PDB/Chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/PDB/Chain.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/PDB/DSSP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/PDB/DSSP.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/PDB/Dice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/PDB/Dice.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/PDB/Entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/PDB/Entity.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/PDB/Model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/PDB/Model.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/PDB/NACCESS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/PDB/NACCESS.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/PDB/PDBIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/PDB/PDBIO.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/PDB/PDBList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/PDB/PDBList.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/PDB/PDBParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/PDB/PDBParser.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/PDB/PSEA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/PDB/PSEA.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/PDB/Residue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/PDB/Residue.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/PDB/Selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/PDB/Selection.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/PDB/Structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/PDB/Structure.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/PDB/Vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/PDB/Vector.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/PDB/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/PDB/__init__.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/PDB/mmCIF/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/ParserSupport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/ParserSupport.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/Parsers/spark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/Parsers/spark.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/Phylo/Newick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/Phylo/Newick.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/Phylo/NexusIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/Phylo/NexusIO.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/Phylo/_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/Phylo/_io.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/Phylo/_sugar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/Phylo/_sugar.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/Phylo/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/Phylo/_utils.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/Restriction/_Update/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/SCOP/Cla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/SCOP/Cla.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/SCOP/Des.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/SCOP/Des.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/SCOP/Dom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/SCOP/Dom.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/SCOP/Hie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/SCOP/Hie.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/SCOP/Raf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/SCOP/Raf.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/SCOP/Residues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/SCOP/Residues.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/SCOP/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/SCOP/__init__.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/Search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/Search.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/Seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/Seq.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/SeqFeature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/SeqFeature.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/SeqIO/AbiIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/SeqIO/AbiIO.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/SeqIO/AceIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/SeqIO/AceIO.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/SeqIO/FastaIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/SeqIO/FastaIO.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/SeqIO/IgIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/SeqIO/IgIO.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/SeqIO/InsdcIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/SeqIO/InsdcIO.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/SeqIO/PhdIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/SeqIO/PhdIO.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/SeqIO/PirIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/SeqIO/PirIO.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/SeqRecord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/SeqRecord.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/Statistics/__init__.py: -------------------------------------------------------------------------------- 1 | # This is a Python module. 2 | -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/Wise/dnal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/Wise/dnal.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/Wise/psw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/Wise/psw.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/__init__.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/_py3k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/_py3k.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/cpairwise2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/cpairwise2.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/kNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/kNN.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/pairwise2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/pairwise2.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/trie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/trie.py -------------------------------------------------------------------------------- /bin/last_wrapper/Bio/triefind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/Bio/triefind.py -------------------------------------------------------------------------------- /bin/last_wrapper/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/README.rst -------------------------------------------------------------------------------- /bin/last_wrapper/last.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/last.py -------------------------------------------------------------------------------- /bin/last_wrapper/last_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/last_helper.py -------------------------------------------------------------------------------- /bin/last_wrapper/lastal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/lastal -------------------------------------------------------------------------------- /bin/last_wrapper/lastdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/lastdb -------------------------------------------------------------------------------- /bin/last_wrapper/lastex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/lastex -------------------------------------------------------------------------------- /bin/last_wrapper/patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/patch -------------------------------------------------------------------------------- /bin/last_wrapper/test/4241-CDS.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/test/4241-CDS.prj -------------------------------------------------------------------------------- /bin/last_wrapper/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/test/README -------------------------------------------------------------------------------- /bin/last_wrapper/test/test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/last_wrapper/test/test.out -------------------------------------------------------------------------------- /bin/nwserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/nwserver.py -------------------------------------------------------------------------------- /bin/quota-alignment/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/quota-alignment/.gitignore -------------------------------------------------------------------------------- /bin/quota-alignment/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/quota-alignment/README.rst -------------------------------------------------------------------------------- /bin/quota-alignment/box_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/quota-alignment/box_utils.py -------------------------------------------------------------------------------- /bin/quota-alignment/grimm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/quota-alignment/grimm -------------------------------------------------------------------------------- /bin/quota-alignment/grouper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/quota-alignment/grouper.py -------------------------------------------------------------------------------- /bin/quota-alignment/lp_solvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/quota-alignment/lp_solvers.py -------------------------------------------------------------------------------- /bin/quota-alignment/maf_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/quota-alignment/maf_utils.py -------------------------------------------------------------------------------- /bin/quota-alignment/quota_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/quota-alignment/quota_align.py -------------------------------------------------------------------------------- /bin/quota-alignment/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/quota-alignment/run.sh -------------------------------------------------------------------------------- /bin/quota-alignment/scripts/lis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/quota-alignment/scripts/lis.py -------------------------------------------------------------------------------- /bin/quota-alignment/scripts/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/quota-alignment/scripts/run.sh -------------------------------------------------------------------------------- /bin/snp_search/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/snp_search/Makefile -------------------------------------------------------------------------------- /bin/snp_search/snp_search: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/snp_search/snp_search -------------------------------------------------------------------------------- /bin/snp_search/snp_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/snp_search/snp_search.cpp -------------------------------------------------------------------------------- /bin/spa.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bin/spa.pl -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/bower.json -------------------------------------------------------------------------------- /make_perl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/make_perl.sh -------------------------------------------------------------------------------- /modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules.txt -------------------------------------------------------------------------------- /modules/Accessory/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Accessory/MANIFEST -------------------------------------------------------------------------------- /modules/Accessory/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Accessory/Makefile.PL -------------------------------------------------------------------------------- /modules/Accessory/t/001_load.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Accessory/t/001_load.t -------------------------------------------------------------------------------- /modules/Accessory/t/url.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Accessory/t/url.t -------------------------------------------------------------------------------- /modules/Algos/Codeml/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Algos/Codeml/MANIFEST -------------------------------------------------------------------------------- /modules/Algos/Codeml/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Algos/Codeml/Makefile.PL -------------------------------------------------------------------------------- /modules/Algos/Codeml/t/001_load.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Algos/Codeml/t/001_load.t -------------------------------------------------------------------------------- /modules/Algos/Codeml/t/test.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Algos/Codeml/t/test.phy -------------------------------------------------------------------------------- /modules/Algos/KsCalc/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Algos/KsCalc/MANIFEST -------------------------------------------------------------------------------- /modules/Algos/KsCalc/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Algos/KsCalc/Makefile.PL -------------------------------------------------------------------------------- /modules/Algos/KsCalc/t/001_load.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Algos/KsCalc/t/001_load.t -------------------------------------------------------------------------------- /modules/Algos/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Algos/Makefile.PL -------------------------------------------------------------------------------- /modules/Algos/Pairwise/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Algos/Pairwise/MANIFEST -------------------------------------------------------------------------------- /modules/Algos/Pairwise/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Algos/Pairwise/Makefile.PL -------------------------------------------------------------------------------- /modules/Algos/PopGen/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Algos/PopGen/MANIFEST -------------------------------------------------------------------------------- /modules/Algos/PopGen/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Algos/PopGen/Makefile.PL -------------------------------------------------------------------------------- /modules/Core/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Core/MANIFEST -------------------------------------------------------------------------------- /modules/Core/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Core/Makefile.PL -------------------------------------------------------------------------------- /modules/Core/lib/CoGe/Core/Item.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Core/lib/CoGe/Core/Item.pm -------------------------------------------------------------------------------- /modules/Database/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Database/MANIFEST -------------------------------------------------------------------------------- /modules/Database/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Database/Makefile.PL -------------------------------------------------------------------------------- /modules/Database/lib/CoGeDBI.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Database/lib/CoGeDBI.pm -------------------------------------------------------------------------------- /modules/Database/lib/CoGeX.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Database/lib/CoGeX.pm -------------------------------------------------------------------------------- /modules/Database/lib/FastBit.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Database/lib/FastBit.pm -------------------------------------------------------------------------------- /modules/Database/t/001_load.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Database/t/001_load.t -------------------------------------------------------------------------------- /modules/Database/t/014_get_seq.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Database/t/014_get_seq.t -------------------------------------------------------------------------------- /modules/Database/t/asdf.fasta: -------------------------------------------------------------------------------- 1 | >gi|2| 2 | actgnxacCCC 3 | -------------------------------------------------------------------------------- /modules/Database/t/asdf.fasta.nhr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Database/t/asdf.fasta.nhr -------------------------------------------------------------------------------- /modules/Database/t/asdf.fasta.nin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Database/t/asdf.fasta.nin -------------------------------------------------------------------------------- /modules/Database/t/asdf.fasta.nnd: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /modules/Database/t/asdf.fasta.nni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Database/t/asdf.fasta.nni -------------------------------------------------------------------------------- /modules/Database/t/asdf.fasta.nsd: -------------------------------------------------------------------------------- 1 | gi|20 2 | -------------------------------------------------------------------------------- /modules/Database/t/asdf.fasta.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Database/t/asdf.fasta.nsi -------------------------------------------------------------------------------- /modules/Database/t/asdf.fasta.nsq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Database/t/asdf.fasta.nsq -------------------------------------------------------------------------------- /modules/ECNCS/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/ECNCS/MANIFEST -------------------------------------------------------------------------------- /modules/ECNCS/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/ECNCS/Makefile.PL -------------------------------------------------------------------------------- /modules/ECNCS/lib/CoGe/ECNCS.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/ECNCS/lib/CoGe/ECNCS.pm -------------------------------------------------------------------------------- /modules/ECNCS/lib/CoGe/ECNCS/DB.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/ECNCS/lib/CoGe/ECNCS/DB.pm -------------------------------------------------------------------------------- /modules/ECNCS/t/001_load.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/ECNCS/t/001_load.t -------------------------------------------------------------------------------- /modules/ECNCS/t/002_load.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/ECNCS/t/002_load.t -------------------------------------------------------------------------------- /modules/ECNCS/t/003_load.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/ECNCS/t/003_load.t -------------------------------------------------------------------------------- /modules/ECNCS/t/004_load.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/ECNCS/t/004_load.t -------------------------------------------------------------------------------- /modules/ECNCS/t/005_load.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/ECNCS/t/005_load.t -------------------------------------------------------------------------------- /modules/ECNCS/t/006_load.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/ECNCS/t/006_load.t -------------------------------------------------------------------------------- /modules/ECNCS/t/007_load.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/ECNCS/t/007_load.t -------------------------------------------------------------------------------- /modules/ECNCS/t/008_load.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/ECNCS/t/008_load.t -------------------------------------------------------------------------------- /modules/ECNCS/t/009_load.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/ECNCS/t/009_load.t -------------------------------------------------------------------------------- /modules/ECNCS/t/010_load.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/ECNCS/t/010_load.t -------------------------------------------------------------------------------- /modules/ECNCS/t/011_load.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/ECNCS/t/011_load.t -------------------------------------------------------------------------------- /modules/ECNCS/t/012_load.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/ECNCS/t/012_load.t -------------------------------------------------------------------------------- /modules/Exception/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Exception/MANIFEST -------------------------------------------------------------------------------- /modules/Exception/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Exception/Makefile.PL -------------------------------------------------------------------------------- /modules/Graphics/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Graphics/MANIFEST -------------------------------------------------------------------------------- /modules/Graphics/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Graphics/Makefile.PL -------------------------------------------------------------------------------- /modules/Graphics/t/001_load.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Graphics/t/001_load.t -------------------------------------------------------------------------------- /modules/Graphics/t/002_load.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Graphics/t/002_load.t -------------------------------------------------------------------------------- /modules/JEX/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/JEX/MANIFEST -------------------------------------------------------------------------------- /modules/JEX/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/JEX/Makefile.PL -------------------------------------------------------------------------------- /modules/JEX/lib/CoGe/JEX/Jex.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/JEX/lib/CoGe/JEX/Jex.pm -------------------------------------------------------------------------------- /modules/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/MANIFEST -------------------------------------------------------------------------------- /modules/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Makefile.PL -------------------------------------------------------------------------------- /modules/Pipelines/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Pipelines/MANIFEST -------------------------------------------------------------------------------- /modules/Pipelines/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Pipelines/Makefile.PL -------------------------------------------------------------------------------- /modules/Services/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Services/MANIFEST -------------------------------------------------------------------------------- /modules/Services/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/modules/Services/Makefile.PL -------------------------------------------------------------------------------- /old/Blank.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/Blank.pl -------------------------------------------------------------------------------- /old/Blank.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/Blank.tmpl -------------------------------------------------------------------------------- /old/CoGeBlast_old.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/CoGeBlast_old.pl -------------------------------------------------------------------------------- /old/CoGe_faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/CoGe_faq.html -------------------------------------------------------------------------------- /old/CodeFusion.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/CodeFusion.pl -------------------------------------------------------------------------------- /old/CodeFusion.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/CodeFusion.tmpl -------------------------------------------------------------------------------- /old/Experiments.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/Experiments.pl -------------------------------------------------------------------------------- /old/Experiments.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/Experiments.tmpl -------------------------------------------------------------------------------- /old/FeatID2Names.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/FeatID2Names.pl -------------------------------------------------------------------------------- /old/FeatListView.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/FeatListView.pl -------------------------------------------------------------------------------- /old/FeatListView.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/FeatListView.tmpl -------------------------------------------------------------------------------- /old/GenomeAlign.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/GenomeAlign.pl -------------------------------------------------------------------------------- /old/GenomeAlign.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/GenomeAlign.tmpl -------------------------------------------------------------------------------- /old/GenomeAlign/mauve_alignment.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/GenomeAlign/mauve_alignment.pl -------------------------------------------------------------------------------- /old/GenomePNG.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/GenomePNG.pl -------------------------------------------------------------------------------- /old/GenomeView_old.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/GenomeView_old.pl -------------------------------------------------------------------------------- /old/GenomeView_old.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/GenomeView_old.tmpl -------------------------------------------------------------------------------- /old/Genomes.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/Genomes.pl -------------------------------------------------------------------------------- /old/Genomes.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/Genomes.tmpl -------------------------------------------------------------------------------- /old/GetSequence.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/GetSequence.pl -------------------------------------------------------------------------------- /old/Groups.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/Groups.pl -------------------------------------------------------------------------------- /old/Groups.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/Groups.tmpl -------------------------------------------------------------------------------- /old/History.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/History.pl -------------------------------------------------------------------------------- /old/History.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/History.tmpl -------------------------------------------------------------------------------- /old/Jobs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/Jobs.pl -------------------------------------------------------------------------------- /old/Jobs.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/Jobs.tmpl -------------------------------------------------------------------------------- /old/MSAView.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/MSAView.pl -------------------------------------------------------------------------------- /old/MSAView.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/MSAView.tmpl -------------------------------------------------------------------------------- /old/MotifFind.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/MotifFind.pl -------------------------------------------------------------------------------- /old/MotifFind.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/MotifFind.tmpl -------------------------------------------------------------------------------- /old/MotifView.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/MotifView.pl -------------------------------------------------------------------------------- /old/MotifView.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/MotifView.tmpl -------------------------------------------------------------------------------- /old/MotifViewDev.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/MotifViewDev.pl -------------------------------------------------------------------------------- /old/Notebooks.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/Notebooks.pl -------------------------------------------------------------------------------- /old/Notebooks.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/Notebooks.tmpl -------------------------------------------------------------------------------- /old/SeqType.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/SeqType.pl -------------------------------------------------------------------------------- /old/SeqType.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/SeqType.tmpl -------------------------------------------------------------------------------- /old/Sources.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/Sources.pl -------------------------------------------------------------------------------- /old/Sources.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/Sources.tmpl -------------------------------------------------------------------------------- /old/SynFind_old.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/SynFind_old.pl -------------------------------------------------------------------------------- /old/SynView-papaya.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/SynView-papaya.pl -------------------------------------------------------------------------------- /old/TreeView.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/TreeView.pl -------------------------------------------------------------------------------- /old/TreeView.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/TreeView.tmpl -------------------------------------------------------------------------------- /old/UserGraph.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/UserGraph.pl -------------------------------------------------------------------------------- /old/UserGraph.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/UserGraph.tmpl -------------------------------------------------------------------------------- /old/fastbit_query.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/fastbit_query.pl -------------------------------------------------------------------------------- /old/get_org_list.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/get_org_list.pl -------------------------------------------------------------------------------- /old/three_dots_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/three_dots_merge.py -------------------------------------------------------------------------------- /old/tiler.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/old/tiler.pl -------------------------------------------------------------------------------- /resources/adapters.fa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/resources/adapters.fa -------------------------------------------------------------------------------- /resources/experiment.README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/resources/experiment.README.txt -------------------------------------------------------------------------------- /scripts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/README -------------------------------------------------------------------------------- /scripts/add_items_to_notebook.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/add_items_to_notebook.pl -------------------------------------------------------------------------------- /scripts/add_metadata_to_results.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/add_metadata_to_results.pl -------------------------------------------------------------------------------- /scripts/add_workflow_result.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/add_workflow_result.pl -------------------------------------------------------------------------------- /scripts/backup/audit_backup.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/backup/audit_backup.pl -------------------------------------------------------------------------------- /scripts/backup/backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/backup/backup.sh -------------------------------------------------------------------------------- /scripts/backup/fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/backup/fetch.sh -------------------------------------------------------------------------------- /scripts/backup/sync_jex_db.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/backup/sync_jex_db.pl -------------------------------------------------------------------------------- /scripts/clean_up_bad_synmap.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/clean_up_bad_synmap.pl -------------------------------------------------------------------------------- /scripts/cleanup/cleanup_staging.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/cleanup/cleanup_staging.pl -------------------------------------------------------------------------------- /scripts/coge2bed.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/coge2bed.pl -------------------------------------------------------------------------------- /scripts/coge2bed.v2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/coge2bed.v2.pl -------------------------------------------------------------------------------- /scripts/coge_gff.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/coge_gff.pl -------------------------------------------------------------------------------- /scripts/copy_genome/hard_mask.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/copy_genome/hard_mask.pl -------------------------------------------------------------------------------- /scripts/copy_genome/windowmasker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/copy_genome/windowmasker -------------------------------------------------------------------------------- /scripts/create_notebook.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/create_notebook.pl -------------------------------------------------------------------------------- /scripts/cutadapt.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/cutadapt.pl -------------------------------------------------------------------------------- /scripts/diags/clean_blastn.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/diags/clean_blastn.pl -------------------------------------------------------------------------------- /scripts/diags/clean_condensed.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/diags/clean_condensed.pl -------------------------------------------------------------------------------- /scripts/diags/clean_genomic.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/diags/clean_genomic.pl -------------------------------------------------------------------------------- /scripts/diags/clean_old_images.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/diags/clean_old_images.pl -------------------------------------------------------------------------------- /scripts/diags/clean_old_running.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/diags/clean_old_running.pl -------------------------------------------------------------------------------- /scripts/diags/clean_old_sqlite.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/diags/clean_old_sqlite.pl -------------------------------------------------------------------------------- /scripts/diags/clean_qac.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/diags/clean_qac.pl -------------------------------------------------------------------------------- /scripts/diags/compress_stuff.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/diags/compress_stuff.pl -------------------------------------------------------------------------------- /scripts/diags/gen_pairs_file.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/diags/gen_pairs_file.pl -------------------------------------------------------------------------------- /scripts/export_NCBI_TBL.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/export_NCBI_TBL.pl -------------------------------------------------------------------------------- /scripts/export_features_by_type.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/export_features_by_type.pl -------------------------------------------------------------------------------- /scripts/export_to_gff.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/export_to_gff.pl -------------------------------------------------------------------------------- /scripts/fasta_reheader.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/fasta_reheader.pl -------------------------------------------------------------------------------- /scripts/filter_sam.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/filter_sam.pl -------------------------------------------------------------------------------- /scripts/fix_chromosome_id.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/fix_chromosome_id.pl -------------------------------------------------------------------------------- /scripts/ftp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/ftp.pl -------------------------------------------------------------------------------- /scripts/genbank_genome_loader.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/genbank_genome_loader.pl -------------------------------------------------------------------------------- /scripts/generate_chr_fasta.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/generate_chr_fasta.pl -------------------------------------------------------------------------------- /scripts/generate_results.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/generate_results.pl -------------------------------------------------------------------------------- /scripts/gff_to_bed.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/gff_to_bed.pl -------------------------------------------------------------------------------- /scripts/irods.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/irods.pl -------------------------------------------------------------------------------- /scripts/link_results.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/link_results.pl -------------------------------------------------------------------------------- /scripts/load_all_ncbi_genomes.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/load_all_ncbi_genomes.pl -------------------------------------------------------------------------------- /scripts/load_annotation.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/load_annotation.pl -------------------------------------------------------------------------------- /scripts/load_batch.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/load_batch.pl -------------------------------------------------------------------------------- /scripts/load_experiment.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/load_experiment.pl -------------------------------------------------------------------------------- /scripts/load_genome.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/load_genome.pl -------------------------------------------------------------------------------- /scripts/migration/index_genomes.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/migration/index_genomes.pl -------------------------------------------------------------------------------- /scripts/normalize_bed.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/normalize_bed.pl -------------------------------------------------------------------------------- /scripts/old/add_chr_to_dataset.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/old/add_chr_to_dataset.pl -------------------------------------------------------------------------------- /scripts/old/add_user.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/old/add_user.pl -------------------------------------------------------------------------------- /scripts/old/break_fasta_2_chr.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/old/break_fasta_2_chr.pl -------------------------------------------------------------------------------- /scripts/old/clone_dataset.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/old/clone_dataset.pl -------------------------------------------------------------------------------- /scripts/old/clone_empty_genome.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/old/clone_empty_genome.pl -------------------------------------------------------------------------------- /scripts/old/code_fusion_for_org.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/old/code_fusion_for_org.pl -------------------------------------------------------------------------------- /scripts/old/codon_usage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/old/codon_usage.pl -------------------------------------------------------------------------------- /scripts/old/create_dataset.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/old/create_dataset.pl -------------------------------------------------------------------------------- /scripts/old/delete_dataset.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/old/delete_dataset.pl -------------------------------------------------------------------------------- /scripts/old/delete_features.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/old/delete_features.pl -------------------------------------------------------------------------------- /scripts/old/delete_organism.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/old/delete_organism.pl -------------------------------------------------------------------------------- /scripts/old/dotplot_dots.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/old/dotplot_dots.pl -------------------------------------------------------------------------------- /scripts/old/export_to_bed.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/old/export_to_bed.pl -------------------------------------------------------------------------------- /scripts/old/export_to_flat.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/old/export_to_flat.pl -------------------------------------------------------------------------------- /scripts/old/export_to_simple.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/old/export_to_simple.pl -------------------------------------------------------------------------------- /scripts/old/fasta_genome_loader.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/old/fasta_genome_loader.pl -------------------------------------------------------------------------------- /scripts/old/feature_merge.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/old/feature_merge.pl -------------------------------------------------------------------------------- /scripts/old/find_SNPs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/old/find_SNPs.pl -------------------------------------------------------------------------------- /scripts/old/fix_feature_names.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/old/fix_feature_names.pl -------------------------------------------------------------------------------- /scripts/old/get_by_name.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/old/get_by_name.pl -------------------------------------------------------------------------------- /scripts/old/get_features_locs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/old/get_features_locs.pl -------------------------------------------------------------------------------- /scripts/old/get_org_list.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/old/get_org_list.pl -------------------------------------------------------------------------------- /scripts/old/load_TIGR_XML.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/old/load_TIGR_XML.pl -------------------------------------------------------------------------------- /scripts/old/load_custom_genbank.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/old/load_custom_genbank.pl -------------------------------------------------------------------------------- /scripts/old/load_domains.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/old/load_domains.pl -------------------------------------------------------------------------------- /scripts/old/load_jgi_go.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/old/load_jgi_go.pl -------------------------------------------------------------------------------- /scripts/old/migrate_coge5.5.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/old/migrate_coge5.5.pl -------------------------------------------------------------------------------- /scripts/old/migrate_coge5.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/old/migrate_coge5.pl -------------------------------------------------------------------------------- /scripts/old/migrate_genomes.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/old/migrate_genomes.pl -------------------------------------------------------------------------------- /scripts/old/polyMFind.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/old/polyMFind.pl -------------------------------------------------------------------------------- /scripts/old/poplar/fix_poplar.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/old/poplar/fix_poplar.pl -------------------------------------------------------------------------------- /scripts/old/poplar/poplar_order.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/old/poplar/poplar_order.pl -------------------------------------------------------------------------------- /scripts/old/qteller.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/old/qteller.pl -------------------------------------------------------------------------------- /scripts/old/replicate_genome.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/old/replicate_genome.pl -------------------------------------------------------------------------------- /scripts/old/simle2sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/old/simle2sqlite.py -------------------------------------------------------------------------------- /scripts/parse_cufflinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/parse_cufflinks.py -------------------------------------------------------------------------------- /scripts/percent_gc_at.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/percent_gc_at.py -------------------------------------------------------------------------------- /scripts/pileup_SNPs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/pileup_SNPs.pl -------------------------------------------------------------------------------- /scripts/pileup_to_bed.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/pileup_to_bed.pl -------------------------------------------------------------------------------- /scripts/popgen/sumstats.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/popgen/sumstats.pl -------------------------------------------------------------------------------- /scripts/process_fasta.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/process_fasta.pl -------------------------------------------------------------------------------- /scripts/query_analytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/query_analytics.py -------------------------------------------------------------------------------- /scripts/send_email.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/send_email.pl -------------------------------------------------------------------------------- /scripts/sort_fasta.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/sort_fasta.pl -------------------------------------------------------------------------------- /scripts/synmap/blast2bed.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/synmap/blast2bed.pl -------------------------------------------------------------------------------- /scripts/synmap/dag_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/synmap/dag_tools.py -------------------------------------------------------------------------------- /scripts/synmap/dotplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/synmap/dotplot.py -------------------------------------------------------------------------------- /scripts/synmap/dotplot_dots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/synmap/dotplot_dots.py -------------------------------------------------------------------------------- /scripts/synmap/gene_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/synmap/gene_order.py -------------------------------------------------------------------------------- /scripts/synmap/generate_fasta.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/synmap/generate_fasta.pl -------------------------------------------------------------------------------- /scripts/synmap/gevo_links.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/synmap/gevo_links.pl -------------------------------------------------------------------------------- /scripts/synmap/kscalc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/synmap/kscalc.pl -------------------------------------------------------------------------------- /scripts/synmap/process_dups.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/synmap/process_dups.pl -------------------------------------------------------------------------------- /scripts/synmap/svgfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/synmap/svgfig.py -------------------------------------------------------------------------------- /scripts/synmap/synmerge_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/synmap/synmerge_3.py -------------------------------------------------------------------------------- /scripts/system_stats.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/system_stats.pl -------------------------------------------------------------------------------- /scripts/tophat.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/tophat.pl -------------------------------------------------------------------------------- /scripts/utils/audit_coge5.5.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/utils/audit_coge5.5.pl -------------------------------------------------------------------------------- /scripts/utils/audit_datasets.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/utils/audit_datasets.pl -------------------------------------------------------------------------------- /scripts/utils/gen_fake_data.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/utils/gen_fake_data.pl -------------------------------------------------------------------------------- /scripts/utils/update-jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/utils/update-jobs.py -------------------------------------------------------------------------------- /scripts/validate_fastq.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/scripts/validate_fastq.pl -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/setup.sh -------------------------------------------------------------------------------- /tests/JEX/validate_workflow.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tests/JEX/validate_workflow.pl -------------------------------------------------------------------------------- /tests/api/cogeblast.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tests/api/cogeblast.robot -------------------------------------------------------------------------------- /tests/api/data/experiment_add.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tests/api/data/experiment_add.json -------------------------------------------------------------------------------- /tests/api/data/genome_add.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tests/api/data/genome_add.json -------------------------------------------------------------------------------- /tests/api/data/genome_fetch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tests/api/data/genome_fetch.json -------------------------------------------------------------------------------- /tests/api/data/notebook_add.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tests/api/data/notebook_add.json -------------------------------------------------------------------------------- /tests/api/data/notebook_fetch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tests/api/data/notebook_fetch.json -------------------------------------------------------------------------------- /tests/api/experiments.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tests/api/experiments.robot -------------------------------------------------------------------------------- /tests/api/export.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tests/api/export.robot -------------------------------------------------------------------------------- /tests/api/genomes.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tests/api/genomes.robot -------------------------------------------------------------------------------- /tests/api/notebooks.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tests/api/notebooks.robot -------------------------------------------------------------------------------- /tests/api/organisms.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tests/api/organisms.robot -------------------------------------------------------------------------------- /tests/api/performance.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tests/api/performance.robot -------------------------------------------------------------------------------- /tests/api/resource.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tests/api/resource.robot -------------------------------------------------------------------------------- /tests/api/run_tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | robot --outputdir ../../web/test . 3 | -------------------------------------------------------------------------------- /tests/api/search.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tests/api/search.robot -------------------------------------------------------------------------------- /tmpl/Account.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/Account.tmpl -------------------------------------------------------------------------------- /tmpl/Admin.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/Admin.tmpl -------------------------------------------------------------------------------- /tmpl/CoGeAlign.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/CoGeAlign.tmpl -------------------------------------------------------------------------------- /tmpl/CoGeBlast.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/CoGeBlast.tmpl -------------------------------------------------------------------------------- /tmpl/CoGeBlast_coge.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/CoGeBlast_coge.tmpl -------------------------------------------------------------------------------- /tmpl/CoGeBlast_ncbi.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/CoGeBlast_ncbi.tmpl -------------------------------------------------------------------------------- /tmpl/CodeOn.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/CodeOn.tmpl -------------------------------------------------------------------------------- /tmpl/ExperimentList.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/ExperimentList.tmpl -------------------------------------------------------------------------------- /tmpl/ExperimentView.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/ExperimentView.tmpl -------------------------------------------------------------------------------- /tmpl/FastaView.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/FastaView.tmpl -------------------------------------------------------------------------------- /tmpl/FeatList.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/FeatList.tmpl -------------------------------------------------------------------------------- /tmpl/FeatMap.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/FeatMap.tmpl -------------------------------------------------------------------------------- /tmpl/FeatView.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/FeatView.tmpl -------------------------------------------------------------------------------- /tmpl/GEvo-old.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/GEvo-old.tmpl -------------------------------------------------------------------------------- /tmpl/GEvo.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/GEvo.tmpl -------------------------------------------------------------------------------- /tmpl/GEvo_direct.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/GEvo_direct.tmpl -------------------------------------------------------------------------------- /tmpl/GenomeInfo.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/GenomeInfo.tmpl -------------------------------------------------------------------------------- /tmpl/GenomeList.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/GenomeList.tmpl -------------------------------------------------------------------------------- /tmpl/GenomeView.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/GenomeView.tmpl -------------------------------------------------------------------------------- /tmpl/GroupView.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/GroupView.tmpl -------------------------------------------------------------------------------- /tmpl/HSPView.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/HSPView.tmpl -------------------------------------------------------------------------------- /tmpl/LoadAnnotation.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/LoadAnnotation.tmpl -------------------------------------------------------------------------------- /tmpl/LoadBatch.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/LoadBatch.tmpl -------------------------------------------------------------------------------- /tmpl/LoadExperiment.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/LoadExperiment.tmpl -------------------------------------------------------------------------------- /tmpl/LoadGenome.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/LoadGenome.tmpl -------------------------------------------------------------------------------- /tmpl/MatrixView.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/MatrixView.tmpl -------------------------------------------------------------------------------- /tmpl/NotebookView.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/NotebookView.tmpl -------------------------------------------------------------------------------- /tmpl/OrganismView.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/OrganismView.tmpl -------------------------------------------------------------------------------- /tmpl/PopGen.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/PopGen.tmpl -------------------------------------------------------------------------------- /tmpl/Project.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/Project.tmpl -------------------------------------------------------------------------------- /tmpl/SearchResults.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/SearchResults.tmpl -------------------------------------------------------------------------------- /tmpl/SeqView.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/SeqView.tmpl -------------------------------------------------------------------------------- /tmpl/SynFind.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/SynFind.tmpl -------------------------------------------------------------------------------- /tmpl/SynMap.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/SynMap.tmpl -------------------------------------------------------------------------------- /tmpl/SynMap3D.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/SynMap3D.tmpl -------------------------------------------------------------------------------- /tmpl/SynMapN.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/SynMapN.tmpl -------------------------------------------------------------------------------- /tmpl/SynSub.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/SynSub.tmpl -------------------------------------------------------------------------------- /tmpl/Taxonomy.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/Taxonomy.tmpl -------------------------------------------------------------------------------- /tmpl/User.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/User.tmpl -------------------------------------------------------------------------------- /tmpl/box.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/box.tmpl -------------------------------------------------------------------------------- /tmpl/embedded_page.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/embedded_page.tmpl -------------------------------------------------------------------------------- /tmpl/footer.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/footer.tmpl -------------------------------------------------------------------------------- /tmpl/generic_page.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/generic_page.tmpl -------------------------------------------------------------------------------- /tmpl/header.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/header.tmpl -------------------------------------------------------------------------------- /tmpl/header_includes.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/header_includes.tmpl -------------------------------------------------------------------------------- /tmpl/index.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/index.tmpl -------------------------------------------------------------------------------- /tmpl/partials/organism_menu.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/partials/organism_menu.tmpl -------------------------------------------------------------------------------- /tmpl/partials/synmap_results.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/partials/synmap_results.tmpl -------------------------------------------------------------------------------- /tmpl/partials/user_common.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/partials/user_common.tmpl -------------------------------------------------------------------------------- /tmpl/tRNAView.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/tRNAView.tmpl -------------------------------------------------------------------------------- /tmpl/widgets/AdminOnly.tmpl: -------------------------------------------------------------------------------- 1 |

You must be an admin to view this page.

2 | -------------------------------------------------------------------------------- /tmpl/widgets/Annotations.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/widgets/Annotations.tmpl -------------------------------------------------------------------------------- /tmpl/widgets/Certified.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/widgets/Certified.tmpl -------------------------------------------------------------------------------- /tmpl/widgets/Dotplot.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/widgets/Dotplot.tmpl -------------------------------------------------------------------------------- /tmpl/widgets/FileSelect.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/widgets/FileSelect.tmpl -------------------------------------------------------------------------------- /tmpl/widgets/GenomeSelect.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/widgets/GenomeSelect.tmpl -------------------------------------------------------------------------------- /tmpl/widgets/JBrowse.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/widgets/JBrowse.tmpl -------------------------------------------------------------------------------- /tmpl/widgets/Login.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/widgets/Login.tmpl -------------------------------------------------------------------------------- /tmpl/widgets/Overlay.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/widgets/Overlay.tmpl -------------------------------------------------------------------------------- /tmpl/widgets/Progress.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/widgets/Progress.tmpl -------------------------------------------------------------------------------- /tmpl/widgets/Spinner.tmpl: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /tmpl/widgets/Splash.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/widgets/Splash.tmpl -------------------------------------------------------------------------------- /tmpl/widgets/Wizard.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/widgets/Wizard.tmpl -------------------------------------------------------------------------------- /tmpl/widgets/pipeline-options.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/tmpl/widgets/pipeline-options.tmpl -------------------------------------------------------------------------------- /web/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/.htaccess -------------------------------------------------------------------------------- /web/Account.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/Account.pl -------------------------------------------------------------------------------- /web/Admin.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/Admin.pl -------------------------------------------------------------------------------- /web/CoGeAlign.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/CoGeAlign.pl -------------------------------------------------------------------------------- /web/CoGeBlast.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/CoGeBlast.pl -------------------------------------------------------------------------------- /web/CodeOn.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/CodeOn.pl -------------------------------------------------------------------------------- /web/DirSelect.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/DirSelect.pl -------------------------------------------------------------------------------- /web/DisplayMessage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/DisplayMessage.pl -------------------------------------------------------------------------------- /web/Error.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/Error.pl -------------------------------------------------------------------------------- /web/ExperimentList.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/ExperimentList.pl -------------------------------------------------------------------------------- /web/ExperimentView.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/ExperimentView.pl -------------------------------------------------------------------------------- /web/FastaView.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/FastaView.pl -------------------------------------------------------------------------------- /web/FeatAnno.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/FeatAnno.pl -------------------------------------------------------------------------------- /web/FeatList.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/FeatList.pl -------------------------------------------------------------------------------- /web/FeatMap.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/FeatMap.pl -------------------------------------------------------------------------------- /web/FeatView.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/FeatView.pl -------------------------------------------------------------------------------- /web/GEvo-old.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/GEvo-old.pl -------------------------------------------------------------------------------- /web/GEvo.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/GEvo.pl -------------------------------------------------------------------------------- /web/GEvo_direct.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/GEvo_direct.pl -------------------------------------------------------------------------------- /web/GenomeInfo.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/GenomeInfo.pl -------------------------------------------------------------------------------- /web/GenomeList.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/GenomeList.pl -------------------------------------------------------------------------------- /web/GenomeView.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/GenomeView.pl -------------------------------------------------------------------------------- /web/GroupView.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/GroupView.pl -------------------------------------------------------------------------------- /web/HSPView.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/HSPView.pl -------------------------------------------------------------------------------- /web/LoadAnnotation.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/LoadAnnotation.pl -------------------------------------------------------------------------------- /web/LoadBatch.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/LoadBatch.pl -------------------------------------------------------------------------------- /web/LoadExperiment.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/LoadExperiment.pl -------------------------------------------------------------------------------- /web/LoadGenome.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/LoadGenome.pl -------------------------------------------------------------------------------- /web/MatrixView.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/MatrixView.pl -------------------------------------------------------------------------------- /web/NotebookView.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/NotebookView.pl -------------------------------------------------------------------------------- /web/OrganismView.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/OrganismView.pl -------------------------------------------------------------------------------- /web/PopGen.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/PopGen.pl -------------------------------------------------------------------------------- /web/Project.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/Project.pl -------------------------------------------------------------------------------- /web/SSWAP/CoGe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/SSWAP/CoGe -------------------------------------------------------------------------------- /web/SSWAP/CoGe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/SSWAP/CoGe.json -------------------------------------------------------------------------------- /web/SSWAP/README: -------------------------------------------------------------------------------- 1 | Converting JSON to RDF/XML OWL 2 | curl -d@CoGe.json http://sswap.info/api/ > CoGe 3 | -------------------------------------------------------------------------------- /web/SearchResults.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/SearchResults.pl -------------------------------------------------------------------------------- /web/SeqView.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/SeqView.pl -------------------------------------------------------------------------------- /web/SynFind.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/SynFind.pl -------------------------------------------------------------------------------- /web/SynMap.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/SynMap.pl -------------------------------------------------------------------------------- /web/SynMap3D.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/SynMap3D.pl -------------------------------------------------------------------------------- /web/SynMapN.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/SynMapN.pl -------------------------------------------------------------------------------- /web/SynSub.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/SynSub.pl -------------------------------------------------------------------------------- /web/Taxonomy.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/Taxonomy.pl -------------------------------------------------------------------------------- /web/User.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/User.pl -------------------------------------------------------------------------------- /web/ViennaFold.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/ViennaFold.pl -------------------------------------------------------------------------------- /web/bisque_image.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/bisque_image.pl -------------------------------------------------------------------------------- /web/bisque_viewer.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/bisque_viewer.pl -------------------------------------------------------------------------------- /web/coge2bed.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/coge2bed.pl -------------------------------------------------------------------------------- /web/coge_feature_types.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/coge_feature_types.sql -------------------------------------------------------------------------------- /web/coge_mysql_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/coge_mysql_schema.sql -------------------------------------------------------------------------------- /web/css/coge-spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/css/coge-spinner.css -------------------------------------------------------------------------------- /web/css/coge.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/css/coge.css -------------------------------------------------------------------------------- /web/css/colorpicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/css/colorpicker.css -------------------------------------------------------------------------------- /web/css/dataTables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/css/dataTables.css -------------------------------------------------------------------------------- /web/css/glyphicons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/css/glyphicons.css -------------------------------------------------------------------------------- /web/css/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/css/layout.css -------------------------------------------------------------------------------- /web/css/ui.tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/css/ui.tabs.css -------------------------------------------------------------------------------- /web/export_NCBI_TBL.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/export_NCBI_TBL.pl -------------------------------------------------------------------------------- /web/favicon.ico: -------------------------------------------------------------------------------- 1 | picts/urlicon/favicon.ico -------------------------------------------------------------------------------- /web/get_percent_gc_at_for_chr.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/get_percent_gc_at_for_chr.pl -------------------------------------------------------------------------------- /web/get_seq_for_chr.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/get_seq_for_chr.pl -------------------------------------------------------------------------------- /web/gobe/docs/textfield.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/gobe/docs/textfield.html -------------------------------------------------------------------------------- /web/gobe/flash/Gobe.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/gobe/flash/Gobe.hx -------------------------------------------------------------------------------- /web/gobe/flash/HSP.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/gobe/flash/HSP.hx -------------------------------------------------------------------------------- /web/gobe/flash/gobe.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/gobe/flash/gobe.hxml -------------------------------------------------------------------------------- /web/gobe/flash/gobe.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/gobe/flash/gobe.swf -------------------------------------------------------------------------------- /web/gobe/flash/hxjson2-old/JSON.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/gobe/flash/hxjson2-old/JSON.hx -------------------------------------------------------------------------------- /web/gobe/flash/hxjson2/JSON.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/gobe/flash/hxjson2/JSON.hx -------------------------------------------------------------------------------- /web/gobe/flash/service.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/gobe/flash/service.wsgi -------------------------------------------------------------------------------- /web/gobe/gobe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/gobe/gobe.py -------------------------------------------------------------------------------- /web/gobe/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/gobe/index.html -------------------------------------------------------------------------------- /web/gobe/new_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/gobe/new_images.sh -------------------------------------------------------------------------------- /web/gobe/predict_cns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/gobe/predict_cns.py -------------------------------------------------------------------------------- /web/gobe/predict_cns.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/gobe/predict_cns.pyc -------------------------------------------------------------------------------- /web/gobe/query.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/gobe/query.pl -------------------------------------------------------------------------------- /web/gobe/static/clear_button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/gobe/static/clear_button.gif -------------------------------------------------------------------------------- /web/gobe/static/close_button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/gobe/static/close_button.gif -------------------------------------------------------------------------------- /web/gobe/static/gobe-new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/gobe/static/gobe-new.js -------------------------------------------------------------------------------- /web/gobe/static/gobe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/gobe/static/gobe.js -------------------------------------------------------------------------------- /web/gobe/static/minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/gobe/static/minus.gif -------------------------------------------------------------------------------- /web/gobe/static/plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/gobe/static/plus.gif -------------------------------------------------------------------------------- /web/gobe/static/save.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/gobe/static/save.gif -------------------------------------------------------------------------------- /web/gobe/tmp/GEvo_WxUonWBr.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/gobe/tmp/GEvo_WxUonWBr.log -------------------------------------------------------------------------------- /web/gobe/tmp/GEvo_WxUonWBr.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/gobe/tmp/GEvo_WxUonWBr.sqlite -------------------------------------------------------------------------------- /web/gobe/tmp/GEvo_WxUonWBr_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/gobe/tmp/GEvo_WxUonWBr_1.png -------------------------------------------------------------------------------- /web/gobe/tmp/GEvo_WxUonWBr_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/gobe/tmp/GEvo_WxUonWBr_2.png -------------------------------------------------------------------------------- /web/gobe/tmp/GEvo_WxUonWBr_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/gobe/tmp/GEvo_WxUonWBr_3.png -------------------------------------------------------------------------------- /web/image.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/image.pl -------------------------------------------------------------------------------- /web/index.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/index.pl -------------------------------------------------------------------------------- /web/jbrowse_conf.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /web/js/coge/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/coge/colors.js -------------------------------------------------------------------------------- /web/js/coge/contentpanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/coge/contentpanel.js -------------------------------------------------------------------------------- /web/js/coge/datagrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/coge/datagrid.js -------------------------------------------------------------------------------- /web/js/coge/entrez.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/coge/entrez.js -------------------------------------------------------------------------------- /web/js/coge/exporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/coge/exporter.js -------------------------------------------------------------------------------- /web/js/coge/file-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/coge/file-select.js -------------------------------------------------------------------------------- /web/js/coge/infopanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/coge/infopanel.js -------------------------------------------------------------------------------- /web/js/coge/logout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/coge/logout.js -------------------------------------------------------------------------------- /web/js/coge/newsfeed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/coge/newsfeed.js -------------------------------------------------------------------------------- /web/js/coge/progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/coge/progress.js -------------------------------------------------------------------------------- /web/js/coge/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/coge/services.js -------------------------------------------------------------------------------- /web/js/coge/tocpanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/coge/tocpanel.js -------------------------------------------------------------------------------- /web/js/coge/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/coge/utils.js -------------------------------------------------------------------------------- /web/js/coge/wikifeed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/coge/wikifeed.js -------------------------------------------------------------------------------- /web/js/coge/wizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/coge/wizard.js -------------------------------------------------------------------------------- /web/js/colorpicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/colorpicker.js -------------------------------------------------------------------------------- /web/js/filterlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/filterlist.js -------------------------------------------------------------------------------- /web/js/fractbias_plotter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/fractbias_plotter.js -------------------------------------------------------------------------------- /web/js/img/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/img/blank.gif -------------------------------------------------------------------------------- /web/js/img/east-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/img/east-mini.png -------------------------------------------------------------------------------- /web/js/img/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/img/slider.png -------------------------------------------------------------------------------- /web/js/img/west-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/img/west-mini.png -------------------------------------------------------------------------------- /web/js/img/zoom-minus-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/img/zoom-minus-mini.png -------------------------------------------------------------------------------- /web/js/img/zoom-plus-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/img/zoom-plus-mini.png -------------------------------------------------------------------------------- /web/js/img/zoombar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/img/zoombar.png -------------------------------------------------------------------------------- /web/js/jquery.fileupload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/jquery.fileupload.js -------------------------------------------------------------------------------- /web/js/jquery.tablesorter.2.0.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/jquery.tablesorter.2.0.3.js -------------------------------------------------------------------------------- /web/js/jquery.tablesorter.pager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/jquery.tablesorter.pager.js -------------------------------------------------------------------------------- /web/js/pages/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/pages/admin.js -------------------------------------------------------------------------------- /web/js/pages/blast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/pages/blast.js -------------------------------------------------------------------------------- /web/js/pages/experiment-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/pages/experiment-view.js -------------------------------------------------------------------------------- /web/js/pages/genome-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/pages/genome-info.js -------------------------------------------------------------------------------- /web/js/pages/load-annotation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/pages/load-annotation.js -------------------------------------------------------------------------------- /web/js/pages/load-batch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/pages/load-batch.js -------------------------------------------------------------------------------- /web/js/pages/load-experiment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/pages/load-experiment.js -------------------------------------------------------------------------------- /web/js/pages/load-genome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/pages/load-genome.js -------------------------------------------------------------------------------- /web/js/pages/notebook-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/pages/notebook-view.js -------------------------------------------------------------------------------- /web/js/pages/organism-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/pages/organism-view.js -------------------------------------------------------------------------------- /web/js/pages/project.js: -------------------------------------------------------------------------------- 1 | //TODO -------------------------------------------------------------------------------- /web/js/pages/search-results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/pages/search-results.js -------------------------------------------------------------------------------- /web/js/pages/synfind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/pages/synfind.js -------------------------------------------------------------------------------- /web/js/pages/synmap-3d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/pages/synmap-3d.js -------------------------------------------------------------------------------- /web/js/pages/synmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/pages/synmap.js -------------------------------------------------------------------------------- /web/js/pages/synmapn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/pages/synmapn.js -------------------------------------------------------------------------------- /web/js/pages/user-common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/pages/user-common.js -------------------------------------------------------------------------------- /web/js/pages/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/pages/user.js -------------------------------------------------------------------------------- /web/js/sswap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/sswap.js -------------------------------------------------------------------------------- /web/js/syn3d/VREffect_modified.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/syn3d/VREffect_modified.js -------------------------------------------------------------------------------- /web/js/syn3d/WebVR_modified.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/syn3d/WebVR_modified.js -------------------------------------------------------------------------------- /web/js/syn3d/syn3d-0.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/syn3d/syn3d-0.2.js -------------------------------------------------------------------------------- /web/js/syn3d/syn3d-1.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/syn3d/syn3d-1.0.js -------------------------------------------------------------------------------- /web/js/syn3d/three-73.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/syn3d/three-73.min.js -------------------------------------------------------------------------------- /web/js/syn3d/three-77.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/syn3d/three-77.min.js -------------------------------------------------------------------------------- /web/js/syn3d/threex.domevent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/syn3d/threex.domevent.js -------------------------------------------------------------------------------- /web/js/ui.tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/ui.tabs.js -------------------------------------------------------------------------------- /web/js/xhairs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/js/xhairs.js -------------------------------------------------------------------------------- /web/picts/A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/A.png -------------------------------------------------------------------------------- /web/picts/C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/C.png -------------------------------------------------------------------------------- /web/picts/CoGe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/CoGe.svg -------------------------------------------------------------------------------- /web/picts/CoGeBlast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/CoGeBlast.svg -------------------------------------------------------------------------------- /web/picts/CoGeCircuitLeaf1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/CoGeCircuitLeaf1.svg -------------------------------------------------------------------------------- /web/picts/CoGePedia_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/CoGePedia_icon.png -------------------------------------------------------------------------------- /web/picts/CoGe_logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/CoGe_logo_small.png -------------------------------------------------------------------------------- /web/picts/FeatView.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/FeatView.svg -------------------------------------------------------------------------------- /web/picts/G.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/G.png -------------------------------------------------------------------------------- /web/picts/GEvo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/GEvo.svg -------------------------------------------------------------------------------- /web/picts/GenomeView.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/GenomeView.svg -------------------------------------------------------------------------------- /web/picts/LoadExperiment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/LoadExperiment.svg -------------------------------------------------------------------------------- /web/picts/LoadGenome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/LoadGenome.svg -------------------------------------------------------------------------------- /web/picts/LyonsLab-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/LyonsLab-logo.png -------------------------------------------------------------------------------- /web/picts/Moore_Foundation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/Moore_Foundation.png -------------------------------------------------------------------------------- /web/picts/MotifView-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/MotifView-logo.jpg -------------------------------------------------------------------------------- /web/picts/Opticon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/Opticon.ttf -------------------------------------------------------------------------------- /web/picts/Organism.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/Organism.svg -------------------------------------------------------------------------------- /web/picts/OrganismView.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/OrganismView.svg -------------------------------------------------------------------------------- /web/picts/SynFind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/SynFind.svg -------------------------------------------------------------------------------- /web/picts/SynMap-inverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/SynMap-inverse.svg -------------------------------------------------------------------------------- /web/picts/SynMap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/SynMap.svg -------------------------------------------------------------------------------- /web/picts/SynMap3d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/SynMap3d.svg -------------------------------------------------------------------------------- /web/picts/T.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/T.png -------------------------------------------------------------------------------- /web/picts/ajax-loader-large.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/ajax-loader-large.gif -------------------------------------------------------------------------------- /web/picts/ajax-loader-medium.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/ajax-loader-medium.gif -------------------------------------------------------------------------------- /web/picts/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/ajax-loader.gif -------------------------------------------------------------------------------- /web/picts/arrow-down-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/arrow-down-icon.png -------------------------------------------------------------------------------- /web/picts/arrow-right-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/arrow-right-icon.png -------------------------------------------------------------------------------- /web/picts/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/ball.png -------------------------------------------------------------------------------- /web/picts/blast_table/small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/blast_table/small.gif -------------------------------------------------------------------------------- /web/picts/buttons/GEvo/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/buttons/GEvo/add.png -------------------------------------------------------------------------------- /web/picts/buttons/GEvo/add_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/buttons/GEvo/add_new.png -------------------------------------------------------------------------------- /web/picts/buttons/GEvo/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/buttons/GEvo/clear.png -------------------------------------------------------------------------------- /web/picts/buttons/GEvo/go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/buttons/GEvo/go.png -------------------------------------------------------------------------------- /web/picts/buttons/GEvo/go_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/buttons/GEvo/go_new.png -------------------------------------------------------------------------------- /web/picts/buttons/GEvo/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/buttons/GEvo/remove.png -------------------------------------------------------------------------------- /web/picts/buttons/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/buttons/minus.png -------------------------------------------------------------------------------- /web/picts/buttons/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/buttons/plus.png -------------------------------------------------------------------------------- /web/picts/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/cancel.png -------------------------------------------------------------------------------- /web/picts/chromosome-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/chromosome-small.png -------------------------------------------------------------------------------- /web/picts/chromosome2-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/chromosome2-small.png -------------------------------------------------------------------------------- /web/picts/comment-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/comment-icon.png -------------------------------------------------------------------------------- /web/picts/default_user_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/default_user_image.png -------------------------------------------------------------------------------- /web/picts/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/delete.png -------------------------------------------------------------------------------- /web/picts/disc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/disc.png -------------------------------------------------------------------------------- /web/picts/disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/disk.png -------------------------------------------------------------------------------- /web/picts/dna-icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/dna-icon-small.png -------------------------------------------------------------------------------- /web/picts/dna-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/dna-icon.png -------------------------------------------------------------------------------- /web/picts/dna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/dna.png -------------------------------------------------------------------------------- /web/picts/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/error.png -------------------------------------------------------------------------------- /web/picts/feature-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/feature-icon.png -------------------------------------------------------------------------------- /web/picts/gevo-synteny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/gevo-synteny.png -------------------------------------------------------------------------------- /web/picts/gnome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/gnome.jpg -------------------------------------------------------------------------------- /web/picts/group-icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/group-icon-small.png -------------------------------------------------------------------------------- /web/picts/group-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/group-icon.png -------------------------------------------------------------------------------- /web/picts/in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/in.png -------------------------------------------------------------------------------- /web/picts/no-comment-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/no-comment-icon.png -------------------------------------------------------------------------------- /web/picts/notebook-icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/notebook-icon-small.png -------------------------------------------------------------------------------- /web/picts/notebook-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/notebook-icon.png -------------------------------------------------------------------------------- /web/picts/nsf-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/nsf-logo.gif -------------------------------------------------------------------------------- /web/picts/other/CoGe-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/other/CoGe-icon.png -------------------------------------------------------------------------------- /web/picts/other/NCBI-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/other/NCBI-icon.png -------------------------------------------------------------------------------- /web/picts/other/google-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/other/google-icon.png -------------------------------------------------------------------------------- /web/picts/other/wikipedia-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/other/wikipedia-icon.png -------------------------------------------------------------------------------- /web/picts/out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/out.png -------------------------------------------------------------------------------- /web/picts/page_not_found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/page_not_found.png -------------------------------------------------------------------------------- /web/picts/preview/Blast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/preview/Blast.png -------------------------------------------------------------------------------- /web/picts/preview/FeatView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/preview/FeatView.png -------------------------------------------------------------------------------- /web/picts/preview/GEvo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/preview/GEvo.png -------------------------------------------------------------------------------- /web/picts/preview/GeLo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/preview/GeLo.png -------------------------------------------------------------------------------- /web/picts/preview/GenomeView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/preview/GenomeView.png -------------------------------------------------------------------------------- /web/picts/preview/MSAView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/preview/MSAView.png -------------------------------------------------------------------------------- /web/picts/preview/SynMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/preview/SynMap.png -------------------------------------------------------------------------------- /web/picts/preview/TreeView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/preview/TreeView.png -------------------------------------------------------------------------------- /web/picts/preview/app_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/preview/app_schema.png -------------------------------------------------------------------------------- /web/picts/refresh-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/refresh-icon.png -------------------------------------------------------------------------------- /web/picts/server_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/server_error.png -------------------------------------------------------------------------------- /web/picts/smiley_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/smiley_default.png -------------------------------------------------------------------------------- /web/picts/smiley_default2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/smiley_default2.png -------------------------------------------------------------------------------- /web/picts/smiley_face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/smiley_face.png -------------------------------------------------------------------------------- /web/picts/smileyface-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/smileyface-icon.png -------------------------------------------------------------------------------- /web/picts/star-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/star-full.png -------------------------------------------------------------------------------- /web/picts/star-hollow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/star-hollow.png -------------------------------------------------------------------------------- /web/picts/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/success.png -------------------------------------------------------------------------------- /web/picts/table/spacer-1x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/table/spacer-1x1.png -------------------------------------------------------------------------------- /web/picts/tabs/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/tabs/loading.gif -------------------------------------------------------------------------------- /web/picts/tabs/tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/tabs/tab.png -------------------------------------------------------------------------------- /web/picts/test_tube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/test_tube.png -------------------------------------------------------------------------------- /web/picts/testtube-icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/testtube-icon-small.png -------------------------------------------------------------------------------- /web/picts/testtube-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/testtube-icon.png -------------------------------------------------------------------------------- /web/picts/thumbs_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/thumbs_down.png -------------------------------------------------------------------------------- /web/picts/thumbs_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/thumbs_up.png -------------------------------------------------------------------------------- /web/picts/uc_seal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/uc_seal.gif -------------------------------------------------------------------------------- /web/picts/urlicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/urlicon/favicon.ico -------------------------------------------------------------------------------- /web/picts/usda_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/usda_logo.png -------------------------------------------------------------------------------- /web/picts/user-icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/user-icon-small.png -------------------------------------------------------------------------------- /web/picts/user-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/user-icon.png -------------------------------------------------------------------------------- /web/picts/vr_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/vr_icon.png -------------------------------------------------------------------------------- /web/picts/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/warning.png -------------------------------------------------------------------------------- /web/picts/youtube-play-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/picts/youtube-play-button.png -------------------------------------------------------------------------------- /web/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/robots.txt -------------------------------------------------------------------------------- /web/run_dotplot.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/run_dotplot.pl -------------------------------------------------------------------------------- /web/services/api.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/services/api.pl -------------------------------------------------------------------------------- /web/services/jex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/services/jex.py -------------------------------------------------------------------------------- /web/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/setup.sh -------------------------------------------------------------------------------- /web/tRNAView.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyonsLab/coge/HEAD/web/tRNAView.pl --------------------------------------------------------------------------------