Difference between revisions of "Blitvak Week 9"
(fleshed out the visual inspection section) |
(added excel section) |
||
Line 122: | Line 122: | ||
*Looking at the OrderedLocusNames column, it was noticed that some of the entries contain underscores after the ''VC'' and others do not. By filtering so that only the entries with underscores appear, it was noticed that there are 3832 total entries with underscores. 3832 is half of 7664, which is the total amount of entries in the OrderedLocusNames table; this suggests that there exists two different versions of the data (with underscores and without). It was also noticed that both versions of the data (underscores and without) have some entries that include a letter A after the ''VC'' portion; through filtering, it was noticed that the entries with A's account for 1095 of the entries in both sets of data. | *Looking at the OrderedLocusNames column, it was noticed that some of the entries contain underscores after the ''VC'' and others do not. By filtering so that only the entries with underscores appear, it was noticed that there are 3832 total entries with underscores. 3832 is half of 7664, which is the total amount of entries in the OrderedLocusNames table; this suggests that there exists two different versions of the data (with underscores and without). It was also noticed that both versions of the data (underscores and without) have some entries that include a letter A after the ''VC'' portion; through filtering, it was noticed that the entries with A's account for 1095 of the entries in both sets of data. | ||
*Including the As in the command for the Match utility, <code>java -jar xmlpipedb-match-1.1.1.jar "VC_A?[0-9][0-9][0-9][0-9]" < uniprot-organism%3A243277.xml</code>, resulting in a result of 3831 unique matches; 3831 is an exact match of what was found using TallyEngine. | *Including the As in the command for the Match utility, <code>java -jar xmlpipedb-match-1.1.1.jar "VC_A?[0-9][0-9][0-9][0-9]" < uniprot-organism%3A243277.xml</code>, resulting in a result of 3831 unique matches; 3831 is an exact match of what was found using TallyEngine. | ||
− | *Modifying the SQL query so that the pattern includes the entries with A's, by using <code>select count(*) from genenametype where type = 'ordered locus' and value ~ 'VC_A?[0-9][0-9][0-9][0-9]';</code>, showed that there are 3831 entries (the number is in line with what TallyEngine found). | + | *Modifying the SQL query so that the pattern includes the entries with A's, by using <code>select count(*) from genenametype where type = 'ordered locus' and value ~ 'VC_A?[0-9][0-9][0-9][0-9]';</code>, showed that there are 3831 entries (the number is in line with what TallyEngine found). |
− | *It now appears that there is one entry in both data sets (underscore and non-underscore) that remained unaccounted for. The 'OrderedLocusNames' was exported in a format that Excel can read | + | *It now appears that there is one entry in both data sets (underscore and non-underscore) that remained unaccounted for. |
− | + | ====Using Microsoft Excel to Compare ID Lists==== | |
+ | *The 'OrderedLocusNames' table was first put in ascending order (lower ID #s come first) and was then exported in a format that Excel can read (was then opened with Excel) | ||
+ | *<code>java -jar xmlpipedb-match-1.1.1.jar "VC_A?[0-9][0-9][0-9][0-9]" < uniprot-organism%3A243277.xml > ordered_locus_match_results_BL.txt</code> was used via the Windows command line in order to export the ID lists with the underscores to a text file (one half of all of the IDs) | ||
+ | *The Match utility exported text file was opened via Excel and the colon ('':'') was set as the delimiter (since a colon separates the match count from the ID) | ||
+ | *pgAdmin III was booted up and the proper database was selected (V.cholerae_20151027_gmb3build5); the SQL query <code>select value from genenametype where type = 'ordered locus';</code> was inputted and "Execute query, write result to file" was clicked. Through these steps, the list of IDs from PostgreSQL were exported in an Excel friendly format (such as .csv) | ||
+ | |||
+ | *The column of IDs from 'OrderedLocusNames' and the one from the Match utility were put side by side in one Excel document (One column was given the label ''IDs FROM 'ORDEREDLOCUSNAMES''', and the other ''IDs FROM MATCH UTILITY'') | ||
+ | * | ||
Line 177: | Line 184: | ||
Benchmark .gdb file: | Benchmark .gdb file: | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
{{Template:blitvak}} | {{Template:blitvak}} |
Revision as of 03:02, 3 November 2015
Contents
- 1 Initial Preparations
- 2 Downloading the Required Files
- 3 Export Process
- 4 Gene Database Testing Report
- 4.1 Export Information
- 4.2 Using TallyEngine to test the newly created database
- 4.3 Using XMLPipeDB match to Validate the XML Results from TallyEngine
- 4.4 Using SQL Queries to Validate the PostgreSQL Database Results from the TallyEngine
- 4.5 OriginalRowCounts Comparison using Microsoft Access
- 4.6 Visual Inspection
- 4.7 .gdb Use in GenMAPP
- 4.8 Compare Gene Database to Outside Resource
- 4.9 OriginalRowCounts Comparison
Initial Preparations
List of required programs was initially sourced from the Running GenMAPP Builder page
One of the final goals is to perform an export of a Vibrio cholerae GenMAPP Gene Database
In preparation for this assignment, it was ensured that these programs were installed on a Windows workstation:
- 7-zip for the unpacking of compressed files
- PostgreSQL
- GenMAPP Builder
- Java JDK 1.8 64-bit (download jdk-8u65-windows-x64.exe)
- GenMAPP 2 (download GenMAPPv2Setup.exe)
- XMLPipeDB match utility
- A program that is able to read .mdb files (such as Microsoft Access)
Downloading the Required Files
List of required files was initially sourced from the Running GenMAPP Builder page
Retrieving the UniProt XML file, Performed on 10/27
- The UniProt Complete Proteomes page was entered
- The Superkingdom Bacteria was selected and Reference proteome was clicked on (72 results currently)
- "vibrio cholerae" was added to the search bar and search was clicked upon. The results were filtered to the only proteome of interest (Vibrio cholerae serotype O1 (strain ATCC 39315 / El Tor Inaba N16961))
- The result was clicked upon and, on the result page, UniProtKB was clicked upon in the "Map to" section (on left of the page)
- On the UniProtKB results page, Download was clicked; in the box that appeared, download all was selected, the format was set to XML, and the file was set to be compressed.
Retrieving the GOA file, Performed on 10/27
- The UniProt-GOA ftp site was entered
- The link to the "proteomes" directory was clicked in the main directory
- In "proteomes", the file V_cholerae_ATCC_39315.goa was searched for, found, and downloaded by using right-click with "Save link as"
Retrieving the GO OBO-XML file, Performed on 10/27
- The GO OBO-XML file was downloaded from the Gene Ontology download page
- "obo-xml.gz" was selected/clicked under Legacy Downloads
Downloading/Updating GenMAPP Builder, Performed on 10/27
- The files were downloaded from the XMLPipeDB releases page on GitHub
- Download link for gmbuilder-3.0.0-build-5 (the version used in this assignment)
- All of the downloaded files, if compressed, were extracted using 7-Zip. All required files were placed in one folder
- Downloaded on 10/27, Summary
- The complete proteome for V. cholerae was downloaded from UniProtKB in the XML format
- The GOA file for V. cholerae was downloaded from this link
- The GO OBO-XML formatted file for V. cholerae was downloaded from the GO website
- The most recent version (3.0.0, build 5) of gmBuilder was downloaded from GitHub
Export Process
Creating a New Database in PostgreSQL
- Steps taken were sourced from the Running GenMAPP Builder page
- pgAdmin III was launched and a connection to the server was made. "Databases" was right clicked and select "New Database..." was chosen. The database was given a name, V.cholerae_20151027_gmb3build5, and OK was clicked.
- The new database was selected and the Query Tool was launched. Open File was clicked in the Query Tool and gmbuilder.sql in the gmbuilder-3.0.0-build-5 folder (within the sql folder) was selected. Upon selection of that file, a query was loaded into Query Tool and it was subsequently executed by clicking the green "Execute Query" arrow
- This query populates the created database with all of its tables. In order to ensure that the query properly worked, it was checked that 167 tables existed in the database
Importing Data
- gmbuilder.bat in the gmbuilder folder was launched
- Under file -> configure database, the host was left as localhost, the port number was left as 5432, database name was set to V.cholerae_20151027_gmb3build5, Username was set to BL, Password was set to the password of the PostgreSQL database that was recently created. OK was clicked.
Data Import into V.cholerae_20151027_gmb3build5
- File -> Import UniProt XML was selected
- The UniProt XML file that was previously extracted was chosen, open was clicked. The import process was allowed to proceed uninterrupted.
- File -> Import GO OBO-XML was selected
- The GO OBO-XML that was previously extracted was chosen, open was clicked. The import process was allowed to proceed uninterrupted.
- File -> Import GOA was selected
- The GOA file that was downloaded previously was chosen, open was clicked, and the import process was allowed to proceed uninterrupted.
Exporting a GenMAPP Gene Database (.gdb file)
- File -> Export to GenMAPP Gene Database was selected
- BL was typed into the Owner field. The species of interest was selected for export (V. cholerae)
- Next was clicked, the create GenMAPP database file/location was selected, and the boxes for the exporting of Molecular Function, Cellular Component, and Biological Process Gene Ontology Terms were left checked. The export process was initialized by clicking next; the windows were left open for the program to continue and finish with the export process (was estimated to take somewhere between 1-2 hrs).
Gene Database Testing Report
Export Information
Version of GenMAPP Builder: 3.0.0-build-5
Computer on which export was run: Workstation in Seaver 120
Postgres Database name: V.cholerae_20151027_gmb3build5
UniProt XML filename: compressed uniprot-organism%3A243277_BL_20151027.xml
- UniProt XML version (found out using the UniProt News Page: UniProt release 2015_10
- UniProt XML download link: http://www.uniprot.org/uniprot/?query=organism:243277#
- Time taken to import: 2.99 minutes
- Note: Import times were as expected; nothing unusual occurred during the import process.
GO OBO-XML filename: compressed BL_20151027_go_daily-termdb.obo-xml
- GO OBO-XML version (derived from the date modified on the file, itself): Date modified - 10/27/2015 2:24 AM
- GO OBO-XML download link: GO website
- Time taken to import: 6.98 minutes
- Time taken to process: 4.54 minutes
- Note: Import times were as expected; nothing unusual occurred during the import process.
GOA filename: compressed 46.V_cholerae_ATCC_39315_BL_20151027.goa
- GOA version (taken from here: Last Update - 13-Oct-2015 07:31
- GOA download link: link
- Time taken to import: 0.06 minutes
- Note: Import times were as expected; nothing unusual occurred during the import process.
Name of .gdb file: compressed Vc-Std_20151027_BL.gdb
- Time taken to export: one hour and nineteen minutes
- Start time: 3:56
- End time: 5:15
Note: Export times were as expected; nothing unusual occurred during the export process. Program windows, however, were closed by the time the export product was observed; the time taken to export was found out by observing the time on the Date Modified section of the produced file. The found end time was in line with the times found by others (ranged around an hour and 15 minutes)
Using TallyEngine to test the newly created database
- PostgreSQL was initialized through pgAdmin III and the database V.cholerae_20151027_gmb3build5 was left running
- GenMAPP builder was booted and Run XML and Database Tallies for UniProt and GO was selected under the Tallies menu item; the UniProt XML and GO files that were imported were chosen
- Results of TallyEngine:
Using XMLPipeDB match to Validate the XML Results from TallyEngine
- The Windows command line was launched (cmd.exe)
- This set of commands was inputted into the command line in order to utilize XMLPipeDB match:
java -jar xmlpipedb-match-1.1.1.jar "VC_[0-9][0-9][0-9][0-9]" < uniprot-organism%3A243277.xml
- NOTE: Prior to executing the command, the folder that held the files and xmlpipedb-match-1.1.1.jar was entered through the Windows command line (a set of CD commands was used in order to enter the correct directory)
- 2738 unique matches were found through XMLPipeDB match
Are your results the same as you got for the TallyEngine? Why or why not?
- These results are not the same as what was found using TallyEngine (3831 results were found through TallyEngine). It is suspected that the match command pattern is not fully representative of everything that falls under OrderedLocusNames (the fault, it is believed, lies with match and not with TallyEngine)
Using SQL Queries to Validate the PostgreSQL Database Results from the TallyEngine
- pgAdmin III was booted and all of the necessary connections were made
- It was realized that the gene/name tags in the XML file end up in the genenametype table (source: the wiki page regarding database quality analysis
- In pgAdmin III, the query
select count(*) from genenametype where type = 'ordered locus' and value ~ 'VC_[0-9][0-9][0-9][0-9]';
was issued via the SQL Query menu in order to further validate the PostgreSQL Database Results according to TallyEngine - 2737 unique matches were found in pgAdmin III (postgres database results). These results are not the same as what was found by TallyEngine and are slightly different from what was found using XMLPipeDB match (1 off). It seems that the results are really close to what the Match utility found because it utilizes the same pattern ('VC_[0-9][0-9][0-9][0-9]')
OriginalRowCounts Comparison using Microsoft Access
- The exported Vc-Std_20151027_BL.gdb file was opened using Microsoft Access
- 7664 unique matches found using Microsoft Access were found by observing the row count for the OrderedLocusNames table. This number of unique matches is very different from what was found using the other methods (more than double of what was found using TallyEngine, which is 3831 unique results)
Visual Inspection
Observing the 'OrderedLocusNames' table, and further modifications
- The database was opened in a program that is able to read .mdb files, such as Microsoft Access
- Looking at the OrderedLocusNames column, it was noticed that some of the entries contain underscores after the VC and others do not. By filtering so that only the entries with underscores appear, it was noticed that there are 3832 total entries with underscores. 3832 is half of 7664, which is the total amount of entries in the OrderedLocusNames table; this suggests that there exists two different versions of the data (with underscores and without). It was also noticed that both versions of the data (underscores and without) have some entries that include a letter A after the VC portion; through filtering, it was noticed that the entries with A's account for 1095 of the entries in both sets of data.
- Including the As in the command for the Match utility,
java -jar xmlpipedb-match-1.1.1.jar "VC_A?[0-9][0-9][0-9][0-9]" < uniprot-organism%3A243277.xml
, resulting in a result of 3831 unique matches; 3831 is an exact match of what was found using TallyEngine. - Modifying the SQL query so that the pattern includes the entries with A's, by using
select count(*) from genenametype where type = 'ordered locus' and value ~ 'VC_A?[0-9][0-9][0-9][0-9]';
, showed that there are 3831 entries (the number is in line with what TallyEngine found). - It now appears that there is one entry in both data sets (underscore and non-underscore) that remained unaccounted for.
Using Microsoft Excel to Compare ID Lists
- The 'OrderedLocusNames' table was first put in ascending order (lower ID #s come first) and was then exported in a format that Excel can read (was then opened with Excel)
java -jar xmlpipedb-match-1.1.1.jar "VC_A?[0-9][0-9][0-9][0-9]" < uniprot-organism%3A243277.xml > ordered_locus_match_results_BL.txt
was used via the Windows command line in order to export the ID lists with the underscores to a text file (one half of all of the IDs)- The Match utility exported text file was opened via Excel and the colon (:) was set as the delimiter (since a colon separates the match count from the ID)
- pgAdmin III was booted up and the proper database was selected (V.cholerae_20151027_gmb3build5); the SQL query
select value from genenametype where type = 'ordered locus';
was inputted and "Execute query, write result to file" was clicked. Through these steps, the list of IDs from PostgreSQL were exported in an Excel friendly format (such as .csv)
- The column of IDs from 'OrderedLocusNames' and the one from the Match utility were put side by side in one Excel document (One column was given the label IDs FROM 'ORDEREDLOCUSNAMES', and the other IDs FROM MATCH UTILITY)
.gdb Use in GenMAPP
Compare Gene Database to Outside Resource
OriginalRowCounts Comparison
Within the .gdb file, look at the OriginalRowCounts table to see if the database has the expected tables with the expected number of records. Compare the tables and records with a benchmark .gdb file.
Benchmark .gdb file:
Brandon Litvak
BIOL 367, Fall 2015
Weekly Assignments | Individual Journal Pages | Shared Journal Pages |
---|---|---|
|
|
|