Skip to content

Instantly share code, notes, and snippets.

@cuongld2
Created March 24, 2021 03:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cuongld2/82de6fbc971ae0ce27d9e6cd6b9699cb to your computer and use it in GitHub Desktop.
Save cuongld2/82de6fbc971ae0ce27d9e6cd6b9699cb to your computer and use it in GitHub Desktop.
Model for mutation assessor
extern crate reqwest;
extern crate tokio;
extern crate serde_json;
extern crate serde;
use serde::{Deserialize};
#[derive(Deserialize, Debug)]
pub struct MutationResponse {
pub input: String,
pub var: String,
pub gene: String,
pub msa: String,
pub pdb: String,
pub F_impact: String,
pub F_score: String,
pub uprot: String,
pub rsprot: String,
pub msa_height: String
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment