Example #1
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));
        }
Example #2
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));
        }
Example #3
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));
        }