Exemple #1
0
 public static string GetCutSequence(int SeqStart, int SeqEnd, int Strand, int Chr, string OrganismAlias)
 {
     return
         (GetCleanFasta(
              HTTP_Mgt.HttpGet(
                  KEGGREST_url_mgt.GetCutSequenceURL(SeqStart, SeqEnd, Strand, Chr, OrganismAlias))));
 }
Exemple #2
0
        public static List <GeneInfo> GetGeneInfoByKEGGGenes(List <string> Organisms, string GeneName)
        {
            string AllInfo = HTTP_Mgt.HttpGet(KEGGREST_url_mgt.GetGenesInfoURL(Organisms, GeneName));

            Console.WriteLine(AllInfo);

            return(GetGeneInfoFromREST(AllInfo));
        }
Exemple #3
0
        public static List <GeneInfo> GetGeneInfoByKEGGGenes(string Organizm, List <string> KEGGGenes)
        {
            string AllInfo = HTTP_Mgt.HttpGet(KEGGREST_url_mgt.GetGenesInfoURL(Organizm, KEGGGenes));

            Console.WriteLine(AllInfo);

            return(GetGeneInfoFromREST(AllInfo));
        }
Exemple #4
0
        public static List <GeneInfo> GetGeneInfoByKEGGGenes(List <string> Organisms, List <string> GeneNames)
        {
            string AllInfo = HTTP_Mgt.HttpGet(KEGGREST_url_mgt.GetGenesInfoURL(Organisms, GeneNames));

            return(GetGeneInfoFromREST(AllInfo));
        }
Exemple #5
0
        public static List <string> GetKEGGGenesIDs(string Organizm, List <string> ECList)
        {
            string Reply = HTTP_Mgt.HttpGet(KEGGREST_url_mgt.GetOrgPathwayGenesURL(Organizm, ECList));

            return(SplitREST(Reply));
        }
Exemple #6
0
        public static List <string> GetNCBIGenesIDs(string Organizm, List <string> KEGGGenesIds)
        {
            string Reply = HTTP_Mgt.HttpGet(KEGGREST_url_mgt.GetKEGGtoNCBIconvURL(Organizm, KEGGGenesIds));

            return(SplitREST(Reply));
        }
Exemple #7
0
 public static string GetOrthologList(string OrthologNo)
 {
     return(HTTP_Mgt.HttpGet(KEGGREST_url_mgt.GetOrthologListURL(OrthologNo)));
 }