Write a PYTHON script
Store https://www.genecards.org/cgi-bin/cardlisttxt.pl it in a flat file.
The GeneCards database currently contains 270,168 GeneCards
Parse the first 10 genes from each series (1A9N_Q-ZZZ3) https://www.genecards.org/cgi-bin/carddisp.pl?gene=GENE NAME
If the genes are less than 10 then parse all.
Extract Genomic Locations for GENE NAME and store it in a file for each gene you parse.For example
Open https://www.genecards.org/cgi-bin/carddisp.pl?gene=A1BG
Do scraping for “Genomic Locations for A1BG Gene”, you will see
Genomic Locations for A1BG Gene
chr19:58,345,178-58,353,492(GRCh38/hg38)
Size:8,315 bases
Orientation:Minus strand
Store the scrapped output into a file and rendered it in HTML as it looks in genecard
Create a web site for your curriculum vitae. You must use a two-column layout and second column must be the navigation bar.
Write a PYTHON program
Common header of the csv would be
ID, Diagnosis Age,Sex,Ethnicity Category,Histology,Adjuvant Treatment,ECOG Performance Status,Smoking History,Person Cigarette Smoking History Pack Year Value,Relapse Free Status,Relapse Free Status (Months),Ubiquitous Assay Panel,Percent Necrosis,Tumor Volume (cm3),Tumar Stage
JSON format sample
Sample output in HTML
Have a global search to filter any columns/rows.
Note: Use BootStrap, JQUERY Data table and CSS to beautify the output.
Write a python program to achieve Advanced Encryption Standard 128 bit key length encoding and decoding of text.
Program should be algorithm based rather than using any library function. Write both ENCODING and DECODING.
It should have the ability to encode even a FILE.
Input text
“To be, or not to be, that is the question:
Whether 'tis nobler in the mind to suffer
The slings and arrows of outrageous fortune,
Or to take arms against a sea of troubles
And by opposing end them. To die—to sleep,
Expected Encoded:
O426pZT/JplIF8kyaiz3BDnCS5gfsMqAQS3P4ddM6ymaAlpSJBd8BNkZMJwux18ScbGM/HQn8RGNb/5hS4x81tMZ4QGerqPt3eI+qx/JJGSXM234gWesQsdJp66AoNLUCxDqXSU2IgR58rQ65kavEv/WknnN9pFir9D8pMqMO+y5xlfckTKZzBtWfJfkmz2HN2aS5UJVfzHFoXH8nVHL9tj+qX7+hAS5bi7u+PFBWQk26O8gy5eYPYQ+HZqo6TUmc3Jrf6CqNsx+ljfg/JIAjs17058hM8wl19gdRSW9/CNkYM/00aTK9vMpjC2BSraUMDyIezefqv5JYTHpFpEa+k1peN0FxrJCvLtiMmYxlM0sjNrACU1mZu+
Create C++ full program that calculates Surface Area of a Sphere, knowing that the
Surface Area of a Sphere = 4 pi r2 (where r is radius of circle) and PI = 3.14.
Create C++ full program that allows Exams Officer to add a Semester Mark and
Examination Mark, and Give Final Mark as Average of the two. The program must then
do the following:
✓ Display Semester mark, Examination mark, and Final mark
✓ If final mark less than 40 results =”FAIL SUBMINIMUM”
✓ If final mark greater than or equal to 40 and less than 50 results=”FAIL
SUPPLEMETARY”
✓ If final mark greater than or equal to 50 and less than 75 results=”PASS”
✓ If final mark greater than 75 and less than 100 results=”PASS DISTINCTION”
✓ Otherwise results= “Invalid Input”
Create C++ full program that enables a lecturer to enter marks of student, the
lecture should add marks for Test 1, Test 2 and Test3, then the program should:
✓ Calculate the average of the test,
✓ Show whether the student qualify for exam or not,
✓ It must also shows qualified with a distinction if above 75.
Given an integer value N as input, write a program to print a shaded diamond 2*N -1 rows using an asterisk ( * ).
Note: There is a space after each asterisk ( * ) character.
Example N = 5. There for the output should be:
*
* *
* * *
* * * *
* * * * *
* *
* *
* *
*
Array is
string productitems [] = {product A,….
double prices [] = {14.00,
How to use array to add product ?
and calculate the total price ?
and get total price in the array?
Write a function ComputeVal that takes one integer parameter and returns 4 times the parameter.
Ex: ComputeVal(3) returns 12.