<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jkuroda</id>
		<title>LMU BioDB 2015 - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://xmlpipedb.lmucs.io/biodb/fall2015/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jkuroda"/>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php/Special:Contributions/Jkuroda"/>
		<updated>2026-05-03T16:19:43Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.25.1</generator>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Jkuroda_Week_15&amp;diff=8129</id>
		<title>Jkuroda Week 15</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Jkuroda_Week_15&amp;diff=8129"/>
				<updated>2015-12-18T21:50:12Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: /* Individual Assessment &amp;amp; Reflection */ finishing reflection&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Log==&lt;br /&gt;
* Ran some incomplete statistical analysis data from the GenMAPP users through creating a new expression dataset and generated an exception file which found some issues with our database.&lt;br /&gt;
* The first time we ran it, there were exceptions for every single gene, because we did not compensate for the underscore in the ID. After inserting the underscore after the &amp;#039;SO&amp;#039;, we were able to find the actual errors.&lt;br /&gt;
* First of all, there are 5408 genes listed in their data, compared to the 4196 genes we have in our database. &lt;br /&gt;
* There are 760 gene IDs that are in the form SO_####F, which are genes that don&amp;#039;t exist in our database.&lt;br /&gt;
* There are 681 gene IDs that are in a &amp;#039;normal&amp;#039; form (either SO_#### or SO_A####) but do not exist in our database.&lt;br /&gt;
* For some of the gene IDs that have &amp;#039;F&amp;#039;s, there are multiple genes of the same ID.&lt;br /&gt;
* We attempted to do a batch search on Uniprot of all 1441 missing IDs, and got zero results for them in their database. Furthermore, we did a spot check by searching every 100 IDs or so in the Uniprot KB and found that none of the IDs we searched exist.&lt;br /&gt;
* We also searched for the &amp;#039;F&amp;#039; IDs in our MOD and none of them exist in that either.&lt;br /&gt;
* After this analysis, we have come to the conclusion that these 1441 IDs can be safely ignored, since they do not exist in Uniprot. We will simply need to modify our code to account for the absence of an underscore, much like we did with Vibrio Cholerae.&lt;br /&gt;
* In class on 12/10/15, we worked on figuring out the corrections for our GenMAPP code and made a new dataset using the finished data from the GenMAPP users.&lt;br /&gt;
* Then we ran GenMAPP Finder and ran into an issue because we were using the wrong column.&lt;br /&gt;
* Our group met up on 12/12/15 and continued working.&lt;br /&gt;
* We were able to run MAPPFinder successfully and generated all of the necessary files for our deliverables. &lt;br /&gt;
* As of now, we are waiting to find out how to get a sample MAPP file of a relevant biological pathway.&lt;br /&gt;
* We are going to individually work on our presentation slides and go over the entire thing on Monday night.&lt;br /&gt;
&lt;br /&gt;
==Individual Assessment &amp;amp; Reflection==&lt;br /&gt;
=== Statement of Work ===&lt;br /&gt;
&lt;br /&gt;
* Describe exactly what you did on the project.&lt;br /&gt;
We first downloaded the UniProt XML proteome set file (UniProt release 2015_10), GO association file (GOA Proteome Sets 124), and the GO OBO-XML file (version 2015-11-01) on November 20, 2015. Next, we created a new database in PostgreSQL by executing the sql code taken from the sql folder of the latest GenMAPP Builder build. This code was run in PostgreSQL to create 167 empty tables. Now that we set the foundation for our database, we configured GenMAPP Builder to connect to our PostgreSQL database and imported the UniProt XML file, GOA file, and GO OBO-XML file using GenMAPP Builder. We were now able to export a GenMAPP gene database, making sure that it also exported all molecular function, cellular component, and biological process gene ontology terms. This process took one hour and 18 minutes.&lt;br /&gt;
&lt;br /&gt;
Inspecting and validating our gene database was a long but significant process. Although we had successfully exported the database, it would mean nothing unless we verified that the data within the database was valid and accurate. The first check we made used the TallyEngine in GenMAPP Builder to record the number of records for UniProt and GO in the XML data and in the Postgres databases. The table (image X) we got from running TallyEngine confirmed that the XML and PostGres Ordered Locus counts were both 4196. The next check we made used the XMLPipeDB Match function to validate the results from the TallyEngine table. Initially, the regEx pattern we used only caught 4079 IDs because there were over 100 Ordered Locus names that contained the extra character ‘A’ in their ID. So we accounted for those IDs in the regEx pattern and got a count of 4207, which was 11 more than we were expecting. A quick look at the raw XML file told us that these 11 IDs were not picked up by the TallyEngine because they were missing gene tags, so the XMLPipeDB Match function recognized the pattern in another section that TallyEngine did not check. Our next check used an SQL query to validate the PostgreSQL database results from the TallyEngine. Using a regEx pattern similar to the one used for XMLPipeDB Match, we were able to get a confirmed count of 4196 IDs. Finally, we made a visual inspection of the gene database itself using Microsoft Access. We checked the UniProt, RefSeq, and OrderedLocusNames tables to make sure all of the IDs were in the correct form and found that there were no discrepancies.&lt;br /&gt;
&lt;br /&gt;
To come to a logical conclusion in regards to the 11 IDs that were missing a gene tag in the XML file, we simply searched for each ID on the UniProt website and found that they were part of the &amp;quot;STRING&amp;quot; protein-protein interaction database. This meant that we could safely ignore these IDs in our database.&lt;br /&gt;
* Provide references or links to artifacts of your work, such as:&lt;br /&gt;
** Wiki pages&lt;br /&gt;
***[[Heavy Metal HaterZ Deliverables]]&lt;br /&gt;
***[[Gene Database Testing Report - Heavy Metal HaterZ]]&lt;br /&gt;
** Other files or documents&lt;br /&gt;
*** All relevant files can be found on our deliverables page.&lt;br /&gt;
** Code or scripts&lt;br /&gt;
*** The match command and SQL query can be found in our Gene Database Testing Report.&lt;br /&gt;
&lt;br /&gt;
=== Assessment of Project ===&lt;br /&gt;
&lt;br /&gt;
* Give an objective assessment of the success of your project workflow and teamwork.  &lt;br /&gt;
** I liked the way our team worked together on this project, mostly because of the fact that we got along well. It was easy to ask for help, and we communicated effectively, which made the entire process much smoother. We had similar ways of working, and it was fun to go through this project with them.&lt;br /&gt;
* What worked and what didn&amp;#039;t work?  &lt;br /&gt;
** Overall, it was a solid project; we didn&amp;#039;t run into too many issues, and when we did, they were easily overcome. I would say two of the biggest bumps were the &amp;quot;missing&amp;quot; 11 IDs that were found by XMLPipeDB Match and the &amp;quot;extra&amp;quot; ~1400 IDs that were present in the microarray data but not in UniProt. These issues were overcome by consulting our professors and doing some extra research.&lt;br /&gt;
* What would you do differently if you could do it all over again?&lt;br /&gt;
** I would probably want to work with my group in person more often than we did, since I found that we were much more effective and productive when all four of us were together working on a part of the project.&lt;br /&gt;
* Evaluate the Gene Database Project and Group Report in the following areas:&lt;br /&gt;
*# Content: What is the quality of the work?&lt;br /&gt;
*#* I would say the level of quality is above average, because we spent a good amount of time making sure that there were no errors in our project, and if there were, we would have an explanation for why it existed. Our group report reflects the time and effort we poured into our gene database project, and so I would say it is quality work.&lt;br /&gt;
*# Organization: Comment on the organization of the project and of your group&amp;#039;s wiki pages.&lt;br /&gt;
*#* From the very beginning, we made sure to have a place on our wiki where all of our files would be consolidated. This made working in separate areas a breeze, and after we had made some progress, we were able to put our final files into our deliverables page. The wiki template we made for our team is organized and easy to navigate, and we used it on each of our auxiliary pages.&lt;br /&gt;
*# Completeness:  Did your team achieve all of the project objectives?  Why or why not?&lt;br /&gt;
*#* Yes. Completing the project objectives was not a particularly difficult task because our team worked well together. We all knew what roles we had, so there was no problem in getting the tasks finished.&lt;br /&gt;
&lt;br /&gt;
=== Reflection on the Process ===&lt;br /&gt;
&lt;br /&gt;
* What did you learn?&lt;br /&gt;
** With your head (biological or computer science principles)&lt;br /&gt;
*** I learned much more about the inner workings of database management and queries. I also learned quite a bit about the importance of microarray analyses and how they can be used to discover more about an organism like Shewanella oneidensis.&lt;br /&gt;
** With your heart (personal qualities and teamwork qualities that make things work or not work)?&lt;br /&gt;
*** I learned that a team that gets along well will be much more effective, because it is easier to take and give from one another in the sense that we are comfortable discussing and helping in a work environment. I found that having each team member have a specific role makes splitting up the work much easier, since everyone knows his or her role and responsibility.&lt;br /&gt;
** With your hands (technical skills)?&lt;br /&gt;
*** Like I mentioned earlier, I learned about SQL and how powerful databases can be when you know what you are doing. I also learned about XML files and how data can be efficiently stored and accessed using that type of formatting.&lt;br /&gt;
* What lesson will you take away from this project that you will still use a year from now?&lt;br /&gt;
** I will be taking a databases class next year, so I will definitely be using the knowledge I gained in this class regarding database management for that purpose. I will also use my introductory knowledge of wiki editing and formatting to possibly contribute to wikis in the future.&lt;br /&gt;
&lt;br /&gt;
{{Template:Journal Template}}&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Heavy_Metal_HaterZ_Deliverables&amp;diff=7906</id>
		<title>Heavy Metal HaterZ Deliverables</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Heavy_Metal_HaterZ_Deliverables&amp;diff=7906"/>
				<updated>2015-12-15T06:37:55Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: /* Group Files and Datasets */ ppt&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Heavy Metal HaterZ}}&lt;br /&gt;
&lt;br /&gt;
== Group Files and Datasets ==&lt;br /&gt;
&lt;br /&gt;
===Gene Database===&lt;br /&gt;
&lt;br /&gt;
* [[Media:So-Std_HMH_20151214.zip | GenMAPP Gene Database for assigned species]]&lt;br /&gt;
* ReadMe file to accompany the Gene Database (&amp;#039;&amp;#039;.pdf&amp;#039;&amp;#039;)&lt;br /&gt;
** [[Media:ReadMe So-Std 20151214.pdf | Shewanella onedensis ReadMe]]&lt;br /&gt;
* [[Media:Gene Database Testing Report - Heavy Metal HaterZ.pdf | Gene Database Testing Report]] for final submitted Gene Database&lt;br /&gt;
* Processed and analyzed DNA microarray dataset (&amp;#039;&amp;#039;.xls&amp;#039;&amp;#039; or &amp;#039;&amp;#039;.xlsx&amp;#039;&amp;#039;)&lt;br /&gt;
* [[Media:CompiledRawData ForGenMAPP 20151208 HMH.txt | Data file]] used for import into GenMAPP&lt;br /&gt;
* [[Media:CompiledRawData ForGenMAPP 20151210 HMH.gex | GenMAPP Expression Dataset file]]&lt;br /&gt;
* [[Media:CompiledRawData ForGenMAPP 20151210 HMH.EX.txt | Exceptions file]] of data imported into GenMAPP&lt;br /&gt;
* Raw MAPPFinder results files:&lt;br /&gt;
** [[Media:MAPPFINDER 20151212-Criterion0-GO.txt | criterion 0]]&lt;br /&gt;
** [[Media:MAPPFINDER 20151212-Criterion1-GO.txt | criterion 1]]&lt;br /&gt;
* [[Media:CompiledRawData ForGenMAPP 20151210 HMH.zip | &amp;#039;&amp;#039;.gmf&amp;#039;&amp;#039; file]]&lt;br /&gt;
* Filtered MAPPFinder Results (&amp;#039;&amp;#039;.xls&amp;#039;&amp;#039; or &amp;#039;&amp;#039;.xlsx&amp;#039;&amp;#039;)&lt;br /&gt;
**[[Media:MAPPFINDER 20151212-Criterion0-GO.xlsx | criterion 0]]&lt;br /&gt;
**[[Media:MAPPFINDER 20151212-Criterion1-GO 20151212 HMH.xlsx | criterion 1]]&lt;br /&gt;
* Sample MAPP file of a relevant biological pathway for your species (&amp;#039;&amp;#039;.mapp&amp;#039;&amp;#039;)&lt;br /&gt;
* [[Gene Database Project Deliverables#Group Report | Group Report]] describing the creation of the Gene Database and the biological analysis of the data (&amp;#039;&amp;#039;.doc&amp;#039;&amp;#039;, &amp;#039;&amp;#039;.docx&amp;#039;&amp;#039;, or &amp;#039;&amp;#039;.pdf&amp;#039;&amp;#039;)&lt;br /&gt;
* [[Media:Biol Data Final Presentation.pdf | PowerPoint presentation]] given on Tuesday, December 15&lt;br /&gt;
&lt;br /&gt;
[[Gene Database Project Deliverables]]&lt;br /&gt;
[[Category:Heavy Metal HaterZ]]&lt;br /&gt;
[[Category:Group Projects]]&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=File:Biol_Data_Final_Presentation.pdf&amp;diff=7905</id>
		<title>File:Biol Data Final Presentation.pdf</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=File:Biol_Data_Final_Presentation.pdf&amp;diff=7905"/>
				<updated>2015-12-15T06:36:57Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: HEAVY METAL HATERZ!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;HEAVY METAL HATERZ!&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Heavy_Metal_HaterZ&amp;diff=7865</id>
		<title>Heavy Metal HaterZ</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Heavy_Metal_HaterZ&amp;diff=7865"/>
				<updated>2015-12-15T03:49:06Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: /* Week 15 Assignment */ josh update&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Heavy Metal HaterZ}}&lt;br /&gt;
==Week 15 Assignment==&lt;br /&gt;
===Goals===&lt;br /&gt;
*Finish Deliverables&lt;br /&gt;
*Prepare for the presentation&lt;br /&gt;
===Status Report===&lt;br /&gt;
*Mary - Finished second customization for the S.oneidensis profile. I need to push it to github with support from Dr.Dionisio.&lt;br /&gt;
*Josh - Uploaded most of our deliverables and completed any of the remaining tasks, e.g. ReadMe to accompany the Gene Database&lt;br /&gt;
&lt;br /&gt;
==Week 14 Assignment==&lt;br /&gt;
===Goals===&lt;br /&gt;
*Coder/QA&lt;br /&gt;
**Analyze the initial exports and make any necessary changes to the custom species profile to capture all of the IDs for your species&lt;br /&gt;
*GenMAPP Users&lt;br /&gt;
**Finish statistical analysis of compiled microarray data&lt;br /&gt;
**Prepare file for GenMAPP&lt;br /&gt;
===Status Report===&lt;br /&gt;
*Mary- I finished customizing the genMappBuilder and uploaded it onto this wiki so htat Josh could test to see if it works, which it does for the most part. A few genes aren&amp;#039;t picked up that are not in the MOD but present elsewhere.&lt;br /&gt;
* Josh- Completed the export using the customized GenMAPP Builder from Mary. Checked the .gdb file and everything checked out. Used GenMAPP to see if the gene ID links worked and they did. Made more progress on the Gene Database Testing Report.&lt;br /&gt;
*Emily - I worked on manipulating the data to import it into GenMAPP and while Ron and I initially had some problems, I think we worked them out and are ready to continue this coming week.&lt;br /&gt;
*Ron - Worked on manipulation of the data along with Emily to prepare data for GenMAPP. Difficulties arose when it came to performing particular calculations and having data match with Emily&amp;#039;s, but I think that they have been resolved with the help of Dr. Dahlquist; thus, we are closer to having a GenMAPP ready file.&lt;br /&gt;
&lt;br /&gt;
====Reflections====&lt;br /&gt;
#What worked?&lt;br /&gt;
#What didn&amp;#039;t work?&lt;br /&gt;
#What will I do next to fix what didn&amp;#039;t work?&lt;br /&gt;
&lt;br /&gt;
*Mary:&lt;br /&gt;
*#Dr.Dionisio&amp;#039;s instructions were very clear so I was able to customize the genMappBuilder and it is working like it should.&lt;br /&gt;
*#There are still 11 &amp;quot;lost&amp;quot; genes that may need to be &amp;quot;found&amp;quot; somehow with my code, even though they are not located within the MOD.&lt;br /&gt;
*#First I need to determine if those genes are necessary for genMapp to catch, and then i will need to re-customize the code if so.&lt;br /&gt;
&lt;br /&gt;
*Josh:&lt;br /&gt;
*# Our customized export seemed to work, since we got the 4196 count for Ordered Locus Names for which we were looking.&lt;br /&gt;
*#The 11 IDs we found that did not have gene tags in the XML file are a small issue for us. None of them exist in our model organism database, but 8 of them are present in our microarray data.&lt;br /&gt;
*#We are waiting on input from Professor Dahlquist regarding our next steps with these 11 IDs. Once we find out, we will act accordingly and possibly edit our code.&lt;br /&gt;
&lt;br /&gt;
*Emily&lt;br /&gt;
*#It was very helpful to have Dr. Dahlquist&amp;#039;s instructions for manipulating our data, so I was able to calculate the Pvalues and adjust them using the two tests.&lt;br /&gt;
*#Ron and I had to do a lot of work late this week to make our data match, but we worked together well and were able to solve the problems we encountered.&lt;br /&gt;
*#I will redo the Pvalues and the two adjustment calculations. Then I will get the data ready for GenMAPP.&lt;br /&gt;
&lt;br /&gt;
*Ron&lt;br /&gt;
*#Dr. Dahlquist&amp;#039;s instructions and feedback helped with ensuring the manipulation of the data was done accurately.&lt;br /&gt;
*#It was difficult to calculate the averages from the split data since the equations wouldn&amp;#039;t copy down the entire column due to blank spaces within the data; in addition, calculating the p-values was difficult. In addition, there was a lot of work to be done since issues were encountered with the data and the equations.&lt;br /&gt;
*#Hopefully, after all the feedback and instructions Emily and I will be able to do all the necessary calculations and statistical analysis to have a file ready for GenMAPP by the end of this week.&lt;br /&gt;
&lt;br /&gt;
==Week 12 Assignment==&lt;br /&gt;
===Goals===&lt;br /&gt;
*Coder/QA&lt;br /&gt;
**Prepare for journal club presentation&lt;br /&gt;
**Perform an initial Gene Database export and Gene Database Testing Report&lt;br /&gt;
*GenMAPP Users&lt;br /&gt;
**Compile the raw data in preparation for normalization and statistical analysis.&lt;br /&gt;
===Status Report===&lt;br /&gt;
*Emily: uploaded and formatted all microarray files after they were repleted with ferrous sulfate&lt;br /&gt;
*Mary: Prepared for genome paper journal club presentation. I also pushed the code from github onto a computer in the lab, which included downloading eclipse and git for windows on the lab computer.&lt;br /&gt;
*Josh: Prepared for genome paper presentation with Mary. Completed the initial import/export cycle and made significant progress on the Gene Database Testing Report.&lt;br /&gt;
*Ron: Similar to Emily, downloaded the microarray raw data files, followed the procedure given by Dr. Dahlquist for data processing (I worked with the files related to iron depletion with the iron chelator), and I uploaded the files to the wiki.&lt;br /&gt;
&lt;br /&gt;
==Week 11 Assignment : Journal Club Presentation==&lt;br /&gt;
===Presentation Slides===&lt;br /&gt;
*These can also be accessed by going to our [[Heavy Metal HaterZ Files | Files]] page.&lt;br /&gt;
&amp;lt;!--Accidentally uploaded the ppt guidlines instead of own ppt slides at first. This was noticed and corrected 11/23/2015--&amp;gt;&lt;br /&gt;
*[[File:Genome_Paper_Presentation_20151124_HMH.pptx]]&lt;br /&gt;
*[[File:SoMicroarrayPaperPresentation 20151117 HMH.pptx]]&lt;br /&gt;
&lt;br /&gt;
===Goals===&lt;br /&gt;
*Prepare for journal club presentations&lt;br /&gt;
*Begin initial tasks on your research project&lt;br /&gt;
**Coder/QA&lt;br /&gt;
***Set up coding/testing environment&lt;br /&gt;
***Determine the regular expression for the ordered locus ID for your species&lt;br /&gt;
***Identify the appropriate model organism database for your species.&lt;br /&gt;
***Perform an initial Gene Database export and Gene Database Testing Report&lt;br /&gt;
**GenMAPP Users&lt;br /&gt;
***Describe the experimental design of the microarray data, including treatments, number of replicates (biological and/or technical), dye swaps.&lt;br /&gt;
***Determine the sample and data relationships, i.e., which files in the data correspond to which samples in the experimental design.&lt;br /&gt;
***Compile the raw data in preparation for normalization and statistical analysis.&lt;br /&gt;
===Status Report===&lt;br /&gt;
*Emily: worked on journal club presentation and created flow chart diagrams for the experimental design&lt;br /&gt;
*Mary: Completed journal club presentation slides with Josh. I downloaded eclipse on my personal laptop, so along with the use of the lab computers my coding/testing environment should be set up. I determined with Josh the regular expression of the ordered locus ID for our species. I was not able to, however, perform an initial export yet.&lt;br /&gt;
*Ron: Completed journal club presentation slides with Emily and uploaded slides in HMH Files pages. [[Media:SoMicroarrayPaperPresentation 20151117 HMH.pptx | Link to Microarray Paper Presentation here.]] Looked over sample and data relationships file from ArrayExpress entry (E-GEOD-15334) and converted .txt file into .xlsx file. I have not been able to compile raw data with Emily, as we still need clarification on which files are to be used for statistical analysis.&lt;br /&gt;
*Josh: Completed the genome paper presentation with Mary and did more research on our organism. Haven&amp;#039;t done an initial import/export cycle yet. Planning to complete that later this week.&lt;br /&gt;
&lt;br /&gt;
==Week 10 Assignment : Annotated Bibliography==&lt;br /&gt;
&lt;br /&gt;
===Our Genome Paper===&lt;br /&gt;
&lt;br /&gt;
Heidelberg, J. F., Paulsen, I. T., Nelson, K. E., Gaidos, E. J., Nelson, W. C., Read, T. D., ... &amp;amp; Fraser, C. M. (2002). Genome sequence of the dissimilatory metal ion–reducing bacterium Shewanella oneidensis. &amp;#039;&amp;#039;Nature biotechnology, 20&amp;#039;&amp;#039;(11), 1118-1123. doi:10.1038/nbt749&lt;br /&gt;
*The [http://www.ncbi.nlm.nih.gov/pubmed/?term=Genome+sequence+of+the+dissimilatory+metal+ion%E2%80%93reducing+bacterium+Shewanella+oneidensis abstract] from PubMed.&lt;br /&gt;
*The full text of the article in PubMedCentral : Not available. &lt;br /&gt;
*The [http://www.nature.com/nbt/journal/v20/n11/full/nbt749.html full text] of the article from the publisher web site. &amp;lt;!--(The HTML version was not available.)&lt;br /&gt;
** I am not sure what you mean by the HTML version not being available.  This link &amp;#039;&amp;#039;&amp;#039;&amp;#039;&amp;#039;is&amp;#039;&amp;#039;&amp;#039;&amp;#039;&amp;#039; to the HTML version.  &amp;#039;&amp;#039;&amp;amp;mdash; [[User:Kdahlquist|Kdahlquist]] ([[User talk:Kdahlquist|talk]]) 09:19, 10 November 2015 (PST)&amp;#039;&amp;#039;--&amp;gt;&lt;br /&gt;
*The  [http://www.nature.com/nbt/journal/v20/n11/pdf/nbt749.pdf full PDF version] of the article from the publisher web site.&lt;br /&gt;
*Who owns the rights to the article? &lt;br /&gt;
**The Nature Publishing Group, which is the publisher of this article, according to this [https://s100.copyright.com/AppDispatchServlet?publisherName=NPG&amp;amp;publication=Nature%20Biotechnology&amp;amp;title=Genome%20sequence%20of%20the%20dissimilatory%20metal%20ion-reducing%20bacterium%20Shewanella%20oneidensis&amp;amp;author=John%20F.%20Heidelberg,%20Ian%20T.%20Paulsen,%20Karen%20E.%20Nelson,%20Eric%20J.%20Gaidos,%20William%20C.%20Nelson%20et%20al.&amp;amp;contentID=10.1038/nbt749&amp;amp;publicationDate=10/07/2002&amp;amp;volumeNum=20&amp;amp;issueNum=11&amp;amp;numPages=6&amp;amp;pageNumbers=pp1118-1123 site].&lt;br /&gt;
*Do the authors own the rights under a Creative Commons license?&lt;br /&gt;
**Yes, according to this [http://oaspa.org/member/nature-publishing-group-palgrave-macmillan/ site].&lt;br /&gt;
*Is the article available “Open Access”?&lt;br /&gt;
**According to [http://oaspa.org/membership/members/ this site], the article is available &amp;quot;Open Access&amp;quot;.&lt;br /&gt;
*What organization is the publisher of the article? What type of organization is it? &lt;br /&gt;
**According to the site above, this publisher is a &amp;quot;Professional OA Publisher (Large)&amp;quot;. &lt;br /&gt;
*Is this article available in print or online only?&lt;br /&gt;
**Online only. It was published online in November, 2002.&lt;br /&gt;
*Has LMU paid a subscription or other fee for your access to this article?&lt;br /&gt;
**No.&lt;br /&gt;
*We performed a search in the ISI Web of Science/Knowledge database by typing in the title &amp;quot;Genome sequence of the dissimilatory metal ion–reducing bacterium Shewanella oneidensis&amp;quot; to the search bar.&lt;br /&gt;
**Three articles came up as results. The first two articles title&amp;#039;s did not exactly match, and were cited under 15 times each. The third article was the article we were searching for.&lt;br /&gt;
*How many articles does this article cite?&lt;br /&gt;
**This article has 41 cited references within the Web of Science Core Collection, according to this [https://apps.webofknowledge.com/full_record.do?product=UA&amp;amp;search_mode=GeneralSearch&amp;amp;qid=3&amp;amp;SID=3Evs6J6HvCojNOHG6K3&amp;amp;page=1&amp;amp;doc=3 site].&lt;br /&gt;
*How many articles cite this article?&lt;br /&gt;
**It has been cited 1079 times in all databases, and 426 within the Web of Science Core Collection, according to this [https://apps.webofknowledge.com/full_record.do?product=UA&amp;amp;search_mode=GeneralSearch&amp;amp;qid=3&amp;amp;SID=3Evs6J6HvCojNOHG6K3&amp;amp;page=1&amp;amp;doc=3 site].&lt;br /&gt;
*Based on the titles and abstracts of the papers, what type of research directions have been taken now that the genome for that organism has been sequenced?&lt;br /&gt;
**Examples of titles that reference the genome paper:&lt;br /&gt;
***Environmental genome shotgun sequencing of the Sargasso Sea&lt;br /&gt;
***Deciphering the evolution and metabolism of an anammox bacterium from a community genome&lt;br /&gt;
***Genome of Geobacter sulfurreducens: Metal reduction in subsurface environments&lt;br /&gt;
***More can be found by clicking this [https://apps.webofknowledge.com/summary.do?product=WOS&amp;amp;parentProduct=UA&amp;amp;search_mode=CitingArticles&amp;amp;qid=8&amp;amp;SID=3Evs6J6HvCojNOHG6K3&amp;amp;page=1&amp;amp;action=sort&amp;amp;sortBy=LC.D;PY.D;AU.A.en;SO.A.en;VL.D;PG.A&amp;amp;showFirstPage=1 link].&lt;br /&gt;
**These papers include studying within in the species, finding out the genomes of other species, as well as the metabolic versatility of microorganisms and  metal ion reduction in environments. This shows that a sequenced genome can aide in experiments of many kinds.&lt;br /&gt;
&lt;br /&gt;
===Our Microarray Paper===&lt;br /&gt;
*Dataset can be found at this [https://www.ebi.ac.uk/arrayexpress/experiments/E-GEOD-15334/?keywords=&amp;amp;organism=Shewanella+oneidensis&amp;amp;exptype%5B%5D=%22rna+assay%22&amp;amp;exptype%5B%5D=%22array+assay%22&amp;amp;array= link].&lt;br /&gt;
&amp;lt;!-- *The beginning of the headers given to the bibliography entries correspond to the data set results found when clicking the above link.&lt;br /&gt;
** It would have been better to give a direct link to the actual dataset page for each reference below.  Instead, I had to wade through the search results to find each paper/dataset to which you were referring.  &amp;#039;&amp;#039;&amp;amp;mdash; [[User:Kdahlquist|Kdahlquist]] ([[User talk:Kdahlquist|talk]]) 09:47, 10 November 2015 (PST)&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
====E-GEOD-15657: Charania et. al (2009)====&lt;br /&gt;
&lt;br /&gt;
This paper is not suitable because they only do two replicates for each condition and we will not be able to do statistics.  &amp;#039;&amp;#039;&amp;amp;mdash; [[User:Kdahlquist|Kdahlquist]] ([[User talk:Kdahlquist|talk]]) 09:40, 10 November 2015 (PST)&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Charania, M. A., Brockman, K. L., Zhang, Y., Banerjee, A., Pinchuk, G. E., Fredrickson, J. K., Beliaev, A.S., Saffarini, D. A. (2009). Involvement of a Membrane-Bound Class III Adenylate Cyclase in Regulation of Anaerobic Respiration in Shewanella oneidensis MR-1 . Journal of Bacteriology, 191(13), 4298–4306. http://doi.org/10.1128/JB.01829-08&lt;br /&gt;
* Link to abstract on [http://www.ncbi.nlm.nih.gov/pubmed/?term=Involvement+of+a+membrane-bound+class+III+adenylate+cyclase+in+regulation+of+anaerobic+respiration+in+Shewanella+oneidensis+MR-1. &amp;#039;&amp;#039;&amp;#039;PubMed&amp;#039;&amp;#039;&amp;#039;]&lt;br /&gt;
* Link to full text of article on [http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2698484/ &amp;#039;&amp;#039;&amp;#039;PMC&amp;#039;&amp;#039;&amp;#039;]&lt;br /&gt;
* Link to [http://jb.asm.org/content/191/13/4298.full &amp;#039;&amp;#039;&amp;#039;Full Text&amp;#039;&amp;#039;&amp;#039;] from publisher.&lt;br /&gt;
* Link to [http://jb.asm.org/content/191/13/4298.full.pdf+html &amp;#039;&amp;#039;&amp;#039;PDF Version&amp;#039;&amp;#039;&amp;#039;] from publisher.&lt;br /&gt;
* The American Society for Microbiology owns the copyright. The article is not open-access.&lt;br /&gt;
* The publisher is the American Society for Microbiology. It is a scientific society.&lt;br /&gt;
* This article is available in the printed and on-line journals.&lt;br /&gt;
* LMU has not paid for my access.&lt;br /&gt;
* This article has &amp;#039;&amp;#039;&amp;#039;39&amp;#039;&amp;#039;&amp;#039; citations.&lt;br /&gt;
* According to the &amp;#039;&amp;#039;Web of Science&amp;#039;&amp;#039;, this article is cited by &amp;#039;&amp;#039;&amp;#039;29&amp;#039;&amp;#039;&amp;#039; other articles.&lt;br /&gt;
* Looking at the titles of the other articles/abstracts, it seems like most research has been focused on catabolic and regulatory pathways of &amp;#039;&amp;#039;Shewanella oneidensis&amp;#039;&amp;#039;, along with the two-component system that regulates nitrogen (nitrite and nitrate) respiration.&lt;br /&gt;
* Link to [https://www.ebi.ac.uk/arrayexpress/files/E-GEOD-15657/E-GEOD-15657.raw.1.zip &amp;#039;&amp;#039;&amp;#039;Raw microarray data&amp;#039;&amp;#039;&amp;#039;]&lt;br /&gt;
* Link to [https://www.ebi.ac.uk/arrayexpress/files/E-GEOD-15657/E-GEOD-15657.processed.1.zip &amp;#039;&amp;#039;&amp;#039;Processed microarray data&amp;#039;&amp;#039;&amp;#039;]&lt;br /&gt;
* The experiment looked to find more information about the cyclic AMP receptor protein (CRP) within the membranes of &amp;#039;&amp;#039;Shewanella oneidensis&amp;#039;&amp;#039; that regulates the respiration of fumarate, dimethyl sulfoxide (DMSO), or Fe(III); thus, manipulation of the particular genes were done in order to observe how gene deletions would affect the anaerobic respiration.&lt;br /&gt;
* A total of six expression profiles of &amp;#039;&amp;#039;Shewanella oneidensis&amp;#039;&amp;#039; samples (wild-type and mutant strains); 2 wild-type, 2 CRP deletion mutants, cyaC deletion mutants.&lt;br /&gt;
&lt;br /&gt;
====E-GEOD-21044: Lassak et. al (2010)====&lt;br /&gt;
&lt;br /&gt;
This paper is not suitable because they do not use two-color microarray chips.  &amp;#039;&amp;#039;&amp;amp;mdash; [[User:Kdahlquist|Kdahlquist]] ([[User talk:Kdahlquist|talk]]) 09:41, 10 November 2015 (PST)&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Lassak J, Henche AL, Binnenkade L, Thormann KM. (2010). ArcS is the cognate sensor kinase in an atypical Arc system of Shewanella oneidensis MR-1. &amp;#039;&amp;#039;Applied and Environmental Microbiology&amp;#039;&amp;#039;, 76(10), 3263-3274.&lt;br /&gt;
* [http://www.ncbi.nlm.nih.gov/pubmed/?term=ArcS+is+the+cognate+sensor+kinase+in+an+atypical+Arc+system+of+Shewanella+oneidensis+MR-1 &amp;#039;&amp;#039;&amp;#039;PubMed&amp;#039;&amp;#039;&amp;#039;]&lt;br /&gt;
* [http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2869118/ &amp;#039;&amp;#039;&amp;#039;PMC&amp;#039;&amp;#039;&amp;#039;]&lt;br /&gt;
* [http://aem.asm.org/content/76/10/3263.full &amp;#039;&amp;#039;&amp;#039;Full Text&amp;#039;&amp;#039;&amp;#039;]&lt;br /&gt;
* [http://aem.asm.org/content/76/10/3263.full.pdf+html &amp;#039;&amp;#039;&amp;#039;PDF Version&amp;#039;&amp;#039;&amp;#039;]&lt;br /&gt;
* The American Society for Microbiology owns the copyright. The article is not open-access.&lt;br /&gt;
* The publisher is the American Society for Microbiology. It is a scientific society.&lt;br /&gt;
* This article is available in the printed and on-line journals.&lt;br /&gt;
* LMU has not paid for my access.&lt;br /&gt;
* This article has 76 citations.&lt;br /&gt;
* According to the &amp;#039;&amp;#039;Web of Science&amp;#039;&amp;#039;, this article is cited by 35 other articles.&lt;br /&gt;
* Looking at the titles of the other articles, it seems like most research has been focused on a two-component system present in shewanella oneidensis as well as anaerobic and aerobic respiration.&lt;br /&gt;
* [https://www.ebi.ac.uk/arrayexpress/files/E-GEOD-21044/E-GEOD-21044.raw.1.zip &amp;#039;&amp;#039;&amp;#039;Raw microarray data&amp;#039;&amp;#039;&amp;#039;]&lt;br /&gt;
* [https://www.ebi.ac.uk/arrayexpress/files/E-GEOD-21044/E-GEOD-21044.processed.1.zip &amp;#039;&amp;#039;&amp;#039;Processed microarray data&amp;#039;&amp;#039;&amp;#039;]&lt;br /&gt;
* The experiment looked to find more information about the Arc two-component system of shewanella oneidensis by shifting oxygen levels. The treatment in the experiment was the changing levels of oxygen.  The control were strains of shewanella oneidensis MR-1 wild type cells.&lt;br /&gt;
* Expression profiles of three independent replicates of Shewanella oneidensis MR-1 delta-arcS were compared to three independent replicates of Shewanella oneidensis MR-1 wild type cells. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====E-GEOD-15334: Yang et. al (2009)====&lt;br /&gt;
&lt;br /&gt;
This paper is suitable for your project.  &amp;#039;&amp;#039;&amp;amp;mdash; [[User:Kdahlquist|Kdahlquist]] ([[User talk:Kdahlquist|talk]]) 09:41, 10 November 2015 (PST)&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Yang, Y., Harris, D. P., Luo, F., Xiong, W., Joachimiak, M., Wu, L., ... &amp;amp; Zhou, J. (2009). Snapshot of iron response in Shewanella oneidensis by gene network reconstruction. &amp;#039;&amp;#039;BMC genomics, 10&amp;#039;&amp;#039;(1), 131.&lt;br /&gt;
*The link to the abstract from  [http://www.ncbi.nlm.nih.gov/pubmed/?term=Yang%2C+Y.%2C+Harris%2C+D.+P.%2C+Luo%2C+F.%2C+Xiong%2C+W.%2C+Joachimiak%2C+M.%2C+Wu%2C+L.%2C+...+%26+Zhou%2C+J.+%282009%29.+Snapshot+of+iron+response+in+Shewanella+oneidensis+by+gene+network+reconstruction.+BMC+genomics%2C+10%281%29%2C+131. PubMed].&lt;br /&gt;
*The link to the full text of the article in [http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2667191/ PubMedCentral]&lt;br /&gt;
*The link to the full text of the article (HTML format) from the publisher [http://www.biomedcentral.com/1471-2164/10/131 web site].&lt;br /&gt;
*The link to the full [http://www.biomedcentral.com/content/pdf/1471-2164-10-131.pdf PDF] version of the article from the publisher web site.&lt;br /&gt;
*Who owns the rights to the article?&lt;br /&gt;
**The article is Open Access and the authors own the rights under a Creative Commons license.&lt;br /&gt;
*What organization is the publisher of the article?  What type of organization is it?&lt;br /&gt;
**BMC Genomics is the publisher, which is a scientific society&lt;br /&gt;
*Is this article available in print or online only?&lt;br /&gt;
**It is online only&lt;br /&gt;
*Has LMU paid a subscription or other fee for your access to this article?&lt;br /&gt;
**No&lt;br /&gt;
*How many articles does this article cite?&lt;br /&gt;
**This paper sites 48 other articles&lt;br /&gt;
*How many articles cite this article?&lt;br /&gt;
**3&lt;br /&gt;
***Roles of UndA and MtrC of &amp;#039;&amp;#039;Shewanella putrefaciens&amp;#039;&amp;#039; W3-18-1 in iron reduction&lt;br /&gt;
***Global transcriptional response of &amp;#039;&amp;#039;Caulobacter crescentus&amp;#039;&amp;#039; to iron availability&lt;br /&gt;
***Molecular ecological network analysis&lt;br /&gt;
*Based on the titles and abstracts of the papers, what type of research directions have been taken now that the genome for that organism has been sequenced?&lt;br /&gt;
**This article has mostly been used to look at the iron response of other strains or organisms. It may have been used for comparison&amp;#039;s sake or to modify the original methodology to fit the new experiment.&lt;br /&gt;
*Link to microarray data&lt;br /&gt;
**Found it on [https://www.ebi.ac.uk/arrayexpress/experiments/E-GEOD-15334/ ArrayExpress]&lt;br /&gt;
**This contains the raw data that we will use for our research&lt;br /&gt;
*What experiment was performed?  What was the &amp;quot;treatment&amp;quot; and what was the &amp;quot;control&amp;quot; in the experiment?&lt;br /&gt;
**Strains of &amp;#039;&amp;#039;Shewanella oneidensis&amp;#039;&amp;#039; were put under iron depletion and repletion conditions. The control would be a regular strain of the organism, while the treatments would be either increasing or decreasing the iron levels.&lt;br /&gt;
*Were replicate experiments of the &amp;quot;treatment&amp;quot; and &amp;quot;control&amp;quot; conditions conducted?  Were these biological or technical replicates?  How many of each?&lt;br /&gt;
**4 biological replicates of each treatment condition were performed&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- ===Ranking of Microarray Papers===&lt;br /&gt;
#Yang et. al (2009)&lt;br /&gt;
#Lassak et. al (2010)&lt;br /&gt;
#Charania et. al (2009)&lt;br /&gt;
&lt;br /&gt;
It would have been useful if you had actually numbered the papers and put them in this order above.  I actually looked at them in the order you displayed them above before I scrolled down the page and saw this.  &amp;#039;&amp;#039;&amp;amp;mdash; [[User:Kdahlquist|Kdahlquist]] ([[User talk:Kdahlquist|talk]]) 09:45, 10 November 2015 (PST)&amp;#039;&amp;#039; --&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Jkuroda_Week_15&amp;diff=7710</id>
		<title>Jkuroda Week 15</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Jkuroda_Week_15&amp;diff=7710"/>
				<updated>2015-12-13T00:41:57Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: /* Log */ 12/12/15&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Log==&lt;br /&gt;
* Ran some incomplete statistical analysis data from the GenMAPP users through creating a new expression dataset and generated an exception file which found some issues with our database.&lt;br /&gt;
* The first time we ran it, there were exceptions for every single gene, because we did not compensate for the underscore in the ID. After inserting the underscore after the &amp;#039;SO&amp;#039;, we were able to find the actual errors.&lt;br /&gt;
* First of all, there are 5408 genes listed in their data, compared to the 4196 genes we have in our database. &lt;br /&gt;
* There are 760 gene IDs that are in the form SO_####F, which are genes that don&amp;#039;t exist in our database.&lt;br /&gt;
* There are 681 gene IDs that are in a &amp;#039;normal&amp;#039; form (either SO_#### or SO_A####) but do not exist in our database.&lt;br /&gt;
* For some of the gene IDs that have &amp;#039;F&amp;#039;s, there are multiple genes of the same ID.&lt;br /&gt;
* We attempted to do a batch search on Uniprot of all 1441 missing IDs, and got zero results for them in their database. Furthermore, we did a spot check by searching every 100 IDs or so in the Uniprot KB and found that none of the IDs we searched exist.&lt;br /&gt;
* We also searched for the &amp;#039;F&amp;#039; IDs in our MOD and none of them exist in that either.&lt;br /&gt;
* After this analysis, we have come to the conclusion that these 1441 IDs can be safely ignored, since they do not exist in Uniprot. We will simply need to modify our code to account for the absence of an underscore, much like we did with Vibrio Cholerae.&lt;br /&gt;
* In class on 12/10/15, we worked on figuring out the corrections for our GenMAPP code and made a new dataset using the finished data from the GenMAPP users.&lt;br /&gt;
* Then we ran GenMAPP Finder and ran into an issue because we were using the wrong column.&lt;br /&gt;
* Our group met up on 12/12/15 and continued working.&lt;br /&gt;
* We were able to run MAPPFinder successfully and generated all of the necessary files for our deliverables. &lt;br /&gt;
* As of now, we are waiting to find out how to get a sample MAPP file of a relevant biological pathway.&lt;br /&gt;
* We are going to individually work on our presentation slides and go over the entire thing on Monday night.&lt;br /&gt;
&lt;br /&gt;
==Individual Assessment &amp;amp; Reflection==&lt;br /&gt;
=== Statement of Work ===&lt;br /&gt;
&lt;br /&gt;
* Describe exactly what you did on the project.&lt;br /&gt;
* Provide references or links to artifacts of your work, such as:&lt;br /&gt;
** Wiki pages&lt;br /&gt;
** Other files or documents&lt;br /&gt;
** Code or scripts&lt;br /&gt;
&lt;br /&gt;
=== Assessment of Project ===&lt;br /&gt;
&lt;br /&gt;
* Give an objective assessment of the success of your project workflow and teamwork.  &lt;br /&gt;
* What worked and what didn&amp;#039;t work?  &lt;br /&gt;
* What would you do differently if you could do it all over again?&lt;br /&gt;
* Evaluate the Gene Database Project and Group Report in the following areas:&lt;br /&gt;
*# Content: What is the quality of the work? &lt;br /&gt;
*# Organization: Comment on the organization of the project and of your group&amp;#039;s wiki pages.&lt;br /&gt;
*# Completeness:  Did your team achieve all of the project objectives?  Why or why not?&lt;br /&gt;
&lt;br /&gt;
=== Reflection on the Process ===&lt;br /&gt;
&lt;br /&gt;
* What did you learn?&lt;br /&gt;
** With your head (biological or computer science principles)&lt;br /&gt;
** With your heart (personal qualities and teamwork qualities that make things work or not work)?&lt;br /&gt;
** With your hands (technical skills)?&lt;br /&gt;
* What lesson will you take away from this project that you will still use a year from now?&lt;br /&gt;
&lt;br /&gt;
{{Template:Journal Template}}&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Heavy_Metal_HaterZ_Deliverables&amp;diff=7708</id>
		<title>Heavy Metal HaterZ Deliverables</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Heavy_Metal_HaterZ_Deliverables&amp;diff=7708"/>
				<updated>2015-12-13T00:38:41Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: /* Group Files and Datasets */ adding files&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Heavy Metal HaterZ}}&lt;br /&gt;
&lt;br /&gt;
== Group Files and Datasets ==&lt;br /&gt;
&lt;br /&gt;
* [[Media:So-Std 20151201special.zip | GenMAPP Gene Database for assigned species]]&lt;br /&gt;
* ReadMe file to accompany the Gene Database (&amp;#039;&amp;#039;.pdf&amp;#039;&amp;#039;)&lt;br /&gt;
** Shewanella onedensis ReadMe&lt;br /&gt;
** Include Gene Database Schema diagram in ReadMe&lt;br /&gt;
*** Sample schema in Adobe Illustrator format:  [[Media:Vibrio_schema_20101022.zip | Vibrio_schema_20101022.zip]]&lt;br /&gt;
* [[Media:Gene Database Testing Report - Heavy Metal HaterZ.pdf | Gene Database Testing Report]] for final submitted Gene Database&lt;br /&gt;
* Processed and analyzed DNA microarray dataset (&amp;#039;&amp;#039;.xls&amp;#039;&amp;#039; or &amp;#039;&amp;#039;.xlsx&amp;#039;&amp;#039;)&lt;br /&gt;
* [[Media:CompiledRawData ForGenMAPP 20151208 HMH.txt | Data file]] used for import into GenMAPP&lt;br /&gt;
* [[Media:CompiledRawData ForGenMAPP 20151210 HMH.gex | GenMAPP Expression Dataset file]]&lt;br /&gt;
* [[Media:CompiledRawData ForGenMAPP 20151210 HMH.EX.txt | Exceptions file]] of data imported into GenMAPP&lt;br /&gt;
* Raw MAPPFinder results files:&lt;br /&gt;
** [[Media:MAPPFINDER 20151212-Criterion0-GO.txt | criterion 0]]&lt;br /&gt;
** [[Media:MAPPFINDER 20151212-Criterion1-GO.txt | criterion 1]]&lt;br /&gt;
* [[Media:CompiledRawData ForGenMAPP 20151210 HMH.zip | &amp;#039;&amp;#039;.gmf&amp;#039;&amp;#039; file]]&lt;br /&gt;
* Filtered MAPPFinder Results (&amp;#039;&amp;#039;.xls&amp;#039;&amp;#039; or &amp;#039;&amp;#039;.xlsx&amp;#039;&amp;#039;)&lt;br /&gt;
**[[Media:MAPPFINDER 20151212-Criterion0-GO.xlsx | criterion 0]]&lt;br /&gt;
**[[Media:MAPPFINDER 20151212-Criterion1-GO 20151212 HMH.xlsx | criterion 1]]&lt;br /&gt;
* Sample MAPP file of a relevant biological pathway for your species (&amp;#039;&amp;#039;.mapp&amp;#039;&amp;#039;)&lt;br /&gt;
* [[Gene Database Project Deliverables#Group Report | Group Report]] describing the creation of the Gene Database and the biological analysis of the data (&amp;#039;&amp;#039;.doc&amp;#039;&amp;#039;, &amp;#039;&amp;#039;.docx&amp;#039;&amp;#039;, or &amp;#039;&amp;#039;.pdf&amp;#039;&amp;#039;)&lt;br /&gt;
* PowerPoint presentation (&amp;#039;&amp;#039;.ppt&amp;#039;&amp;#039;, &amp;#039;&amp;#039;.pptx&amp;#039;&amp;#039;, or &amp;#039;&amp;#039;.pdf&amp;#039;&amp;#039;, given on Tuesday, December 15)&lt;br /&gt;
&lt;br /&gt;
[[Gene Database Project Deliverables]]&lt;br /&gt;
[[Category:Heavy Metal HaterZ]]&lt;br /&gt;
[[Category:Group Projects]]&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=File:MAPPFINDER_20151212-Criterion0-GO.xlsx&amp;diff=7707</id>
		<title>File:MAPPFINDER 20151212-Criterion0-GO.xlsx</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=File:MAPPFINDER_20151212-Criterion0-GO.xlsx&amp;diff=7707"/>
				<updated>2015-12-13T00:36:26Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=File:CompiledRawData_ForGenMAPP_20151210_HMH.zip&amp;diff=7706</id>
		<title>File:CompiledRawData ForGenMAPP 20151210 HMH.zip</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=File:CompiledRawData_ForGenMAPP_20151210_HMH.zip&amp;diff=7706"/>
				<updated>2015-12-13T00:35:26Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: gmf&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;gmf&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=File:MAPPFINDER_20151212-Criterion1-GO.txt&amp;diff=7705</id>
		<title>File:MAPPFINDER 20151212-Criterion1-GO.txt</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=File:MAPPFINDER_20151212-Criterion1-GO.txt&amp;diff=7705"/>
				<updated>2015-12-13T00:34:03Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: heavy metal haterZ&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;heavy metal haterZ&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=File:MAPPFINDER_20151212-Criterion0-GO.txt&amp;diff=7704</id>
		<title>File:MAPPFINDER 20151212-Criterion0-GO.txt</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=File:MAPPFINDER_20151212-Criterion0-GO.txt&amp;diff=7704"/>
				<updated>2015-12-13T00:33:16Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: heavy metal haterZ&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;heavy metal haterZ&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=File:CompiledRawData_ForGenMAPP_20151210_HMH.gex&amp;diff=7703</id>
		<title>File:CompiledRawData ForGenMAPP 20151210 HMH.gex</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=File:CompiledRawData_ForGenMAPP_20151210_HMH.gex&amp;diff=7703"/>
				<updated>2015-12-13T00:32:08Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: heavy metal haterZ&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;heavy metal haterZ&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Heavy_Metal_HaterZ_Deliverables&amp;diff=7702</id>
		<title>Heavy Metal HaterZ Deliverables</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Heavy_Metal_HaterZ_Deliverables&amp;diff=7702"/>
				<updated>2015-12-13T00:30:56Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: /* Group Files and Datasets */ GenMAPP Expression Dataset file&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Heavy Metal HaterZ}}&lt;br /&gt;
&lt;br /&gt;
== Group Files and Datasets ==&lt;br /&gt;
&lt;br /&gt;
* [[Media:So-Std 20151201special.zip | GenMAPP Gene Database for assigned species]]&lt;br /&gt;
* ReadMe file to accompany the Gene Database (&amp;#039;&amp;#039;.pdf&amp;#039;&amp;#039;)&lt;br /&gt;
** Shewanella onedensis ReadMe&lt;br /&gt;
** Include Gene Database Schema diagram in ReadMe&lt;br /&gt;
*** Sample schema in Adobe Illustrator format:  [[Media:Vibrio_schema_20101022.zip | Vibrio_schema_20101022.zip]]&lt;br /&gt;
* [[Media:Gene Database Testing Report - Heavy Metal HaterZ.pdf | Gene Database Testing Report]] for final submitted Gene Database&lt;br /&gt;
* Processed and analyzed DNA microarray dataset (&amp;#039;&amp;#039;.xls&amp;#039;&amp;#039; or &amp;#039;&amp;#039;.xlsx&amp;#039;&amp;#039;)&lt;br /&gt;
* [[Media:CompiledRawData ForGenMAPP 20151208 HMH.txt | Data file]] used for import into GenMAPP&lt;br /&gt;
* [[Media:CompiledRawData ForGenMAPP 20151210 HMH.EX.txt | GenMAPP Expression Dataset file]]&lt;br /&gt;
* Exceptions file of data imported into GenMAPP (&amp;#039;&amp;#039;.EX.txt&amp;#039;&amp;#039;)&lt;br /&gt;
* Raw MAPPFinder results files (&amp;#039;&amp;#039;-GO.txt&amp;#039;&amp;#039;)&lt;br /&gt;
* &amp;#039;&amp;#039;.gmf&amp;#039;&amp;#039; file&lt;br /&gt;
* Filtered MAPPFinder Results (&amp;#039;&amp;#039;.xls&amp;#039;&amp;#039; or &amp;#039;&amp;#039;.xlsx&amp;#039;&amp;#039;)&lt;br /&gt;
* Sample MAPP file of a relevant biological pathway for your species (&amp;#039;&amp;#039;.mapp&amp;#039;&amp;#039;)&lt;br /&gt;
* [[Gene Database Project Deliverables#Group Report | Group Report]] describing the creation of the Gene Database and the biological analysis of the data (&amp;#039;&amp;#039;.doc&amp;#039;&amp;#039;, &amp;#039;&amp;#039;.docx&amp;#039;&amp;#039;, or &amp;#039;&amp;#039;.pdf&amp;#039;&amp;#039;)&lt;br /&gt;
* PowerPoint presentation (&amp;#039;&amp;#039;.ppt&amp;#039;&amp;#039;, &amp;#039;&amp;#039;.pptx&amp;#039;&amp;#039;, or &amp;#039;&amp;#039;.pdf&amp;#039;&amp;#039;, given on Tuesday, December 15)&lt;br /&gt;
&lt;br /&gt;
[[Gene Database Project Deliverables]]&lt;br /&gt;
[[Category:Heavy Metal HaterZ]]&lt;br /&gt;
[[Category:Group Projects]]&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=File:CompiledRawData_ForGenMAPP_20151210_HMH.EX.txt&amp;diff=7701</id>
		<title>File:CompiledRawData ForGenMAPP 20151210 HMH.EX.txt</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=File:CompiledRawData_ForGenMAPP_20151210_HMH.EX.txt&amp;diff=7701"/>
				<updated>2015-12-13T00:30:18Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: heavy metal haterZ&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;heavy metal haterZ&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Heavy_Metal_HaterZ_Deliverables&amp;diff=7700</id>
		<title>Heavy Metal HaterZ Deliverables</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Heavy_Metal_HaterZ_Deliverables&amp;diff=7700"/>
				<updated>2015-12-13T00:29:33Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: /* Group Files and Datasets */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Heavy Metal HaterZ}}&lt;br /&gt;
&lt;br /&gt;
== Group Files and Datasets ==&lt;br /&gt;
&lt;br /&gt;
* [[Media:So-Std 20151201special.zip | GenMAPP Gene Database for assigned species]]&lt;br /&gt;
* ReadMe file to accompany the Gene Database (&amp;#039;&amp;#039;.pdf&amp;#039;&amp;#039;)&lt;br /&gt;
** Shewanella onedensis ReadMe&lt;br /&gt;
** Include Gene Database Schema diagram in ReadMe&lt;br /&gt;
*** Sample schema in Adobe Illustrator format:  [[Media:Vibrio_schema_20101022.zip | Vibrio_schema_20101022.zip]]&lt;br /&gt;
* [[Media:Gene Database Testing Report - Heavy Metal HaterZ.pdf | Gene Database Testing Report]] for final submitted Gene Database&lt;br /&gt;
* Processed and analyzed DNA microarray dataset (&amp;#039;&amp;#039;.xls&amp;#039;&amp;#039; or &amp;#039;&amp;#039;.xlsx&amp;#039;&amp;#039;)&lt;br /&gt;
* [[Media:CompiledRawData ForGenMAPP 20151208 HMH.txt | Data file]] used for import into GenMAPP&lt;br /&gt;
* GenMAPP Expression Dataset file (&amp;#039;&amp;#039;.gex&amp;#039;&amp;#039;)&lt;br /&gt;
* Exceptions file of data imported into GenMAPP (&amp;#039;&amp;#039;.EX.txt&amp;#039;&amp;#039;)&lt;br /&gt;
* Raw MAPPFinder results files (&amp;#039;&amp;#039;-GO.txt&amp;#039;&amp;#039;)&lt;br /&gt;
* &amp;#039;&amp;#039;.gmf&amp;#039;&amp;#039; file&lt;br /&gt;
* Filtered MAPPFinder Results (&amp;#039;&amp;#039;.xls&amp;#039;&amp;#039; or &amp;#039;&amp;#039;.xlsx&amp;#039;&amp;#039;)&lt;br /&gt;
* Sample MAPP file of a relevant biological pathway for your species (&amp;#039;&amp;#039;.mapp&amp;#039;&amp;#039;)&lt;br /&gt;
* [[Gene Database Project Deliverables#Group Report | Group Report]] describing the creation of the Gene Database and the biological analysis of the data (&amp;#039;&amp;#039;.doc&amp;#039;&amp;#039;, &amp;#039;&amp;#039;.docx&amp;#039;&amp;#039;, or &amp;#039;&amp;#039;.pdf&amp;#039;&amp;#039;)&lt;br /&gt;
* PowerPoint presentation (&amp;#039;&amp;#039;.ppt&amp;#039;&amp;#039;, &amp;#039;&amp;#039;.pptx&amp;#039;&amp;#039;, or &amp;#039;&amp;#039;.pdf&amp;#039;&amp;#039;, given on Tuesday, December 15)&lt;br /&gt;
&lt;br /&gt;
[[Gene Database Project Deliverables]]&lt;br /&gt;
[[Category:Heavy Metal HaterZ]]&lt;br /&gt;
[[Category:Group Projects]]&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Heavy_Metal_HaterZ_Deliverables&amp;diff=7699</id>
		<title>Heavy Metal HaterZ Deliverables</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Heavy_Metal_HaterZ_Deliverables&amp;diff=7699"/>
				<updated>2015-12-13T00:29:12Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: /* Group Files and Datasets */ import file for GenMAPP&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Heavy Metal HaterZ}}&lt;br /&gt;
&lt;br /&gt;
== Group Files and Datasets ==&lt;br /&gt;
&lt;br /&gt;
* [[Media:So-Std 20151201special.zip | GenMAPP Gene Database for assigned species]]&lt;br /&gt;
* ReadMe file to accompany the Gene Database (&amp;#039;&amp;#039;.pdf&amp;#039;&amp;#039;)&lt;br /&gt;
** Shewanella onedensis ReadMe&lt;br /&gt;
** Include Gene Database Schema diagram in ReadMe&lt;br /&gt;
*** Sample schema in Adobe Illustrator format:  [[Media:Vibrio_schema_20101022.zip | Vibrio_schema_20101022.zip]]&lt;br /&gt;
* [[Media:Gene Database Testing Report - Heavy Metal HaterZ.pdf | Gene Database Testing Report]] for final submitted Gene Database&lt;br /&gt;
* Processed and analyzed DNA microarray dataset (&amp;#039;&amp;#039;.xls&amp;#039;&amp;#039; or &amp;#039;&amp;#039;.xlsx&amp;#039;&amp;#039;)&lt;br /&gt;
* [[CompiledRawData ForGenMAPP 20151208 HMH.txt | Data file]] used for import into GenMAPP&lt;br /&gt;
* GenMAPP Expression Dataset file (&amp;#039;&amp;#039;.gex&amp;#039;&amp;#039;)&lt;br /&gt;
* Exceptions file of data imported into GenMAPP (&amp;#039;&amp;#039;.EX.txt&amp;#039;&amp;#039;)&lt;br /&gt;
* Raw MAPPFinder results files (&amp;#039;&amp;#039;-GO.txt&amp;#039;&amp;#039;)&lt;br /&gt;
* &amp;#039;&amp;#039;.gmf&amp;#039;&amp;#039; file&lt;br /&gt;
* Filtered MAPPFinder Results (&amp;#039;&amp;#039;.xls&amp;#039;&amp;#039; or &amp;#039;&amp;#039;.xlsx&amp;#039;&amp;#039;)&lt;br /&gt;
* Sample MAPP file of a relevant biological pathway for your species (&amp;#039;&amp;#039;.mapp&amp;#039;&amp;#039;)&lt;br /&gt;
* [[Gene Database Project Deliverables#Group Report | Group Report]] describing the creation of the Gene Database and the biological analysis of the data (&amp;#039;&amp;#039;.doc&amp;#039;&amp;#039;, &amp;#039;&amp;#039;.docx&amp;#039;&amp;#039;, or &amp;#039;&amp;#039;.pdf&amp;#039;&amp;#039;)&lt;br /&gt;
* PowerPoint presentation (&amp;#039;&amp;#039;.ppt&amp;#039;&amp;#039;, &amp;#039;&amp;#039;.pptx&amp;#039;&amp;#039;, or &amp;#039;&amp;#039;.pdf&amp;#039;&amp;#039;, given on Tuesday, December 15)&lt;br /&gt;
&lt;br /&gt;
[[Gene Database Project Deliverables]]&lt;br /&gt;
[[Category:Heavy Metal HaterZ]]&lt;br /&gt;
[[Category:Group Projects]]&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=File:CompiledRawData_ForGenMAPP_20151208_HMH.txt&amp;diff=7698</id>
		<title>File:CompiledRawData ForGenMAPP 20151208 HMH.txt</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=File:CompiledRawData_ForGenMAPP_20151208_HMH.txt&amp;diff=7698"/>
				<updated>2015-12-13T00:28:36Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: Jkuroda uploaded a new version of File:CompiledRawData ForGenMAPP 20151208 HMH.txt&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Heavy_Metal_HaterZ_Deliverables&amp;diff=7697</id>
		<title>Heavy Metal HaterZ Deliverables</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Heavy_Metal_HaterZ_Deliverables&amp;diff=7697"/>
				<updated>2015-12-13T00:25:40Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: /* Group Files and Datasets */ minor&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Heavy Metal HaterZ}}&lt;br /&gt;
&lt;br /&gt;
== Group Files and Datasets ==&lt;br /&gt;
&lt;br /&gt;
* [[Media:So-Std 20151201special.zip | GenMAPP Gene Database for assigned species]]&lt;br /&gt;
* ReadMe file to accompany the Gene Database (&amp;#039;&amp;#039;.pdf&amp;#039;&amp;#039;)&lt;br /&gt;
** Shewanella onedensis ReadMe&lt;br /&gt;
** Include Gene Database Schema diagram in ReadMe&lt;br /&gt;
*** Sample schema in Adobe Illustrator format:  [[Media:Vibrio_schema_20101022.zip | Vibrio_schema_20101022.zip]]&lt;br /&gt;
* [[Media:Gene Database Testing Report - Heavy Metal HaterZ.pdf | Gene Database Testing Report]] for final submitted Gene Database&lt;br /&gt;
* Processed and analyzed DNA microarray dataset (&amp;#039;&amp;#039;.xls&amp;#039;&amp;#039; or &amp;#039;&amp;#039;.xlsx&amp;#039;&amp;#039;)&lt;br /&gt;
* Data file used for import into GenMAPP (&amp;#039;&amp;#039;.txt&amp;#039;&amp;#039; or &amp;#039;&amp;#039;.csv&amp;#039;&amp;#039;)&lt;br /&gt;
* GenMAPP Expression Dataset file (&amp;#039;&amp;#039;.gex&amp;#039;&amp;#039;)&lt;br /&gt;
* Exceptions file of data imported into GenMAPP (&amp;#039;&amp;#039;.EX.txt&amp;#039;&amp;#039;)&lt;br /&gt;
* Raw MAPPFinder results files (&amp;#039;&amp;#039;-GO.txt&amp;#039;&amp;#039;)&lt;br /&gt;
* &amp;#039;&amp;#039;.gmf&amp;#039;&amp;#039; file&lt;br /&gt;
* Filtered MAPPFinder Results (&amp;#039;&amp;#039;.xls&amp;#039;&amp;#039; or &amp;#039;&amp;#039;.xlsx&amp;#039;&amp;#039;)&lt;br /&gt;
* Sample MAPP file of a relevant biological pathway for your species (&amp;#039;&amp;#039;.mapp&amp;#039;&amp;#039;)&lt;br /&gt;
* [[Gene Database Project Deliverables#Group Report | Group Report]] describing the creation of the Gene Database and the biological analysis of the data (&amp;#039;&amp;#039;.doc&amp;#039;&amp;#039;, &amp;#039;&amp;#039;.docx&amp;#039;&amp;#039;, or &amp;#039;&amp;#039;.pdf&amp;#039;&amp;#039;)&lt;br /&gt;
* PowerPoint presentation (&amp;#039;&amp;#039;.ppt&amp;#039;&amp;#039;, &amp;#039;&amp;#039;.pptx&amp;#039;&amp;#039;, or &amp;#039;&amp;#039;.pdf&amp;#039;&amp;#039;, given on Tuesday, December 15)&lt;br /&gt;
&lt;br /&gt;
[[Gene Database Project Deliverables]]&lt;br /&gt;
[[Category:Heavy Metal HaterZ]]&lt;br /&gt;
[[Category:Group Projects]]&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Heavy_Metal_HaterZ_Deliverables&amp;diff=7696</id>
		<title>Heavy Metal HaterZ Deliverables</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Heavy_Metal_HaterZ_Deliverables&amp;diff=7696"/>
				<updated>2015-12-13T00:25:14Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: /* Group Files and Datasets */ adding GDTR pdf&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Heavy Metal HaterZ}}&lt;br /&gt;
&lt;br /&gt;
== Group Files and Datasets ==&lt;br /&gt;
&lt;br /&gt;
* [[Media:So-Std 20151201special.zip | GenMAPP Gene Database for assigned species]]&lt;br /&gt;
* ReadMe file to accompany the Gene Database (&amp;#039;&amp;#039;.pdf&amp;#039;&amp;#039;)&lt;br /&gt;
** Sample ReadMe in Word format:  [[Media:ReadMe_Vc-Std_External_20131122.zip | ReadMe_Vc-Std_External_20131122.zip]]&lt;br /&gt;
** [https://github.com/lmu-bioinformatics/xmlpipedb/blob/readme/GenMAPP%20Gene%20Databases/V.%20cholerae/V.%20cholerae%2020101022/ReadMe.md Sample ReadMe in markdown (a work in progress)] &lt;br /&gt;
** Include Gene Database Schema diagram in ReadMe&lt;br /&gt;
*** Sample schema in Adobe Illustrator format:  [[Media:Vibrio_schema_20101022.zip | Vibrio_schema_20101022.zip]]&lt;br /&gt;
* [[Media:Gene Database Testing Report - Heavy Metal HaterZ.pdf | Gene Database Testing Report]] for final submitted Gene Database&lt;br /&gt;
* Processed and analyzed DNA microarray dataset (&amp;#039;&amp;#039;.xls&amp;#039;&amp;#039; or &amp;#039;&amp;#039;.xlsx&amp;#039;&amp;#039;)&lt;br /&gt;
* Data file used for import into GenMAPP (&amp;#039;&amp;#039;.txt&amp;#039;&amp;#039; or &amp;#039;&amp;#039;.csv&amp;#039;&amp;#039;)&lt;br /&gt;
* GenMAPP Expression Dataset file (&amp;#039;&amp;#039;.gex&amp;#039;&amp;#039;)&lt;br /&gt;
* Exceptions file of data imported into GenMAPP (&amp;#039;&amp;#039;.EX.txt&amp;#039;&amp;#039;)&lt;br /&gt;
* Raw MAPPFinder results files (&amp;#039;&amp;#039;-GO.txt&amp;#039;&amp;#039;)&lt;br /&gt;
* &amp;#039;&amp;#039;.gmf&amp;#039;&amp;#039; file&lt;br /&gt;
* Filtered MAPPFinder Results (&amp;#039;&amp;#039;.xls&amp;#039;&amp;#039; or &amp;#039;&amp;#039;.xlsx&amp;#039;&amp;#039;)&lt;br /&gt;
* Sample MAPP file of a relevant biological pathway for your species (&amp;#039;&amp;#039;.mapp&amp;#039;&amp;#039;)&lt;br /&gt;
* [[Gene Database Project Deliverables#Group Report | Group Report]] describing the creation of the Gene Database and the biological analysis of the data (&amp;#039;&amp;#039;.doc&amp;#039;&amp;#039;, &amp;#039;&amp;#039;.docx&amp;#039;&amp;#039;, or &amp;#039;&amp;#039;.pdf&amp;#039;&amp;#039;)&lt;br /&gt;
* PowerPoint presentation (&amp;#039;&amp;#039;.ppt&amp;#039;&amp;#039;, &amp;#039;&amp;#039;.pptx&amp;#039;&amp;#039;, or &amp;#039;&amp;#039;.pdf&amp;#039;&amp;#039;, given on Tuesday, December 15)&lt;br /&gt;
&lt;br /&gt;
[[Gene Database Project Deliverables]]&lt;br /&gt;
[[Category:Heavy Metal HaterZ]]&lt;br /&gt;
[[Category:Group Projects]]&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=File:Gene_Database_Testing_Report_-_Heavy_Metal_HaterZ.pdf&amp;diff=7695</id>
		<title>File:Gene Database Testing Report - Heavy Metal HaterZ.pdf</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=File:Gene_Database_Testing_Report_-_Heavy_Metal_HaterZ.pdf&amp;diff=7695"/>
				<updated>2015-12-13T00:23:10Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: Heavy Metal HaterZ&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Heavy Metal HaterZ&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Gene_Database_Testing_Report_-_Heavy_Metal_HaterZ&amp;diff=7692</id>
		<title>Gene Database Testing Report - Heavy Metal HaterZ</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Gene_Database_Testing_Report_-_Heavy_Metal_HaterZ&amp;diff=7692"/>
				<updated>2015-12-13T00:16:05Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: /* Running MAPPFinder */ adding relevant files&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Heavy Metal HaterZ}}&lt;br /&gt;
==Export Information==&lt;br /&gt;
&lt;br /&gt;
Version of GenMAPP Builder: &amp;#039;&amp;#039;&amp;#039;3 build 5&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Computer on which export was run: &amp;#039;&amp;#039;&amp;#039;HP Compaq 8300 Elite SFF FC&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Postgres Database name: &amp;#039;&amp;#039;&amp;#039;S. Oneidensis&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
UniProt XML filename: [[Media:SOneidensisUNIPROT.gz | &amp;#039;&amp;#039;&amp;#039;SOneidensisUNIPROT&amp;#039;&amp;#039;&amp;#039;]]&lt;br /&gt;
* UniProt XML version: &amp;#039;&amp;#039;&amp;#039;UniProt release 2015_10 - October 14, 2015&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* [http://www.uniprot.org/uniprot/?query=taxonomy:211586 UniProt XML download link]&lt;br /&gt;
* Time taken to import: &amp;#039;&amp;#039;&amp;#039;3.18 minutes&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** Note: &amp;#039;&amp;#039;n/a&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
GO OBO-XML filename: [[Media:Go daily-termdb.obo-xml.gz | &amp;#039;&amp;#039;&amp;#039;go daily-termdb.obo-xml&amp;#039;&amp;#039;&amp;#039;]]&lt;br /&gt;
* GO OBO-XML version (The version information can be found in the file properties after the file downloaded from the [http://beta.geneontology.org/page/download-ontology GO Download page] has been unzipped): &lt;br /&gt;
* [http://geneontology.org/page/download-ontology#Legacy_Downloads GO OBO-XML download link]&lt;br /&gt;
* Time taken to import: &amp;#039;&amp;#039;&amp;#039;7.16 minutes&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Time taken to process: &amp;#039;&amp;#039;&amp;#039;4.27 minutes&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** Note: &amp;#039;&amp;#039;n/a&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
GOA filename: [[Media:ShewanellaOneidensisGOA.zip | &amp;#039;&amp;#039;&amp;#039;ShewanellaOneidensisGOA&amp;#039;&amp;#039;&amp;#039;]]&lt;br /&gt;
* GOA version (News on [http://www.ebi.ac.uk/GOA/ this page] records past releases; current information can be found in the Last modified field on the [ftp://ftp.ebi.ac.uk/pub/databases/GO/goa/proteomes/ FTP site]): &amp;#039;&amp;#039;&amp;#039;October 14, 2015 - GOA Proteome Sets 124&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* [ftp://ftp.ebi.ac.uk/pub/databases/GO/goa/proteomes/106.S_oneidensis.goa GOA download link]&lt;br /&gt;
* Time taken to import: &amp;#039;&amp;#039;&amp;#039;0.05 minutes&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** Note: &amp;#039;&amp;#039;n/a&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Name of .gdb file: [[Media:So-Std 20151119HMH.zip | &amp;#039;&amp;#039;&amp;#039;So-Std 20151119HMH.gdb&amp;#039;&amp;#039;&amp;#039;]]&lt;br /&gt;
* Time taken to export: &amp;#039;&amp;#039;&amp;#039;1 hour and 18 minutes&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** Start time: &amp;#039;&amp;#039;&amp;#039;3:48pm&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** End time: &amp;#039;&amp;#039;&amp;#039;5:06pm&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** Note: &amp;#039;&amp;#039;n/a&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
==TallyEngine==&lt;br /&gt;
&lt;br /&gt;
* Run the TallyEngine in GenMAPP Builder and record the number of records for UniProt and GO in the XML data and in the Postgres databases.&lt;br /&gt;
** Choose the menu item Tallies &amp;gt; Run XML and Database Tallies for UniProt and GO...&lt;br /&gt;
** Take a screenshot of the results.  Upload the image to the wiki and display it on this page.&lt;br /&gt;
** &amp;#039;&amp;#039;&amp;#039;4196&amp;#039;&amp;#039;&amp;#039; IDs&lt;br /&gt;
** For more information, [[How_Do_I_Count_Thee%3F_Let_Me_Count_The_Ways | see this page.]]&lt;br /&gt;
&lt;br /&gt;
[[Image:TallyEngineSOneidensis.PNG | center | 540px]]&lt;br /&gt;
&lt;br /&gt;
== Using XMLPipeDB match to Validate the XML Results from the TallyEngine==&lt;br /&gt;
&lt;br /&gt;
[[How_Do_I_Count_Thee%3F_Let_Me_Count_The_Ways | Follow the instructions found on this page to run XMLPipeDB match.]]&lt;br /&gt;
&lt;br /&gt;
Are your results the same as you got for the TallyEngine?  Why or why not?&lt;br /&gt;
* Initially, we got &amp;#039;&amp;#039;&amp;#039;4196&amp;#039;&amp;#039;&amp;#039; IDs for both XML and Postgres DB from TallyEngine but got &amp;#039;&amp;#039;&amp;#039;4079&amp;#039;&amp;#039;&amp;#039; IDs by using XMLPipeDB match. This result was from using the following command:&lt;br /&gt;
 java -jar xmlpipedb-match-1.1.1.jar &amp;quot;SO_[0-9][0-9][0-9][0-9]&amp;quot; &amp;lt; SOneidensisUNIPROT&lt;br /&gt;
&lt;br /&gt;
* After checking the .gdb file and looking through the Gene IDs, I found that some IDs were in the form &amp;quot;SO_A####&amp;quot; so I ran a new command accounting for this:&lt;br /&gt;
 java -jar xmlpipedb-match-1.1.1.jar &amp;quot;SO_A?[0-9][0-9][0-9][0-9]&amp;quot; &amp;lt; SOneidensisUNIPROT&lt;br /&gt;
* This gave a total number of &amp;#039;&amp;#039;&amp;#039;4207&amp;#039;&amp;#039;&amp;#039; IDs.&lt;br /&gt;
&lt;br /&gt;
== Using SQL Queries to Validate the PostgreSQL Database Results from the TallyEngine==&lt;br /&gt;
&lt;br /&gt;
For more information, [[How_Do_I_Count_Thee%3F_Let_Me_Count_The_Ways | see this page.]]&lt;br /&gt;
&lt;br /&gt;
You can also look for counts at the SQL level, using some variation of a &amp;#039;&amp;#039;select count(*)&amp;#039;&amp;#039; query.  This requires some knowledge of which table received what data.  Here&amp;amp;rsquo;s an initial tip: the &amp;#039;&amp;#039;gene/name&amp;#039;&amp;#039; tags in the XML file land in the &amp;#039;&amp;#039;genenametype&amp;#039;&amp;#039; table.  A query on this table counting values from this table that were marked as &amp;#039;&amp;#039;ordered locus&amp;#039;&amp;#039; in the XML file matching the pattern &amp;#039;&amp;#039;SO_[0-9][0-9][0-9][0-9]&amp;#039;&amp;#039; would look like this:&lt;br /&gt;
&lt;br /&gt;
 select count(*) from genenametype where type = &amp;#039;ordered locus&amp;#039; and value ~ &amp;#039;SO_[0-9][0-9][0-9][0-9]&amp;#039;;&lt;br /&gt;
* However, once I found that some IDs were in the form &amp;quot;SO_A####&amp;quot; I tweaked the pattern to account for those IDs:&lt;br /&gt;
 select count(*) from genenametype where type = &amp;#039;ordered locus&amp;#039; and value ~ &amp;#039;SO_A?[0-9][0-9][0-9][0-9]&amp;#039;;&lt;br /&gt;
&lt;br /&gt;
In &amp;#039;&amp;#039;pgAdmin III&amp;#039;&amp;#039;, you can issue these queries by clicking on the pencil/SQL icon in the toolbar, typing the query into the &amp;#039;&amp;#039;SQL Editor&amp;#039;&amp;#039; tab, then clicking on the green triangular &amp;#039;&amp;#039;Play&amp;#039;&amp;#039; button to run.&lt;br /&gt;
&lt;br /&gt;
Are your results the same as reported by the TallyEngine?  Why or why not?&lt;br /&gt;
* Initially, we got a count of &amp;#039;&amp;#039;&amp;#039;4068&amp;#039;&amp;#039;&amp;#039; IDs using SQL, which differed from the &amp;#039;&amp;#039;&amp;#039;4196&amp;#039;&amp;#039;&amp;#039; IDs from TallyEngine.&lt;br /&gt;
* After tweaking the pattern to account for IDs with that extra &amp;#039;&amp;#039;A&amp;#039;&amp;#039;, we got a grand total of &amp;#039;&amp;#039;&amp;#039;4196&amp;#039;&amp;#039;&amp;#039; IDs, which matches with what TallyEngine gave us.&lt;br /&gt;
&lt;br /&gt;
==OriginalRowCounts Comparison==&lt;br /&gt;
&lt;br /&gt;
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.&lt;br /&gt;
&lt;br /&gt;
Benchmark .gdb file: [http://sourceforge.net/projects/xmlpipedb/files/V.%20cholerae%20Gene%20Database/V.%20cholerae%2020101022/Vc-Std_External_20101022.zip/download 2010 benchmark file]&lt;br /&gt;
&lt;br /&gt;
Copy the OriginalRowCounts table from the benchmark and new gdb and paste them here:&lt;br /&gt;
&lt;br /&gt;
[[Media:OriginalRowCounts.pdf | Original Row Counts Table]]&lt;br /&gt;
&lt;br /&gt;
[[Media:OriginalRowCounts2010.pdf | 2010 Benchmark Original Row Counts Table]]&lt;br /&gt;
&lt;br /&gt;
See Analysis section for more on the comparison and the discrepancy found because of this comparison.&lt;br /&gt;
&lt;br /&gt;
Note: Using Microsoft Access, we found &amp;#039;&amp;#039;7664&amp;#039;&amp;#039; IDs, which was actually double the number of IDs present because of duplicated IDs that did not have an underscore.&lt;br /&gt;
&lt;br /&gt;
==Visual Inspection==&lt;br /&gt;
&lt;br /&gt;
Perform visual inspection of individual tables to see if there are any problems.&lt;br /&gt;
&lt;br /&gt;
* Look at the Systems table. Is there a date in the Date field for all gene ID systems present in the database?&lt;br /&gt;
** No. For the current version, a good number of gene ID systems in the database do not have a value for the date field. Some systems that lack a date include: GenBank, UniGene, WormBase, and EcoGene.&lt;br /&gt;
* Open the UniProt, RefSeq, and OrderedLocusNames tables. Scroll down through the table. Do all of the IDs look like they take the correct form for that type of ID?&lt;br /&gt;
** For the UniProt table, the IDs start with either &amp;#039;&amp;#039;Q8&amp;#039;&amp;#039; or &amp;#039;&amp;#039;K4&amp;#039;&amp;#039; and have some string of four letters/numbers trailing that. For the RefSeq tables, the IDs have forms that start with either &amp;#039;&amp;#039;NP_&amp;#039;&amp;#039; or &amp;#039;&amp;#039;WP_&amp;#039;&amp;#039;, with the &amp;#039;&amp;#039;WP_&amp;#039;&amp;#039; forms having 9 numbers afterwards and the &amp;#039;&amp;#039;NP_&amp;#039;&amp;#039; forms having 6 numbers afterwards. For the OrderedLocusNames table, the IDs either start with &amp;lt;code&amp;gt;SO_&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;SO_A&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Note: &amp;#039;&amp;#039;n/a&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
==Analysis==&lt;br /&gt;
&lt;br /&gt;
Consolidating the counts of gene IDs from the various methods, I got:&lt;br /&gt;
&lt;br /&gt;
* 4196 IDs from Tally Engine&lt;br /&gt;
* &amp;#039;&amp;#039;4207&amp;#039;&amp;#039; IDs from xmlpipedb-match&lt;br /&gt;
 java -jar xmlpipedb-match-1.1.1.jar &amp;quot;SO_A?[0-9][0-9][0-9][0-9]&amp;quot; &amp;lt; SOneidensisUNIPROT&lt;br /&gt;
* 4196 IDs from PostgreSQL&lt;br /&gt;
 select count(*) from genenametype where type = &amp;#039;ordered locus&amp;#039; and value ~ &amp;#039;SO_A?[0-9][0-9][0-9][0-9]&amp;#039;;&lt;br /&gt;
* 4196 IDs from Microsoft Access (Noted that there were 4068 IDs in the form &amp;lt;code&amp;gt;SO_####&amp;lt;/code&amp;gt; and 128 IDs in the form &amp;lt;code&amp;gt;SO_A####&amp;lt;/code&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Notice that there is a small but significant discrepancy in that there seems to be eleven more IDs when using xmlpipedb-match. This is troubling because of the fact that the other three methods seemed to confirm a total count of 4196. So, I used Microsoft Excel to compare the list of gene IDs from the actual .gdb file and the list I got back from xmlpipedb-match. As you can see on [[Media:Comparing gdb and xmlpipedb-match.xlsx | this document]], there are 11 IDs in the xmlpipedb-match column that are not found in the gdb column. This discrepancy was further pointed out by the use of some &amp;lt;code&amp;gt;match&amp;lt;/code&amp;gt; functions to see where an ID was missing from either list. Below are the two match functions I used in the document:&lt;br /&gt;
 =MATCH(A2, B$2:B$4208, 0)&lt;br /&gt;
 =MATCH(B2, A$2:A$4208, 0)&lt;br /&gt;
Below are the eleven IDs in question:&lt;br /&gt;
 SO_3699 NO-KD&lt;br /&gt;
 SO_1312 NO-KD&lt;br /&gt;
 SO_4269 NO-KD if they are all part of &amp;quot;Protein-protein interaction databases&amp;quot;, then you can safely leave them out&lt;br /&gt;
 SO_2875 NO-MA&lt;br /&gt;
 SO_4532 NO-MA&lt;br /&gt;
 SO_4580 NO-MA&lt;br /&gt;
 SO_2662 NO-MA&lt;br /&gt;
 SO_4423 NO-MA&lt;br /&gt;
 SO_3156 NO-MA&lt;br /&gt;
 SO_2967 NO-MA&lt;br /&gt;
 SO_2024 NO-MA&lt;br /&gt;
 //I looked these up on www.uniprot.org and all were found to be only in &amp;quot;Protein-protein interaction databases&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Look up the IDs at [http://www.uniprot.org UniProt web site] and then search for them on the UniProt record web page.  If they are part of the &amp;quot;STRING&amp;quot; protein-protein interaction database, then you can safely leave them out.  &amp;#039;&amp;#039;&amp;amp;mdash; [[User:Kdahlquist|Kdahlquist]] ([[User talk:Kdahlquist|talk]]) 15:55, 3 December 2015 (PST)&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
None of these IDs are in our MOD.&lt;br /&gt;
We searched for these IDs in the microarray statistical analysis sheet and did not find the following IDs:&lt;br /&gt;
 SO_4269, SO_2875, SO_4580&lt;br /&gt;
&lt;br /&gt;
As of 12/01/15, we are waiting on input from Professor Dahlquist to see if we will adjust our GenMAPP Builder to account for these 11 IDs.&lt;br /&gt;
* A manual inspection was done on the [[Media:SOneidensisUNIPROT.gz | &amp;#039;&amp;#039;&amp;#039;SOneidensisUNIPROT&amp;#039;&amp;#039;&amp;#039;]] XML file and it looks like these 11 IDs are contained within entries that are missing a gene tag, which explains why the other methods only picked up 4196 IDs.&lt;br /&gt;
&lt;br /&gt;
==.gdb Use in GenMAPP==&lt;br /&gt;
&lt;br /&gt;
While the above sections perform quality assurance on the exported Gene Database via verifying ID counts, the &amp;quot;proof in the pudding&amp;quot; is to actually use the Gene Database in GenMAPP.  You can follow the instructions in [http://www.openwetware.org/wiki/BIOL367/F10:GenMAPP_and_MAPPFinder_Protocols Part 2 of the &amp;#039;&amp;#039;Vibrio cholerae&amp;#039;&amp;#039; Microarray Data Analysis] to verify that the Gene Database works in GenMAPP.  In this case, the emphasis is not on the findings of the data analysis itself, but that the Gene Database functions appropriate in GenMAPP.&lt;br /&gt;
&lt;br /&gt;
For assistance with using the GenMAPP program, the GenMAPP Help is very extensive.  To access it within GenMAPP, go to the menu item Help &amp;gt; GenMAPP Help and either browse or search for your topic of interest.&lt;br /&gt;
&lt;br /&gt;
Note: &amp;#039;&amp;#039;n/a&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
===Putting a gene on the MAPP using the GeneFinder window===&lt;br /&gt;
&lt;br /&gt;
* In the main GenMAPP Drafting Board window, left-click on the icon for &amp;quot;Gene&amp;quot; in the upper left corner of the window.  Click on the Drafting Board to place the Gene on the MAPP.  Now, right-click on the gene to access the GeneFinder window.  Type or paste a gene ID into the Gene ID field.  Select the appropriate Gene ID system from the drop-down menu and click the Search button.  For example, for &amp;#039;&amp;#039;Vibrio cholerae&amp;#039;&amp;#039;, you could search for the ID &amp;quot;VC0028&amp;quot;, which is an OrderedLocusNames ID.  Once the ID has been found, click the OK button to return to the Drafting Board window.&lt;br /&gt;
** For the Final Project, you will need to try a sample ID from each of the gene ID systems, not just OrderedLocusNames. &lt;br /&gt;
* Open the Backpage by left-clicking on the gene box on the Drafting Board to see if all of the cross-referenced IDs that are supposed to be there are there.&lt;br /&gt;
&lt;br /&gt;
Note: I tried out the search for a gene ID and was able to bring up the Backpage for that ID. The cross-referenced IDs that were supposed to show up were indeed on the page.&lt;br /&gt;
&lt;br /&gt;
===Creating an Expression Dataset in the Expression Dataset Manager===&lt;br /&gt;
&lt;br /&gt;
* How many of the IDs were imported out of the total IDs in the microarray dataset? How many exceptions were there? Look in the EX.txt file and look at the error codes for the records that were not imported into the Expression Dataset.  Do these represent IDs that were present in the UniProt XML, but were somehow not imported? or were they not present in the UniProt XML?&lt;br /&gt;
&lt;br /&gt;
Note: The Expression Dataset Manager reported that there were 1441 errors during the conversion. From looking over the error codes, I found that these genes were the ones we expected to ignore, like the IDs with an added &amp;#039;F.&amp;#039;&lt;br /&gt;
&lt;br /&gt;
===Coloring a MAPP with expression data===&lt;br /&gt;
&lt;br /&gt;
Note: I was able to successfully color the MAPP by coloring the increased and decreased Log Fold Changes. &lt;br /&gt;
&lt;br /&gt;
===Running MAPPFinder===&lt;br /&gt;
&lt;br /&gt;
Note: After the results had been calculated, a Gene Ontology browser opened showing my results. All of the Gene Ontology terms that have at least 3 genes measured and a p value of less than 0.05 were highlighted yellow. A term with a p value less than 0.05 is considered a &amp;quot;significant&amp;quot; result. Browsed through the tree to see the results.&lt;br /&gt;
&lt;br /&gt;
Documents produced from this run-through can be found here: [[Media:MAPPFinder Relevant Files.zip | Gene Database Testing docs]]&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=File:MAPPFinder_Relevant_Files.zip&amp;diff=7691</id>
		<title>File:MAPPFinder Relevant Files.zip</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=File:MAPPFinder_Relevant_Files.zip&amp;diff=7691"/>
				<updated>2015-12-13T00:15:28Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: heavy metal haterZ&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;heavy metal haterZ&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Heavy_Metal_HaterZ_Files&amp;diff=7690</id>
		<title>Heavy Metal HaterZ Files</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Heavy_Metal_HaterZ_Files&amp;diff=7690"/>
				<updated>2015-12-12T23:51:32Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: /* MAPPFinder Documents */ added file&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==All Files==&lt;br /&gt;
*All files will be listed here.&lt;br /&gt;
*Appropriate way to title files: &lt;br /&gt;
**FileName_YYYYMMDD_HMH&lt;br /&gt;
&lt;br /&gt;
===Initial Flow Chart===&lt;br /&gt;
*Initial flow chart for experimental design - [[File:Experimental Design Flow Chart 20151115 HMH.pptx]]&lt;br /&gt;
&lt;br /&gt;
===Journal Club Presentation Power Points===&lt;br /&gt;
*Microarray Paper Presentation - [[File:SoMicroarrayPaperPresentation 20151117 HMH.pptx]]&lt;br /&gt;
*Genome Paper Presentation - [[File:GenomePPT_20151123_HMH.pdf]]&lt;br /&gt;
&lt;br /&gt;
===Data Processing Notes from Dr. Dahlquist===&lt;br /&gt;
*Page 1 of Notes - [[Media:DrDDataProcessNotes1 20151119 HMH.JPG]]&lt;br /&gt;
*Page 2 of Notes - [[Media:DrDDataProcessNotes2 20151119 HMH.JPG]]&lt;br /&gt;
&lt;br /&gt;
===GenMapp Builder===&lt;br /&gt;
*[[File:ShewanellaOneidensisGMBuilder_20151201_HMH.zip]]&lt;br /&gt;
&lt;br /&gt;
===Statistical Analysis Excel Sheets===&lt;br /&gt;
*Prior to Splitting:&lt;br /&gt;
*#[[File:UpdatedCompiledRawData Shewanella RARL 20151201 HMH.xlsx]]&lt;br /&gt;
*#[[File:UpdatedCompiledRawData 20151206 HMH.xlsx]]&lt;br /&gt;
* After splitting, use this one:&lt;br /&gt;
*# [[Media:UpdatedCompiledRawData_Shewanella_RARL_20151201_HMH_forsplitting.xlsx | UpdatedCompiledRawData_Shewanella_RARL_20151201_HMH_forsplitting.xlsx]]&lt;br /&gt;
*Following the splitting, averages taken and ttests done to data sets:&lt;br /&gt;
*#[[File:StatisticalAnalysis Shewanella RARL 20151207 HMH.xlsx]]&lt;br /&gt;
*#[[File:UpdatedCompiledRawData Shewanella RARL 20151201 ES HMH forsplitting.xlsx]]&lt;br /&gt;
*#* [[Media:UpdatedCompiledRawData_Shewanella_RARL_20151201_ES_HMH_forsplitting_KD.xlsx | UpdatedCompiledRawData_Shewanella_RARL_20151201_ES_HMH_forsplitting_KD.xlsx]]&lt;br /&gt;
*#* I made corrections to Emily&amp;#039;s file because there are 5408 genes, not 5408.  I think that both files have the same results not and you can move on to the next step.  &amp;#039;&amp;#039;&amp;amp;mdash; [[User:Kdahlquist|Kdahlquist]] ([[User talk:Kdahlquist|talk]]) 15:22, 9 December 2015 (PST)&amp;#039;&amp;#039;&lt;br /&gt;
*Ready for GenMAPP&lt;br /&gt;
**[[File:UpdatedCompiledRawData WithGenMAPP 20151210 ES HMH.xlsx]]&lt;br /&gt;
*.txt file for GenMAPP&lt;br /&gt;
**[[File:CompiledRawData ForGenMAPP 20151208 HMH.txt]]&lt;br /&gt;
* Ranked List from MAPPFinder: [[File:Ranked list from MAPPFinder.PNG]]&lt;br /&gt;
&lt;br /&gt;
===Sanity Check Table===&lt;br /&gt;
*[[File:Sanity Check Chart 20151212 HMH.xlsx]]&lt;br /&gt;
&lt;br /&gt;
===MAPPFinder Documents===&lt;br /&gt;
*gdb file - [[File:So-Std 20151201special.zip]]&lt;br /&gt;
*[[File:ColorSetforExpressionData F60C60 20151210 HMH.gex]]&lt;br /&gt;
*GenMAPP with all comparisons - [[File:FilesForComparison AllTrials WithGenMAPP 20151212 ES HMH.gex]]&lt;br /&gt;
*Filtered GO terms for increased - [[File:MAPPFINDER 20151212-Criterion0-GO 20151212 HMH.xlsx]]&lt;br /&gt;
*Filtered GO terms for decreased - [[File:MAPPFINDER 20151212-Criterion1-GO 20151212 HMH.xlsx]]&lt;br /&gt;
*Screenshots showing significant results - [[File:CompiledScreenShots 20151212 HMH.docx]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Heavy Metal HaterZ]]&lt;br /&gt;
[[Category:Group Projects]]&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=File:MAPPFINDER_20151212-Criterion1-GO_20151212_HMH.xlsx&amp;diff=7689</id>
		<title>File:MAPPFINDER 20151212-Criterion1-GO 20151212 HMH.xlsx</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=File:MAPPFINDER_20151212-Criterion1-GO_20151212_HMH.xlsx&amp;diff=7689"/>
				<updated>2015-12-12T23:50:52Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Heavy_Metal_HaterZ_Files&amp;diff=7684</id>
		<title>Heavy Metal HaterZ Files</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Heavy_Metal_HaterZ_Files&amp;diff=7684"/>
				<updated>2015-12-12T23:25:10Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: /* MAPPFinder Documents */ added gdb&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==All Files==&lt;br /&gt;
*All files will be listed here.&lt;br /&gt;
*Appropriate way to title files: &lt;br /&gt;
**FileName_YYYYMMDD_HMH&lt;br /&gt;
&lt;br /&gt;
===Initial Flow Chart===&lt;br /&gt;
*Initial flow chart for experimental design - [[File:Experimental Design Flow Chart 20151115 HMH.pptx]]&lt;br /&gt;
&lt;br /&gt;
===Journal Club Presentation Power Points===&lt;br /&gt;
*Microarray Paper Presentation - [[File:SoMicroarrayPaperPresentation 20151117 HMH.pptx]]&lt;br /&gt;
*Genome Paper Presentation - [[File:GenomePPT_20151123_HMH.pdf]]&lt;br /&gt;
&lt;br /&gt;
===Data Processing Notes from Dr. Dahlquist===&lt;br /&gt;
*Page 1 of Notes - [[Media:DrDDataProcessNotes1 20151119 HMH.JPG]]&lt;br /&gt;
*Page 2 of Notes - [[Media:DrDDataProcessNotes2 20151119 HMH.JPG]]&lt;br /&gt;
&lt;br /&gt;
===GenMapp Builder===&lt;br /&gt;
*[[File:ShewanellaOneidensisGMBuilder_20151201_HMH.zip]]&lt;br /&gt;
&lt;br /&gt;
===Statistical Analysis Excel Sheets===&lt;br /&gt;
*Prior to Splitting:&lt;br /&gt;
*#[[File:UpdatedCompiledRawData Shewanella RARL 20151201 HMH.xlsx]]&lt;br /&gt;
*#[[File:UpdatedCompiledRawData 20151206 HMH.xlsx]]&lt;br /&gt;
* After splitting, use this one:&lt;br /&gt;
*# [[Media:UpdatedCompiledRawData_Shewanella_RARL_20151201_HMH_forsplitting.xlsx | UpdatedCompiledRawData_Shewanella_RARL_20151201_HMH_forsplitting.xlsx]]&lt;br /&gt;
*Following the splitting, averages taken and ttests done to data sets:&lt;br /&gt;
*#[[File:StatisticalAnalysis Shewanella RARL 20151207 HMH.xlsx]]&lt;br /&gt;
*#[[File:UpdatedCompiledRawData Shewanella RARL 20151201 ES HMH forsplitting.xlsx]]&lt;br /&gt;
*#* [[Media:UpdatedCompiledRawData_Shewanella_RARL_20151201_ES_HMH_forsplitting_KD.xlsx | UpdatedCompiledRawData_Shewanella_RARL_20151201_ES_HMH_forsplitting_KD.xlsx]]&lt;br /&gt;
*#* I made corrections to Emily&amp;#039;s file because there are 5408 genes, not 5408.  I think that both files have the same results not and you can move on to the next step.  &amp;#039;&amp;#039;&amp;amp;mdash; [[User:Kdahlquist|Kdahlquist]] ([[User talk:Kdahlquist|talk]]) 15:22, 9 December 2015 (PST)&amp;#039;&amp;#039;&lt;br /&gt;
*Ready for GenMAPP&lt;br /&gt;
**[[File:UpdatedCompiledRawData WithGenMAPP 20151210 ES HMH.xlsx]]&lt;br /&gt;
*.txt file for GenMAPP&lt;br /&gt;
**[[File:CompiledRawData ForGenMAPP 20151208 HMH.txt]]&lt;br /&gt;
* Ranked List from MAPPFinder: [[File:Ranked list from MAPPFinder.PNG]]&lt;br /&gt;
&lt;br /&gt;
===Sanity Check Table===&lt;br /&gt;
*[[File:Sanity Check Chart 20151212 HMH.xlsx]]&lt;br /&gt;
&lt;br /&gt;
===MAPPFinder Documents===&lt;br /&gt;
*gdb file - [[File:So-Std 20151201special.zip]]&lt;br /&gt;
*[[File:ColorSetforExpressionData F60C60 20151210 HMH.gex]]&lt;br /&gt;
*Filtered GO terms - [[File:MAPPFINDER 20151212-Criterion0-GO 20151212 HMH.xlsx]]&lt;br /&gt;
*Screenshots showing significant results - [[File:CompiledScreenShots 20151212 HMH.docx]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Heavy Metal HaterZ]]&lt;br /&gt;
[[Category:Group Projects]]&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Heavy_Metal_HaterZ_Files&amp;diff=7683</id>
		<title>Heavy Metal HaterZ Files</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Heavy_Metal_HaterZ_Files&amp;diff=7683"/>
				<updated>2015-12-12T23:20:31Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: /* MAPPFinder Stuff */ added file&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==All Files==&lt;br /&gt;
*All files will be listed here.&lt;br /&gt;
*Appropriate way to title files: &lt;br /&gt;
**FileName_YYYYMMDD_HMH&lt;br /&gt;
&lt;br /&gt;
===Initial Flow Chart===&lt;br /&gt;
*Initial flow chart for experimental design - [[File:Experimental Design Flow Chart 20151115 HMH.pptx]]&lt;br /&gt;
&lt;br /&gt;
===Journal Club Presentation Power Points===&lt;br /&gt;
*Microarray Paper Presentation - [[File:SoMicroarrayPaperPresentation 20151117 HMH.pptx]]&lt;br /&gt;
*Genome Paper Presentation - [[File:GenomePPT_20151123_HMH.pdf]]&lt;br /&gt;
&lt;br /&gt;
===Data Processing Notes from Dr. Dahlquist===&lt;br /&gt;
*Page 1 of Notes - [[Media:DrDDataProcessNotes1 20151119 HMH.JPG]]&lt;br /&gt;
*Page 2 of Notes - [[Media:DrDDataProcessNotes2 20151119 HMH.JPG]]&lt;br /&gt;
&lt;br /&gt;
===GenMapp Builder===&lt;br /&gt;
*[[File:ShewanellaOneidensisGMBuilder_20151201_HMH.zip]]&lt;br /&gt;
&lt;br /&gt;
===Statistical Analysis Excel Sheets===&lt;br /&gt;
*Prior to Splitting:&lt;br /&gt;
*#[[File:UpdatedCompiledRawData Shewanella RARL 20151201 HMH.xlsx]]&lt;br /&gt;
*#[[File:UpdatedCompiledRawData 20151206 HMH.xlsx]]&lt;br /&gt;
* After splitting, use this one:&lt;br /&gt;
*# [[Media:UpdatedCompiledRawData_Shewanella_RARL_20151201_HMH_forsplitting.xlsx | UpdatedCompiledRawData_Shewanella_RARL_20151201_HMH_forsplitting.xlsx]]&lt;br /&gt;
*Following the splitting, averages taken and ttests done to data sets:&lt;br /&gt;
*#[[File:StatisticalAnalysis Shewanella RARL 20151207 HMH.xlsx]]&lt;br /&gt;
*#[[File:UpdatedCompiledRawData Shewanella RARL 20151201 ES HMH forsplitting.xlsx]]&lt;br /&gt;
*#* [[Media:UpdatedCompiledRawData_Shewanella_RARL_20151201_ES_HMH_forsplitting_KD.xlsx | UpdatedCompiledRawData_Shewanella_RARL_20151201_ES_HMH_forsplitting_KD.xlsx]]&lt;br /&gt;
*#* I made corrections to Emily&amp;#039;s file because there are 5408 genes, not 5408.  I think that both files have the same results not and you can move on to the next step.  &amp;#039;&amp;#039;&amp;amp;mdash; [[User:Kdahlquist|Kdahlquist]] ([[User talk:Kdahlquist|talk]]) 15:22, 9 December 2015 (PST)&amp;#039;&amp;#039;&lt;br /&gt;
*Ready for GenMAPP&lt;br /&gt;
**[[File:UpdatedCompiledRawData WithGenMAPP 20151210 ES HMH.xlsx]]&lt;br /&gt;
*.txt file for GenMAPP&lt;br /&gt;
**[[File:CompiledRawData ForGenMAPP 20151208 HMH.txt]]&lt;br /&gt;
* Ranked List from MAPPFinder: [[File:Ranked list from MAPPFinder.PNG]]&lt;br /&gt;
&lt;br /&gt;
===Sanity Check Table===&lt;br /&gt;
*[[File:Sanity Check Chart 20151212 HMH.xlsx]]&lt;br /&gt;
&lt;br /&gt;
===MAPPFinder Documents===&lt;br /&gt;
*[[File:ColorSetforExpressionData F60C60 20151210 HMH.gex]]&lt;br /&gt;
*Filtered GO terms - [[File:MAPPFINDER 20151212-Criterion0-GO 20151212 HMH.xlsx]]&lt;br /&gt;
*Screenshots showing significant results - [[File:CompiledScreenShots 20151212 HMH.docx]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Heavy Metal HaterZ]]&lt;br /&gt;
[[Category:Group Projects]]&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=File:ColorSetforExpressionData_F60C60_20151210_HMH.gex&amp;diff=7682</id>
		<title>File:ColorSetforExpressionData F60C60 20151210 HMH.gex</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=File:ColorSetforExpressionData_F60C60_20151210_HMH.gex&amp;diff=7682"/>
				<updated>2015-12-12T23:20:06Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Heavy_Metal_HaterZ_Files&amp;diff=7680</id>
		<title>Heavy Metal HaterZ Files</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Heavy_Metal_HaterZ_Files&amp;diff=7680"/>
				<updated>2015-12-12T23:04:41Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: added files&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==All Files==&lt;br /&gt;
*All files will be listed here.&lt;br /&gt;
*Appropriate way to title files: &lt;br /&gt;
**FileName_YYYYMMDD_HMH&lt;br /&gt;
&lt;br /&gt;
===Initial Flow Chart===&lt;br /&gt;
*Initial flow chart for experimental design - [[File:Experimental Design Flow Chart 20151115 HMH.pptx]]&lt;br /&gt;
&lt;br /&gt;
===Journal Club Presentation Power Points===&lt;br /&gt;
*Microarray Paper Presentation - [[File:SoMicroarrayPaperPresentation 20151117 HMH.pptx]]&lt;br /&gt;
*Genome Paper Presentation - [[File:GenomePPT_20151123_HMH.pdf]]&lt;br /&gt;
&lt;br /&gt;
===Data Processing Notes from Dr. Dahlquist===&lt;br /&gt;
*Page 1 of Notes - [[Media:DrDDataProcessNotes1 20151119 HMH.JPG]]&lt;br /&gt;
*Page 2 of Notes - [[Media:DrDDataProcessNotes2 20151119 HMH.JPG]]&lt;br /&gt;
&lt;br /&gt;
===GenMapp Builder===&lt;br /&gt;
*[[File:ShewanellaOneidensisGMBuilder_20151201_HMH.zip]]&lt;br /&gt;
&lt;br /&gt;
===Statistical Analysis Excel Sheets===&lt;br /&gt;
*Prior to Splitting:&lt;br /&gt;
*#[[File:UpdatedCompiledRawData Shewanella RARL 20151201 HMH.xlsx]]&lt;br /&gt;
*#[[File:UpdatedCompiledRawData 20151206 HMH.xlsx]]&lt;br /&gt;
* After splitting, use this one:&lt;br /&gt;
*# [[Media:UpdatedCompiledRawData_Shewanella_RARL_20151201_HMH_forsplitting.xlsx | UpdatedCompiledRawData_Shewanella_RARL_20151201_HMH_forsplitting.xlsx]]&lt;br /&gt;
*Following the splitting, averages taken and ttests done to data sets:&lt;br /&gt;
*#[[File:StatisticalAnalysis Shewanella RARL 20151207 HMH.xlsx]]&lt;br /&gt;
*#[[File:UpdatedCompiledRawData Shewanella RARL 20151201 ES HMH forsplitting.xlsx]]&lt;br /&gt;
*#* [[Media:UpdatedCompiledRawData_Shewanella_RARL_20151201_ES_HMH_forsplitting_KD.xlsx | UpdatedCompiledRawData_Shewanella_RARL_20151201_ES_HMH_forsplitting_KD.xlsx]]&lt;br /&gt;
*#* I made corrections to Emily&amp;#039;s file because there are 5408 genes, not 5408.  I think that both files have the same results not and you can move on to the next step.  &amp;#039;&amp;#039;&amp;amp;mdash; [[User:Kdahlquist|Kdahlquist]] ([[User talk:Kdahlquist|talk]]) 15:22, 9 December 2015 (PST)&amp;#039;&amp;#039;&lt;br /&gt;
*Ready for GenMAPP&lt;br /&gt;
**[[File:UpdatedCompiledRawData WithGenMAPP 20151210 ES HMH.xlsx]]&lt;br /&gt;
*.txt file for GenMAPP&lt;br /&gt;
**[[File:CompiledRawData ForGenMAPP 20151208 HMH.txt]]&lt;br /&gt;
* Ranked List from MAPPFinder: [[File:Ranked list from MAPPFinder.PNG]]&lt;br /&gt;
&lt;br /&gt;
===Sanity Check Table===&lt;br /&gt;
*[[File:Sanity Check Chart 20151212 HMH.xlsx]]&lt;br /&gt;
&lt;br /&gt;
===MAPPFinder Stuff===&lt;br /&gt;
*Filtered GO terms - [[File:MAPPFINDER 20151212-Criterion0-GO 20151212 HMH.xlsx]]&lt;br /&gt;
*Screenshots showing significant results - [[File:CompiledScreenShots 20151212 HMH.docx]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Heavy Metal HaterZ]]&lt;br /&gt;
[[Category:Group Projects]]&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=File:CompiledScreenShots_20151212_HMH.docx&amp;diff=7679</id>
		<title>File:CompiledScreenShots 20151212 HMH.docx</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=File:CompiledScreenShots_20151212_HMH.docx&amp;diff=7679"/>
				<updated>2015-12-12T23:04:19Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=File:MAPPFINDER_20151212-Criterion0-GO_20151212_HMH.xlsx&amp;diff=7675</id>
		<title>File:MAPPFINDER 20151212-Criterion0-GO 20151212 HMH.xlsx</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=File:MAPPFINDER_20151212-Criterion0-GO_20151212_HMH.xlsx&amp;diff=7675"/>
				<updated>2015-12-12T23:00:23Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Heavy_Metal_HaterZ_Files&amp;diff=7670</id>
		<title>Heavy Metal HaterZ Files</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Heavy_Metal_HaterZ_Files&amp;diff=7670"/>
				<updated>2015-12-12T22:29:36Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: ranked list upload image&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==All Files==&lt;br /&gt;
*All files will be listed here.&lt;br /&gt;
*Appropriate way to title files: &lt;br /&gt;
**FileName_YYYYMMDD_HMH&lt;br /&gt;
&lt;br /&gt;
===Initial Flow Chart===&lt;br /&gt;
*Initial flow chart for experimental design - [[File:Experimental Design Flow Chart 20151115 HMH.pptx]]&lt;br /&gt;
&lt;br /&gt;
===Journal Club Presentation Power Points===&lt;br /&gt;
*Microarray Paper Presentation - [[File:SoMicroarrayPaperPresentation 20151117 HMH.pptx]]&lt;br /&gt;
*Genome Paper Presentation - [[File:GenomePPT_20151123_HMH.pdf]]&lt;br /&gt;
&lt;br /&gt;
===Data Processing Notes from Dr. Dahlquist===&lt;br /&gt;
*Page 1 of Notes - [[Media:DrDDataProcessNotes1 20151119 HMH.JPG]]&lt;br /&gt;
*Page 2 of Notes - [[Media:DrDDataProcessNotes2 20151119 HMH.JPG]]&lt;br /&gt;
&lt;br /&gt;
===GenMapp Builder===&lt;br /&gt;
*[[File:ShewanellaOneidensisGMBuilder_20151201_HMH.zip]]&lt;br /&gt;
&lt;br /&gt;
===Statistical Analysis Excel Sheets===&lt;br /&gt;
*Prior to Splitting:&lt;br /&gt;
*#[[File:UpdatedCompiledRawData Shewanella RARL 20151201 HMH.xlsx]]&lt;br /&gt;
*#[[File:UpdatedCompiledRawData 20151206 HMH.xlsx]]&lt;br /&gt;
* After splitting, use this one:&lt;br /&gt;
*# [[Media:UpdatedCompiledRawData_Shewanella_RARL_20151201_HMH_forsplitting.xlsx | UpdatedCompiledRawData_Shewanella_RARL_20151201_HMH_forsplitting.xlsx]]&lt;br /&gt;
*Following the splitting, averages taken and ttests done to data sets:&lt;br /&gt;
*#[[File:StatisticalAnalysis Shewanella RARL 20151207 HMH.xlsx]]&lt;br /&gt;
*#[[File:UpdatedCompiledRawData Shewanella RARL 20151201 ES HMH forsplitting.xlsx]]&lt;br /&gt;
*#* [[Media:UpdatedCompiledRawData_Shewanella_RARL_20151201_ES_HMH_forsplitting_KD.xlsx | UpdatedCompiledRawData_Shewanella_RARL_20151201_ES_HMH_forsplitting_KD.xlsx]]&lt;br /&gt;
*#* I made corrections to Emily&amp;#039;s file because there are 5408 genes, not 5408.  I think that both files have the same results not and you can move on to the next step.  &amp;#039;&amp;#039;&amp;amp;mdash; [[User:Kdahlquist|Kdahlquist]] ([[User talk:Kdahlquist|talk]]) 15:22, 9 December 2015 (PST)&amp;#039;&amp;#039;&lt;br /&gt;
*Ready for GenMAPP&lt;br /&gt;
**[[File:UpdatedCompiledRawData WithGenMAPP 20151210 ES HMH.xlsx]]&lt;br /&gt;
*.txt file for GenMAPP&lt;br /&gt;
**[[File:CompiledRawData ForGenMAPP 20151208 HMH.txt]]&lt;br /&gt;
* Ranked List from MAPPFinder: [[File:Ranked list from MAPPFinder.PNG]]&lt;br /&gt;
&lt;br /&gt;
===Sanity Check Table===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Heavy Metal HaterZ]]&lt;br /&gt;
[[Category:Group Projects]]&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=File:Ranked_list_from_MAPPFinder.PNG&amp;diff=7668</id>
		<title>File:Ranked list from MAPPFinder.PNG</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=File:Ranked_list_from_MAPPFinder.PNG&amp;diff=7668"/>
				<updated>2015-12-12T22:28:32Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: HEAVY METAL HATERZ&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;HEAVY METAL HATERZ&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Gene_Database_Testing_Report_-_Heavy_Metal_HaterZ&amp;diff=7665</id>
		<title>Gene Database Testing Report - Heavy Metal HaterZ</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Gene_Database_Testing_Report_-_Heavy_Metal_HaterZ&amp;diff=7665"/>
				<updated>2015-12-12T22:18:42Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: /* Creating an Expression Dataset in the Expression Dataset Manager */ expression dataset&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Heavy Metal HaterZ}}&lt;br /&gt;
==Export Information==&lt;br /&gt;
&lt;br /&gt;
Version of GenMAPP Builder: &amp;#039;&amp;#039;&amp;#039;3 build 5&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Computer on which export was run: &amp;#039;&amp;#039;&amp;#039;HP Compaq 8300 Elite SFF FC&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Postgres Database name: &amp;#039;&amp;#039;&amp;#039;S. Oneidensis&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
UniProt XML filename: [[Media:SOneidensisUNIPROT.gz | &amp;#039;&amp;#039;&amp;#039;SOneidensisUNIPROT&amp;#039;&amp;#039;&amp;#039;]]&lt;br /&gt;
* UniProt XML version: &amp;#039;&amp;#039;&amp;#039;UniProt release 2015_10 - October 14, 2015&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* [http://www.uniprot.org/uniprot/?query=taxonomy:211586 UniProt XML download link]&lt;br /&gt;
* Time taken to import: &amp;#039;&amp;#039;&amp;#039;3.18 minutes&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** Note: &amp;#039;&amp;#039;n/a&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
GO OBO-XML filename: [[Media:Go daily-termdb.obo-xml.gz | &amp;#039;&amp;#039;&amp;#039;go daily-termdb.obo-xml&amp;#039;&amp;#039;&amp;#039;]]&lt;br /&gt;
* GO OBO-XML version (The version information can be found in the file properties after the file downloaded from the [http://beta.geneontology.org/page/download-ontology GO Download page] has been unzipped): &lt;br /&gt;
* [http://geneontology.org/page/download-ontology#Legacy_Downloads GO OBO-XML download link]&lt;br /&gt;
* Time taken to import: &amp;#039;&amp;#039;&amp;#039;7.16 minutes&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Time taken to process: &amp;#039;&amp;#039;&amp;#039;4.27 minutes&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** Note: &amp;#039;&amp;#039;n/a&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
GOA filename: [[Media:ShewanellaOneidensisGOA.zip | &amp;#039;&amp;#039;&amp;#039;ShewanellaOneidensisGOA&amp;#039;&amp;#039;&amp;#039;]]&lt;br /&gt;
* GOA version (News on [http://www.ebi.ac.uk/GOA/ this page] records past releases; current information can be found in the Last modified field on the [ftp://ftp.ebi.ac.uk/pub/databases/GO/goa/proteomes/ FTP site]): &amp;#039;&amp;#039;&amp;#039;October 14, 2015 - GOA Proteome Sets 124&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* [ftp://ftp.ebi.ac.uk/pub/databases/GO/goa/proteomes/106.S_oneidensis.goa GOA download link]&lt;br /&gt;
* Time taken to import: &amp;#039;&amp;#039;&amp;#039;0.05 minutes&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** Note: &amp;#039;&amp;#039;n/a&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Name of .gdb file: [[Media:So-Std 20151119HMH.zip | &amp;#039;&amp;#039;&amp;#039;So-Std 20151119HMH.gdb&amp;#039;&amp;#039;&amp;#039;]]&lt;br /&gt;
* Time taken to export: &amp;#039;&amp;#039;&amp;#039;1 hour and 18 minutes&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** Start time: &amp;#039;&amp;#039;&amp;#039;3:48pm&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** End time: &amp;#039;&amp;#039;&amp;#039;5:06pm&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** Note: &amp;#039;&amp;#039;n/a&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
==TallyEngine==&lt;br /&gt;
&lt;br /&gt;
* Run the TallyEngine in GenMAPP Builder and record the number of records for UniProt and GO in the XML data and in the Postgres databases.&lt;br /&gt;
** Choose the menu item Tallies &amp;gt; Run XML and Database Tallies for UniProt and GO...&lt;br /&gt;
** Take a screenshot of the results.  Upload the image to the wiki and display it on this page.&lt;br /&gt;
** &amp;#039;&amp;#039;&amp;#039;4196&amp;#039;&amp;#039;&amp;#039; IDs&lt;br /&gt;
** For more information, [[How_Do_I_Count_Thee%3F_Let_Me_Count_The_Ways | see this page.]]&lt;br /&gt;
&lt;br /&gt;
[[Image:TallyEngineSOneidensis.PNG | center | 540px]]&lt;br /&gt;
&lt;br /&gt;
== Using XMLPipeDB match to Validate the XML Results from the TallyEngine==&lt;br /&gt;
&lt;br /&gt;
[[How_Do_I_Count_Thee%3F_Let_Me_Count_The_Ways | Follow the instructions found on this page to run XMLPipeDB match.]]&lt;br /&gt;
&lt;br /&gt;
Are your results the same as you got for the TallyEngine?  Why or why not?&lt;br /&gt;
* Initially, we got &amp;#039;&amp;#039;&amp;#039;4196&amp;#039;&amp;#039;&amp;#039; IDs for both XML and Postgres DB from TallyEngine but got &amp;#039;&amp;#039;&amp;#039;4079&amp;#039;&amp;#039;&amp;#039; IDs by using XMLPipeDB match. This result was from using the following command:&lt;br /&gt;
 java -jar xmlpipedb-match-1.1.1.jar &amp;quot;SO_[0-9][0-9][0-9][0-9]&amp;quot; &amp;lt; SOneidensisUNIPROT&lt;br /&gt;
&lt;br /&gt;
* After checking the .gdb file and looking through the Gene IDs, I found that some IDs were in the form &amp;quot;SO_A####&amp;quot; so I ran a new command accounting for this:&lt;br /&gt;
 java -jar xmlpipedb-match-1.1.1.jar &amp;quot;SO_A?[0-9][0-9][0-9][0-9]&amp;quot; &amp;lt; SOneidensisUNIPROT&lt;br /&gt;
* This gave a total number of &amp;#039;&amp;#039;&amp;#039;4207&amp;#039;&amp;#039;&amp;#039; IDs.&lt;br /&gt;
&lt;br /&gt;
== Using SQL Queries to Validate the PostgreSQL Database Results from the TallyEngine==&lt;br /&gt;
&lt;br /&gt;
For more information, [[How_Do_I_Count_Thee%3F_Let_Me_Count_The_Ways | see this page.]]&lt;br /&gt;
&lt;br /&gt;
You can also look for counts at the SQL level, using some variation of a &amp;#039;&amp;#039;select count(*)&amp;#039;&amp;#039; query.  This requires some knowledge of which table received what data.  Here&amp;amp;rsquo;s an initial tip: the &amp;#039;&amp;#039;gene/name&amp;#039;&amp;#039; tags in the XML file land in the &amp;#039;&amp;#039;genenametype&amp;#039;&amp;#039; table.  A query on this table counting values from this table that were marked as &amp;#039;&amp;#039;ordered locus&amp;#039;&amp;#039; in the XML file matching the pattern &amp;#039;&amp;#039;SO_[0-9][0-9][0-9][0-9]&amp;#039;&amp;#039; would look like this:&lt;br /&gt;
&lt;br /&gt;
 select count(*) from genenametype where type = &amp;#039;ordered locus&amp;#039; and value ~ &amp;#039;SO_[0-9][0-9][0-9][0-9]&amp;#039;;&lt;br /&gt;
* However, once I found that some IDs were in the form &amp;quot;SO_A####&amp;quot; I tweaked the pattern to account for those IDs:&lt;br /&gt;
 select count(*) from genenametype where type = &amp;#039;ordered locus&amp;#039; and value ~ &amp;#039;SO_A?[0-9][0-9][0-9][0-9]&amp;#039;;&lt;br /&gt;
&lt;br /&gt;
In &amp;#039;&amp;#039;pgAdmin III&amp;#039;&amp;#039;, you can issue these queries by clicking on the pencil/SQL icon in the toolbar, typing the query into the &amp;#039;&amp;#039;SQL Editor&amp;#039;&amp;#039; tab, then clicking on the green triangular &amp;#039;&amp;#039;Play&amp;#039;&amp;#039; button to run.&lt;br /&gt;
&lt;br /&gt;
Are your results the same as reported by the TallyEngine?  Why or why not?&lt;br /&gt;
* Initially, we got a count of &amp;#039;&amp;#039;&amp;#039;4068&amp;#039;&amp;#039;&amp;#039; IDs using SQL, which differed from the &amp;#039;&amp;#039;&amp;#039;4196&amp;#039;&amp;#039;&amp;#039; IDs from TallyEngine.&lt;br /&gt;
* After tweaking the pattern to account for IDs with that extra &amp;#039;&amp;#039;A&amp;#039;&amp;#039;, we got a grand total of &amp;#039;&amp;#039;&amp;#039;4196&amp;#039;&amp;#039;&amp;#039; IDs, which matches with what TallyEngine gave us.&lt;br /&gt;
&lt;br /&gt;
==OriginalRowCounts Comparison==&lt;br /&gt;
&lt;br /&gt;
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.&lt;br /&gt;
&lt;br /&gt;
Benchmark .gdb file: [http://sourceforge.net/projects/xmlpipedb/files/V.%20cholerae%20Gene%20Database/V.%20cholerae%2020101022/Vc-Std_External_20101022.zip/download 2010 benchmark file]&lt;br /&gt;
&lt;br /&gt;
Copy the OriginalRowCounts table from the benchmark and new gdb and paste them here:&lt;br /&gt;
&lt;br /&gt;
[[Media:OriginalRowCounts.pdf | Original Row Counts Table]]&lt;br /&gt;
&lt;br /&gt;
[[Media:OriginalRowCounts2010.pdf | 2010 Benchmark Original Row Counts Table]]&lt;br /&gt;
&lt;br /&gt;
See Analysis section for more on the comparison and the discrepancy found because of this comparison.&lt;br /&gt;
&lt;br /&gt;
Note: Using Microsoft Access, we found &amp;#039;&amp;#039;7664&amp;#039;&amp;#039; IDs, which was actually double the number of IDs present because of duplicated IDs that did not have an underscore.&lt;br /&gt;
&lt;br /&gt;
==Visual Inspection==&lt;br /&gt;
&lt;br /&gt;
Perform visual inspection of individual tables to see if there are any problems.&lt;br /&gt;
&lt;br /&gt;
* Look at the Systems table. Is there a date in the Date field for all gene ID systems present in the database?&lt;br /&gt;
** No. For the current version, a good number of gene ID systems in the database do not have a value for the date field. Some systems that lack a date include: GenBank, UniGene, WormBase, and EcoGene.&lt;br /&gt;
* Open the UniProt, RefSeq, and OrderedLocusNames tables. Scroll down through the table. Do all of the IDs look like they take the correct form for that type of ID?&lt;br /&gt;
** For the UniProt table, the IDs start with either &amp;#039;&amp;#039;Q8&amp;#039;&amp;#039; or &amp;#039;&amp;#039;K4&amp;#039;&amp;#039; and have some string of four letters/numbers trailing that. For the RefSeq tables, the IDs have forms that start with either &amp;#039;&amp;#039;NP_&amp;#039;&amp;#039; or &amp;#039;&amp;#039;WP_&amp;#039;&amp;#039;, with the &amp;#039;&amp;#039;WP_&amp;#039;&amp;#039; forms having 9 numbers afterwards and the &amp;#039;&amp;#039;NP_&amp;#039;&amp;#039; forms having 6 numbers afterwards. For the OrderedLocusNames table, the IDs either start with &amp;lt;code&amp;gt;SO_&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;SO_A&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Note: &amp;#039;&amp;#039;n/a&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
==Analysis==&lt;br /&gt;
&lt;br /&gt;
Consolidating the counts of gene IDs from the various methods, I got:&lt;br /&gt;
&lt;br /&gt;
* 4196 IDs from Tally Engine&lt;br /&gt;
* &amp;#039;&amp;#039;4207&amp;#039;&amp;#039; IDs from xmlpipedb-match&lt;br /&gt;
 java -jar xmlpipedb-match-1.1.1.jar &amp;quot;SO_A?[0-9][0-9][0-9][0-9]&amp;quot; &amp;lt; SOneidensisUNIPROT&lt;br /&gt;
* 4196 IDs from PostgreSQL&lt;br /&gt;
 select count(*) from genenametype where type = &amp;#039;ordered locus&amp;#039; and value ~ &amp;#039;SO_A?[0-9][0-9][0-9][0-9]&amp;#039;;&lt;br /&gt;
* 4196 IDs from Microsoft Access (Noted that there were 4068 IDs in the form &amp;lt;code&amp;gt;SO_####&amp;lt;/code&amp;gt; and 128 IDs in the form &amp;lt;code&amp;gt;SO_A####&amp;lt;/code&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Notice that there is a small but significant discrepancy in that there seems to be eleven more IDs when using xmlpipedb-match. This is troubling because of the fact that the other three methods seemed to confirm a total count of 4196. So, I used Microsoft Excel to compare the list of gene IDs from the actual .gdb file and the list I got back from xmlpipedb-match. As you can see on [[Media:Comparing gdb and xmlpipedb-match.xlsx | this document]], there are 11 IDs in the xmlpipedb-match column that are not found in the gdb column. This discrepancy was further pointed out by the use of some &amp;lt;code&amp;gt;match&amp;lt;/code&amp;gt; functions to see where an ID was missing from either list. Below are the two match functions I used in the document:&lt;br /&gt;
 =MATCH(A2, B$2:B$4208, 0)&lt;br /&gt;
 =MATCH(B2, A$2:A$4208, 0)&lt;br /&gt;
Below are the eleven IDs in question:&lt;br /&gt;
 SO_3699 NO-KD&lt;br /&gt;
 SO_1312 NO-KD&lt;br /&gt;
 SO_4269 NO-KD if they are all part of &amp;quot;Protein-protein interaction databases&amp;quot;, then you can safely leave them out&lt;br /&gt;
 SO_2875 NO-MA&lt;br /&gt;
 SO_4532 NO-MA&lt;br /&gt;
 SO_4580 NO-MA&lt;br /&gt;
 SO_2662 NO-MA&lt;br /&gt;
 SO_4423 NO-MA&lt;br /&gt;
 SO_3156 NO-MA&lt;br /&gt;
 SO_2967 NO-MA&lt;br /&gt;
 SO_2024 NO-MA&lt;br /&gt;
 //I looked these up on www.uniprot.org and all were found to be only in &amp;quot;Protein-protein interaction databases&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Look up the IDs at [http://www.uniprot.org UniProt web site] and then search for them on the UniProt record web page.  If they are part of the &amp;quot;STRING&amp;quot; protein-protein interaction database, then you can safely leave them out.  &amp;#039;&amp;#039;&amp;amp;mdash; [[User:Kdahlquist|Kdahlquist]] ([[User talk:Kdahlquist|talk]]) 15:55, 3 December 2015 (PST)&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
None of these IDs are in our MOD.&lt;br /&gt;
We searched for these IDs in the microarray statistical analysis sheet and did not find the following IDs:&lt;br /&gt;
 SO_4269, SO_2875, SO_4580&lt;br /&gt;
&lt;br /&gt;
As of 12/01/15, we are waiting on input from Professor Dahlquist to see if we will adjust our GenMAPP Builder to account for these 11 IDs.&lt;br /&gt;
* A manual inspection was done on the [[Media:SOneidensisUNIPROT.gz | &amp;#039;&amp;#039;&amp;#039;SOneidensisUNIPROT&amp;#039;&amp;#039;&amp;#039;]] XML file and it looks like these 11 IDs are contained within entries that are missing a gene tag, which explains why the other methods only picked up 4196 IDs.&lt;br /&gt;
&lt;br /&gt;
==.gdb Use in GenMAPP==&lt;br /&gt;
&lt;br /&gt;
While the above sections perform quality assurance on the exported Gene Database via verifying ID counts, the &amp;quot;proof in the pudding&amp;quot; is to actually use the Gene Database in GenMAPP.  You can follow the instructions in [http://www.openwetware.org/wiki/BIOL367/F10:GenMAPP_and_MAPPFinder_Protocols Part 2 of the &amp;#039;&amp;#039;Vibrio cholerae&amp;#039;&amp;#039; Microarray Data Analysis] to verify that the Gene Database works in GenMAPP.  In this case, the emphasis is not on the findings of the data analysis itself, but that the Gene Database functions appropriate in GenMAPP.&lt;br /&gt;
&lt;br /&gt;
For assistance with using the GenMAPP program, the GenMAPP Help is very extensive.  To access it within GenMAPP, go to the menu item Help &amp;gt; GenMAPP Help and either browse or search for your topic of interest.&lt;br /&gt;
&lt;br /&gt;
Note: &amp;#039;&amp;#039;n/a&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
===Putting a gene on the MAPP using the GeneFinder window===&lt;br /&gt;
&lt;br /&gt;
* In the main GenMAPP Drafting Board window, left-click on the icon for &amp;quot;Gene&amp;quot; in the upper left corner of the window.  Click on the Drafting Board to place the Gene on the MAPP.  Now, right-click on the gene to access the GeneFinder window.  Type or paste a gene ID into the Gene ID field.  Select the appropriate Gene ID system from the drop-down menu and click the Search button.  For example, for &amp;#039;&amp;#039;Vibrio cholerae&amp;#039;&amp;#039;, you could search for the ID &amp;quot;VC0028&amp;quot;, which is an OrderedLocusNames ID.  Once the ID has been found, click the OK button to return to the Drafting Board window.&lt;br /&gt;
** For the Final Project, you will need to try a sample ID from each of the gene ID systems, not just OrderedLocusNames. &lt;br /&gt;
* Open the Backpage by left-clicking on the gene box on the Drafting Board to see if all of the cross-referenced IDs that are supposed to be there are there.&lt;br /&gt;
&lt;br /&gt;
Note: I tried out the search for a gene ID and was able to bring up the Backpage for that ID. The cross-referenced IDs that were supposed to show up were indeed on the page.&lt;br /&gt;
&lt;br /&gt;
===Creating an Expression Dataset in the Expression Dataset Manager===&lt;br /&gt;
&lt;br /&gt;
* How many of the IDs were imported out of the total IDs in the microarray dataset? How many exceptions were there? Look in the EX.txt file and look at the error codes for the records that were not imported into the Expression Dataset.  Do these represent IDs that were present in the UniProt XML, but were somehow not imported? or were they not present in the UniProt XML?&lt;br /&gt;
&lt;br /&gt;
Note: The Expression Dataset Manager reported that there were 1441 errors during the conversion. From looking over the error codes, I found that these genes were the ones we expected to ignore, like the IDs with an added &amp;#039;F.&amp;#039;&lt;br /&gt;
&lt;br /&gt;
===Coloring a MAPP with expression data===&lt;br /&gt;
&lt;br /&gt;
Note: I was able to successfully color the MAPP by coloring the increased and decreased Log Fold Changes. &lt;br /&gt;
&lt;br /&gt;
===Running MAPPFinder===&lt;br /&gt;
&lt;br /&gt;
Note: After the results had been calculated, a Gene Ontology browser opened showing my results. All of the Gene Ontology terms that have at least 3 genes measured and a p value of less than 0.05 were highlighted yellow. A term with a p value less than 0.05 is considered a &amp;quot;significant&amp;quot; result. Browsed through the tree to see the results.&lt;br /&gt;
&lt;br /&gt;
Documents produced from this run-through can be found here: [[Media:Week 9 genMAPP and MAPPFinder.zip | week 9 docs]]&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Jkuroda_Week_15&amp;diff=7663</id>
		<title>Jkuroda Week 15</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Jkuroda_Week_15&amp;diff=7663"/>
				<updated>2015-12-12T22:13:53Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: 12/10/2015&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Log==&lt;br /&gt;
* Ran some incomplete statistical analysis data from the GenMAPP users through creating a new expression dataset and generated an exception file which found some issues with our database.&lt;br /&gt;
* The first time we ran it, there were exceptions for every single gene, because we did not compensate for the underscore in the ID. After inserting the underscore after the &amp;#039;SO&amp;#039;, we were able to find the actual errors.&lt;br /&gt;
* First of all, there are 5408 genes listed in their data, compared to the 4196 genes we have in our database. &lt;br /&gt;
* There are 760 gene IDs that are in the form SO_####F, which are genes that don&amp;#039;t exist in our database.&lt;br /&gt;
* There are 681 gene IDs that are in a &amp;#039;normal&amp;#039; form (either SO_#### or SO_A####) but do not exist in our database.&lt;br /&gt;
* For some of the gene IDs that have &amp;#039;F&amp;#039;s, there are multiple genes of the same ID.&lt;br /&gt;
* We attempted to do a batch search on Uniprot of all 1441 missing IDs, and got zero results for them in their database. Furthermore, we did a spot check by searching every 100 IDs or so in the Uniprot KB and found that none of the IDs we searched exist.&lt;br /&gt;
* We also searched for the &amp;#039;F&amp;#039; IDs in our MOD and none of them exist in that either.&lt;br /&gt;
* After this analysis, we have come to the conclusion that these 1441 IDs can be safely ignored, since they do not exist in Uniprot. We will simply need to modify our code to account for the absence of an underscore, much like we did with Vibrio Cholerae.&lt;br /&gt;
* In class on 12/10/15, we worked on figuring out the corrections for our GenMAPP code and made a new dataset using the finished data from the GenMAPP users.&lt;br /&gt;
* Then we ran GenMAPP Finder and ran into an issue because we were using the wrong column.&lt;br /&gt;
* Our group met up on 12/12/15 and continued working.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Individual Assessment &amp;amp; Reflection==&lt;br /&gt;
=== Statement of Work ===&lt;br /&gt;
&lt;br /&gt;
* Describe exactly what you did on the project.&lt;br /&gt;
* Provide references or links to artifacts of your work, such as:&lt;br /&gt;
** Wiki pages&lt;br /&gt;
** Other files or documents&lt;br /&gt;
** Code or scripts&lt;br /&gt;
&lt;br /&gt;
=== Assessment of Project ===&lt;br /&gt;
&lt;br /&gt;
* Give an objective assessment of the success of your project workflow and teamwork.  &lt;br /&gt;
* What worked and what didn&amp;#039;t work?  &lt;br /&gt;
* What would you do differently if you could do it all over again?&lt;br /&gt;
* Evaluate the Gene Database Project and Group Report in the following areas:&lt;br /&gt;
*# Content: What is the quality of the work? &lt;br /&gt;
*# Organization: Comment on the organization of the project and of your group&amp;#039;s wiki pages.&lt;br /&gt;
*# Completeness:  Did your team achieve all of the project objectives?  Why or why not?&lt;br /&gt;
&lt;br /&gt;
=== Reflection on the Process ===&lt;br /&gt;
&lt;br /&gt;
* What did you learn?&lt;br /&gt;
** With your head (biological or computer science principles)&lt;br /&gt;
** With your heart (personal qualities and teamwork qualities that make things work or not work)?&lt;br /&gt;
** With your hands (technical skills)?&lt;br /&gt;
* What lesson will you take away from this project that you will still use a year from now?&lt;br /&gt;
&lt;br /&gt;
{{Template:Journal Template}}&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Jkuroda_Week_15&amp;diff=7533</id>
		<title>Jkuroda Week 15</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Jkuroda_Week_15&amp;diff=7533"/>
				<updated>2015-12-08T23:59:46Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: /* Log */ log from class 12/08/15&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Log==&lt;br /&gt;
* Ran some incomplete statistical analysis data from the GenMAPP users through creating a new expression dataset and generated an exception file which found some issues with our database.&lt;br /&gt;
* The first time we ran it, there were exceptions for every single gene, because we did not compensate for the underscore in the ID. After inserting the underscore after the &amp;#039;SO&amp;#039;, we were able to find the actual errors.&lt;br /&gt;
* First of all, there are 5408 genes listed in their data, compared to the 4196 genes we have in our database. &lt;br /&gt;
* There are 760 gene IDs that are in the form SO_####F, which are genes that don&amp;#039;t exist in our database.&lt;br /&gt;
* There are 681 gene IDs that are in a &amp;#039;normal&amp;#039; form (either SO_#### or SO_A####) but do not exist in our database.&lt;br /&gt;
* For some of the gene IDs that have &amp;#039;F&amp;#039;s, there are multiple genes of the same ID.&lt;br /&gt;
* We attempted to do a batch search on Uniprot of all 1441 missing IDs, and got zero results for them in their database. Furthermore, we did a spot check by searching every 100 IDs or so in the Uniprot KB and found that none of the IDs we searched exist.&lt;br /&gt;
* We also searched for the &amp;#039;F&amp;#039; IDs in our MOD and none of them exist in that either.&lt;br /&gt;
* After this analysis, we have come to the conclusion that these 1441 IDs can be safely ignored, since they do not exist in Uniprot. We will simply need to modify our code to account for the absence of an underscore, much like we did with Vibrio Cholerae.&lt;br /&gt;
&lt;br /&gt;
==Individual Assessment &amp;amp; Reflection==&lt;br /&gt;
=== Statement of Work ===&lt;br /&gt;
&lt;br /&gt;
* Describe exactly what you did on the project.&lt;br /&gt;
* Provide references or links to artifacts of your work, such as:&lt;br /&gt;
** Wiki pages&lt;br /&gt;
** Other files or documents&lt;br /&gt;
** Code or scripts&lt;br /&gt;
&lt;br /&gt;
=== Assessment of Project ===&lt;br /&gt;
&lt;br /&gt;
* Give an objective assessment of the success of your project workflow and teamwork.  &lt;br /&gt;
* What worked and what didn&amp;#039;t work?  &lt;br /&gt;
* What would you do differently if you could do it all over again?&lt;br /&gt;
* Evaluate the Gene Database Project and Group Report in the following areas:&lt;br /&gt;
*# Content: What is the quality of the work? &lt;br /&gt;
*# Organization: Comment on the organization of the project and of your group&amp;#039;s wiki pages.&lt;br /&gt;
*# Completeness:  Did your team achieve all of the project objectives?  Why or why not?&lt;br /&gt;
&lt;br /&gt;
=== Reflection on the Process ===&lt;br /&gt;
&lt;br /&gt;
* What did you learn?&lt;br /&gt;
** With your head (biological or computer science principles)&lt;br /&gt;
** With your heart (personal qualities and teamwork qualities that make things work or not work)?&lt;br /&gt;
** With your hands (technical skills)?&lt;br /&gt;
* What lesson will you take away from this project that you will still use a year from now?&lt;br /&gt;
&lt;br /&gt;
{{Template:Journal Template}}&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Jkuroda_Week_15&amp;diff=7512</id>
		<title>Jkuroda Week 15</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Jkuroda_Week_15&amp;diff=7512"/>
				<updated>2015-12-08T22:40:43Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: log&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Log==&lt;br /&gt;
==Individual Assessment &amp;amp; Reflection==&lt;br /&gt;
=== Statement of Work ===&lt;br /&gt;
&lt;br /&gt;
* Describe exactly what you did on the project.&lt;br /&gt;
* Provide references or links to artifacts of your work, such as:&lt;br /&gt;
** Wiki pages&lt;br /&gt;
** Other files or documents&lt;br /&gt;
** Code or scripts&lt;br /&gt;
&lt;br /&gt;
=== Assessment of Project ===&lt;br /&gt;
&lt;br /&gt;
* Give an objective assessment of the success of your project workflow and teamwork.  &lt;br /&gt;
* What worked and what didn&amp;#039;t work?  &lt;br /&gt;
* What would you do differently if you could do it all over again?&lt;br /&gt;
* Evaluate the Gene Database Project and Group Report in the following areas:&lt;br /&gt;
*# Content: What is the quality of the work? &lt;br /&gt;
*# Organization: Comment on the organization of the project and of your group&amp;#039;s wiki pages.&lt;br /&gt;
*# Completeness:  Did your team achieve all of the project objectives?  Why or why not?&lt;br /&gt;
&lt;br /&gt;
=== Reflection on the Process ===&lt;br /&gt;
&lt;br /&gt;
* What did you learn?&lt;br /&gt;
** With your head (biological or computer science principles)&lt;br /&gt;
** With your heart (personal qualities and teamwork qualities that make things work or not work)?&lt;br /&gt;
** With your hands (technical skills)?&lt;br /&gt;
* What lesson will you take away from this project that you will still use a year from now?&lt;br /&gt;
&lt;br /&gt;
{{Template:Journal Template}}&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Template:Heavy_Metal_HaterZ&amp;diff=7188</id>
		<title>Template:Heavy Metal HaterZ</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Template:Heavy_Metal_HaterZ&amp;diff=7188"/>
				<updated>2015-12-03T23:46:24Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: /* Shewanella oneidensis */ GDTR&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:HeavyMetal.jpg | 200px | right]]&lt;br /&gt;
==&amp;#039;&amp;#039;Shewanella oneidensis&amp;#039;&amp;#039;==&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;[[Gene Database Testing Report - Heavy Metal HaterZ]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
==Group Members==&lt;br /&gt;
*Coder:[[User:Malverso | Mary Alverson]]&lt;br /&gt;
*GenMAPP User &amp;amp; Project Manager:[[User:Rlegaspi | Ron Legaspi]]&lt;br /&gt;
*Quality Assurance:[[User:Jkuroda | Josh Kuroda]]&lt;br /&gt;
*GenMAPP User:[[User:Emilysimso | Emily Simso]]&lt;br /&gt;
==Important Links==&lt;br /&gt;
====[[Heavy Metal HaterZ Files | Our Files]]====&lt;br /&gt;
====[[Heavy Metal HaterZ Deliverables | Our Deliverables]]====&lt;br /&gt;
{{Gene_Database_Project_Links}}&lt;br /&gt;
{{HMH Individual Journal Entries}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Group Projects]]&lt;br /&gt;
[[Category:Heavy Metal HaterZ]]&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Heavy_Metal_HaterZ&amp;diff=7178</id>
		<title>Heavy Metal HaterZ</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Heavy_Metal_HaterZ&amp;diff=7178"/>
				<updated>2015-12-03T23:39:34Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: /* Week 14 Assignment */ josh2&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Heavy Metal HaterZ}}&lt;br /&gt;
==Week 14 Assignment==&lt;br /&gt;
===Goals===&lt;br /&gt;
*Coder/QA&lt;br /&gt;
**Analyze the initial exports and make any necessary changes to the custom species profile to capture all of the IDs for your species&lt;br /&gt;
*GenMAPP Users&lt;br /&gt;
**Finish statistical analysis of compiled microarray data&lt;br /&gt;
**Prepare file for GenMAPP&lt;br /&gt;
===Status Report===&lt;br /&gt;
*Mary-&lt;br /&gt;
* Josh- Completed the export using the customized GenMAPP Builder from Mary. Checked the .gdb file and everything checked out. Used GenMAPP to see if the gene ID links worked and they did. Made more progress on the Gene Database Testing Report.&lt;br /&gt;
&lt;br /&gt;
====Reflections====&lt;br /&gt;
#What worked?&lt;br /&gt;
#What didn&amp;#039;t work?&lt;br /&gt;
#What will I do next to fix what didn&amp;#039;t work?&lt;br /&gt;
&lt;br /&gt;
==== Josh&amp;#039;s Reflection ====&lt;br /&gt;
&lt;br /&gt;
# What worked?&lt;br /&gt;
#* Our customized export seemed to work, since we got the 4196 count for Ordered Locus Names for which we were looking.&lt;br /&gt;
# What didn&amp;#039;t work?&lt;br /&gt;
#* The 11 IDs we found that did not have gene tags in the XML file are a small issue for us. None of them exist in our model organism database, but 8 of them are present in our microarray data.&lt;br /&gt;
# What will I do next to fix what didn&amp;#039;t work?&lt;br /&gt;
#* We are waiting on input from Professor Dahlquist regarding our next steps with these 11 IDs. Once we find out, we will act accordingly and possibly edit our code.&lt;br /&gt;
&lt;br /&gt;
==Week 12 Assignment==&lt;br /&gt;
===Goals===&lt;br /&gt;
*Coder/QA&lt;br /&gt;
**Prepare for journal club presentation&lt;br /&gt;
**Perform an initial Gene Database export and Gene Database Testing Report&lt;br /&gt;
*GenMAPP Users&lt;br /&gt;
**Compile the raw data in preparation for normalization and statistical analysis.&lt;br /&gt;
===Status Report===&lt;br /&gt;
*Emily: uploaded and formatted all microarray files after they were repleted with ferrous sulfate&lt;br /&gt;
*Mary: Prepared for genome paper journal club presentation. I also pushed the code from github onto a computer in the lab, which included downloading eclipse and git for windows on the lab computer.&lt;br /&gt;
*Josh: Prepared for genome paper presentation with Mary. Completed the initial import/export cycle and made significant progress on the Gene Database Testing Report.&lt;br /&gt;
*Ron: Similar to Emily, downloaded the microarray raw data files, followed the procedure given by Dr. Dahlquist for data processing (I worked with the files related to iron depletion with the iron chelator), and I uploaded the files to the wiki.&lt;br /&gt;
&lt;br /&gt;
==Week 11 Assignment : Journal Club Presentation==&lt;br /&gt;
===Presentation Slides===&lt;br /&gt;
*These can also be accessed by going to our [[Heavy Metal HaterZ Files | Files]] page.&lt;br /&gt;
&amp;lt;!--Accidentally uploaded the ppt guidlines instead of own ppt slides at first. This was noticed and corrected 11/23/2015--&amp;gt;&lt;br /&gt;
*[[File:Genome_Paper_Presentation_20151124_HMH.pptx]]&lt;br /&gt;
*[[File:SoMicroarrayPaperPresentation 20151117 HMH.pptx]]&lt;br /&gt;
&lt;br /&gt;
===Goals===&lt;br /&gt;
*Prepare for journal club presentations&lt;br /&gt;
*Begin initial tasks on your research project&lt;br /&gt;
**Coder/QA&lt;br /&gt;
***Set up coding/testing environment&lt;br /&gt;
***Determine the regular expression for the ordered locus ID for your species&lt;br /&gt;
***Identify the appropriate model organism database for your species.&lt;br /&gt;
***Perform an initial Gene Database export and Gene Database Testing Report&lt;br /&gt;
**GenMAPP Users&lt;br /&gt;
***Describe the experimental design of the microarray data, including treatments, number of replicates (biological and/or technical), dye swaps.&lt;br /&gt;
***Determine the sample and data relationships, i.e., which files in the data correspond to which samples in the experimental design.&lt;br /&gt;
***Compile the raw data in preparation for normalization and statistical analysis.&lt;br /&gt;
===Status Report===&lt;br /&gt;
*Emily: worked on journal club presentation and created flow chart diagrams for the experimental design&lt;br /&gt;
*Mary: Completed journal club presentation slides with Josh. I downloaded eclipse on my personal laptop, so along with the use of the lab computers my coding/testing environment should be set up. I determined with Josh the regular expression of the ordered locus ID for our species. I was not able to, however, perform an initial export yet.&lt;br /&gt;
*Ron: Completed journal club presentation slides with Emily and uploaded slides in HMH Files pages. [[Media:SoMicroarrayPaperPresentation 20151117 HMH.pptx | Link to Microarray Paper Presentation here.]] Looked over sample and data relationships file from ArrayExpress entry (E-GEOD-15334) and converted .txt file into .xlsx file. I have not been able to compile raw data with Emily, as we still need clarification on which files are to be used for statistical analysis.&lt;br /&gt;
*Josh: Completed the genome paper presentation with Mary and did more research on our organism. Haven&amp;#039;t done an initial import/export cycle yet. Planning to complete that later this week.&lt;br /&gt;
&lt;br /&gt;
==Week 10 Assignment : Annotated Bibliography==&lt;br /&gt;
&lt;br /&gt;
===Our Genome Paper===&lt;br /&gt;
&lt;br /&gt;
Heidelberg, J. F., Paulsen, I. T., Nelson, K. E., Gaidos, E. J., Nelson, W. C., Read, T. D., ... &amp;amp; Fraser, C. M. (2002). Genome sequence of the dissimilatory metal ion–reducing bacterium Shewanella oneidensis. &amp;#039;&amp;#039;Nature biotechnology, 20&amp;#039;&amp;#039;(11), 1118-1123. doi:10.1038/nbt749&lt;br /&gt;
*The [http://www.ncbi.nlm.nih.gov/pubmed/?term=Genome+sequence+of+the+dissimilatory+metal+ion%E2%80%93reducing+bacterium+Shewanella+oneidensis abstract] from PubMed.&lt;br /&gt;
*The full text of the article in PubMedCentral : Not available. &lt;br /&gt;
*The [http://www.nature.com/nbt/journal/v20/n11/full/nbt749.html full text] of the article from the publisher web site. &amp;lt;!--(The HTML version was not available.)&lt;br /&gt;
** I am not sure what you mean by the HTML version not being available.  This link &amp;#039;&amp;#039;&amp;#039;&amp;#039;&amp;#039;is&amp;#039;&amp;#039;&amp;#039;&amp;#039;&amp;#039; to the HTML version.  &amp;#039;&amp;#039;&amp;amp;mdash; [[User:Kdahlquist|Kdahlquist]] ([[User talk:Kdahlquist|talk]]) 09:19, 10 November 2015 (PST)&amp;#039;&amp;#039;--&amp;gt;&lt;br /&gt;
*The  [http://www.nature.com/nbt/journal/v20/n11/pdf/nbt749.pdf full PDF version] of the article from the publisher web site.&lt;br /&gt;
*Who owns the rights to the article? &lt;br /&gt;
**The Nature Publishing Group, which is the publisher of this article, according to this [https://s100.copyright.com/AppDispatchServlet?publisherName=NPG&amp;amp;publication=Nature%20Biotechnology&amp;amp;title=Genome%20sequence%20of%20the%20dissimilatory%20metal%20ion-reducing%20bacterium%20Shewanella%20oneidensis&amp;amp;author=John%20F.%20Heidelberg,%20Ian%20T.%20Paulsen,%20Karen%20E.%20Nelson,%20Eric%20J.%20Gaidos,%20William%20C.%20Nelson%20et%20al.&amp;amp;contentID=10.1038/nbt749&amp;amp;publicationDate=10/07/2002&amp;amp;volumeNum=20&amp;amp;issueNum=11&amp;amp;numPages=6&amp;amp;pageNumbers=pp1118-1123 site].&lt;br /&gt;
*Do the authors own the rights under a Creative Commons license?&lt;br /&gt;
**Yes, according to this [http://oaspa.org/member/nature-publishing-group-palgrave-macmillan/ site].&lt;br /&gt;
*Is the article available “Open Access”?&lt;br /&gt;
**According to [http://oaspa.org/membership/members/ this site], the article is available &amp;quot;Open Access&amp;quot;.&lt;br /&gt;
*What organization is the publisher of the article? What type of organization is it? &lt;br /&gt;
**According to the site above, this publisher is a &amp;quot;Professional OA Publisher (Large)&amp;quot;. &lt;br /&gt;
*Is this article available in print or online only?&lt;br /&gt;
**Online only. It was published online in November, 2002.&lt;br /&gt;
*Has LMU paid a subscription or other fee for your access to this article?&lt;br /&gt;
**No.&lt;br /&gt;
*We performed a search in the ISI Web of Science/Knowledge database by typing in the title &amp;quot;Genome sequence of the dissimilatory metal ion–reducing bacterium Shewanella oneidensis&amp;quot; to the search bar.&lt;br /&gt;
**Three articles came up as results. The first two articles title&amp;#039;s did not exactly match, and were cited under 15 times each. The third article was the article we were searching for.&lt;br /&gt;
*How many articles does this article cite?&lt;br /&gt;
**This article has 41 cited references within the Web of Science Core Collection, according to this [https://apps.webofknowledge.com/full_record.do?product=UA&amp;amp;search_mode=GeneralSearch&amp;amp;qid=3&amp;amp;SID=3Evs6J6HvCojNOHG6K3&amp;amp;page=1&amp;amp;doc=3 site].&lt;br /&gt;
*How many articles cite this article?&lt;br /&gt;
**It has been cited 1079 times in all databases, and 426 within the Web of Science Core Collection, according to this [https://apps.webofknowledge.com/full_record.do?product=UA&amp;amp;search_mode=GeneralSearch&amp;amp;qid=3&amp;amp;SID=3Evs6J6HvCojNOHG6K3&amp;amp;page=1&amp;amp;doc=3 site].&lt;br /&gt;
*Based on the titles and abstracts of the papers, what type of research directions have been taken now that the genome for that organism has been sequenced?&lt;br /&gt;
**Examples of titles that reference the genome paper:&lt;br /&gt;
***Environmental genome shotgun sequencing of the Sargasso Sea&lt;br /&gt;
***Deciphering the evolution and metabolism of an anammox bacterium from a community genome&lt;br /&gt;
***Genome of Geobacter sulfurreducens: Metal reduction in subsurface environments&lt;br /&gt;
***More can be found by clicking this [https://apps.webofknowledge.com/summary.do?product=WOS&amp;amp;parentProduct=UA&amp;amp;search_mode=CitingArticles&amp;amp;qid=8&amp;amp;SID=3Evs6J6HvCojNOHG6K3&amp;amp;page=1&amp;amp;action=sort&amp;amp;sortBy=LC.D;PY.D;AU.A.en;SO.A.en;VL.D;PG.A&amp;amp;showFirstPage=1 link].&lt;br /&gt;
**These papers include studying within in the species, finding out the genomes of other species, as well as the metabolic versatility of microorganisms and  metal ion reduction in environments. This shows that a sequenced genome can aide in experiments of many kinds.&lt;br /&gt;
&lt;br /&gt;
===Our Microarray Paper===&lt;br /&gt;
*Dataset can be found at this [https://www.ebi.ac.uk/arrayexpress/experiments/E-GEOD-15334/?keywords=&amp;amp;organism=Shewanella+oneidensis&amp;amp;exptype%5B%5D=%22rna+assay%22&amp;amp;exptype%5B%5D=%22array+assay%22&amp;amp;array= link].&lt;br /&gt;
&amp;lt;!-- *The beginning of the headers given to the bibliography entries correspond to the data set results found when clicking the above link.&lt;br /&gt;
** It would have been better to give a direct link to the actual dataset page for each reference below.  Instead, I had to wade through the search results to find each paper/dataset to which you were referring.  &amp;#039;&amp;#039;&amp;amp;mdash; [[User:Kdahlquist|Kdahlquist]] ([[User talk:Kdahlquist|talk]]) 09:47, 10 November 2015 (PST)&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
====E-GEOD-15657: Charania et. al (2009)====&lt;br /&gt;
&lt;br /&gt;
This paper is not suitable because they only do two replicates for each condition and we will not be able to do statistics.  &amp;#039;&amp;#039;&amp;amp;mdash; [[User:Kdahlquist|Kdahlquist]] ([[User talk:Kdahlquist|talk]]) 09:40, 10 November 2015 (PST)&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Charania, M. A., Brockman, K. L., Zhang, Y., Banerjee, A., Pinchuk, G. E., Fredrickson, J. K., Beliaev, A.S., Saffarini, D. A. (2009). Involvement of a Membrane-Bound Class III Adenylate Cyclase in Regulation of Anaerobic Respiration in Shewanella oneidensis MR-1 . Journal of Bacteriology, 191(13), 4298–4306. http://doi.org/10.1128/JB.01829-08&lt;br /&gt;
* Link to abstract on [http://www.ncbi.nlm.nih.gov/pubmed/?term=Involvement+of+a+membrane-bound+class+III+adenylate+cyclase+in+regulation+of+anaerobic+respiration+in+Shewanella+oneidensis+MR-1. &amp;#039;&amp;#039;&amp;#039;PubMed&amp;#039;&amp;#039;&amp;#039;]&lt;br /&gt;
* Link to full text of article on [http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2698484/ &amp;#039;&amp;#039;&amp;#039;PMC&amp;#039;&amp;#039;&amp;#039;]&lt;br /&gt;
* Link to [http://jb.asm.org/content/191/13/4298.full &amp;#039;&amp;#039;&amp;#039;Full Text&amp;#039;&amp;#039;&amp;#039;] from publisher.&lt;br /&gt;
* Link to [http://jb.asm.org/content/191/13/4298.full.pdf+html &amp;#039;&amp;#039;&amp;#039;PDF Version&amp;#039;&amp;#039;&amp;#039;] from publisher.&lt;br /&gt;
* The American Society for Microbiology owns the copyright. The article is not open-access.&lt;br /&gt;
* The publisher is the American Society for Microbiology. It is a scientific society.&lt;br /&gt;
* This article is available in the printed and on-line journals.&lt;br /&gt;
* LMU has not paid for my access.&lt;br /&gt;
* This article has &amp;#039;&amp;#039;&amp;#039;39&amp;#039;&amp;#039;&amp;#039; citations.&lt;br /&gt;
* According to the &amp;#039;&amp;#039;Web of Science&amp;#039;&amp;#039;, this article is cited by &amp;#039;&amp;#039;&amp;#039;29&amp;#039;&amp;#039;&amp;#039; other articles.&lt;br /&gt;
* Looking at the titles of the other articles/abstracts, it seems like most research has been focused on catabolic and regulatory pathways of &amp;#039;&amp;#039;Shewanella oneidensis&amp;#039;&amp;#039;, along with the two-component system that regulates nitrogen (nitrite and nitrate) respiration.&lt;br /&gt;
* Link to [https://www.ebi.ac.uk/arrayexpress/files/E-GEOD-15657/E-GEOD-15657.raw.1.zip &amp;#039;&amp;#039;&amp;#039;Raw microarray data&amp;#039;&amp;#039;&amp;#039;]&lt;br /&gt;
* Link to [https://www.ebi.ac.uk/arrayexpress/files/E-GEOD-15657/E-GEOD-15657.processed.1.zip &amp;#039;&amp;#039;&amp;#039;Processed microarray data&amp;#039;&amp;#039;&amp;#039;]&lt;br /&gt;
* The experiment looked to find more information about the cyclic AMP receptor protein (CRP) within the membranes of &amp;#039;&amp;#039;Shewanella oneidensis&amp;#039;&amp;#039; that regulates the respiration of fumarate, dimethyl sulfoxide (DMSO), or Fe(III); thus, manipulation of the particular genes were done in order to observe how gene deletions would affect the anaerobic respiration.&lt;br /&gt;
* A total of six expression profiles of &amp;#039;&amp;#039;Shewanella oneidensis&amp;#039;&amp;#039; samples (wild-type and mutant strains); 2 wild-type, 2 CRP deletion mutants, cyaC deletion mutants.&lt;br /&gt;
&lt;br /&gt;
====E-GEOD-21044: Lassak et. al (2010)====&lt;br /&gt;
&lt;br /&gt;
This paper is not suitable because they do not use two-color microarray chips.  &amp;#039;&amp;#039;&amp;amp;mdash; [[User:Kdahlquist|Kdahlquist]] ([[User talk:Kdahlquist|talk]]) 09:41, 10 November 2015 (PST)&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Lassak J, Henche AL, Binnenkade L, Thormann KM. (2010). ArcS is the cognate sensor kinase in an atypical Arc system of Shewanella oneidensis MR-1. &amp;#039;&amp;#039;Applied and Environmental Microbiology&amp;#039;&amp;#039;, 76(10), 3263-3274.&lt;br /&gt;
* [http://www.ncbi.nlm.nih.gov/pubmed/?term=ArcS+is+the+cognate+sensor+kinase+in+an+atypical+Arc+system+of+Shewanella+oneidensis+MR-1 &amp;#039;&amp;#039;&amp;#039;PubMed&amp;#039;&amp;#039;&amp;#039;]&lt;br /&gt;
* [http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2869118/ &amp;#039;&amp;#039;&amp;#039;PMC&amp;#039;&amp;#039;&amp;#039;]&lt;br /&gt;
* [http://aem.asm.org/content/76/10/3263.full &amp;#039;&amp;#039;&amp;#039;Full Text&amp;#039;&amp;#039;&amp;#039;]&lt;br /&gt;
* [http://aem.asm.org/content/76/10/3263.full.pdf+html &amp;#039;&amp;#039;&amp;#039;PDF Version&amp;#039;&amp;#039;&amp;#039;]&lt;br /&gt;
* The American Society for Microbiology owns the copyright. The article is not open-access.&lt;br /&gt;
* The publisher is the American Society for Microbiology. It is a scientific society.&lt;br /&gt;
* This article is available in the printed and on-line journals.&lt;br /&gt;
* LMU has not paid for my access.&lt;br /&gt;
* This article has 76 citations.&lt;br /&gt;
* According to the &amp;#039;&amp;#039;Web of Science&amp;#039;&amp;#039;, this article is cited by 35 other articles.&lt;br /&gt;
* Looking at the titles of the other articles, it seems like most research has been focused on a two-component system present in shewanella oneidensis as well as anaerobic and aerobic respiration.&lt;br /&gt;
* [https://www.ebi.ac.uk/arrayexpress/files/E-GEOD-21044/E-GEOD-21044.raw.1.zip &amp;#039;&amp;#039;&amp;#039;Raw microarray data&amp;#039;&amp;#039;&amp;#039;]&lt;br /&gt;
* [https://www.ebi.ac.uk/arrayexpress/files/E-GEOD-21044/E-GEOD-21044.processed.1.zip &amp;#039;&amp;#039;&amp;#039;Processed microarray data&amp;#039;&amp;#039;&amp;#039;]&lt;br /&gt;
* The experiment looked to find more information about the Arc two-component system of shewanella oneidensis by shifting oxygen levels. The treatment in the experiment was the changing levels of oxygen.  The control were strains of shewanella oneidensis MR-1 wild type cells.&lt;br /&gt;
* Expression profiles of three independent replicates of Shewanella oneidensis MR-1 delta-arcS were compared to three independent replicates of Shewanella oneidensis MR-1 wild type cells. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====E-GEOD-15334: Yang et. al (2009)====&lt;br /&gt;
&lt;br /&gt;
This paper is suitable for your project.  &amp;#039;&amp;#039;&amp;amp;mdash; [[User:Kdahlquist|Kdahlquist]] ([[User talk:Kdahlquist|talk]]) 09:41, 10 November 2015 (PST)&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Yang, Y., Harris, D. P., Luo, F., Xiong, W., Joachimiak, M., Wu, L., ... &amp;amp; Zhou, J. (2009). Snapshot of iron response in Shewanella oneidensis by gene network reconstruction. &amp;#039;&amp;#039;BMC genomics, 10&amp;#039;&amp;#039;(1), 131.&lt;br /&gt;
*The link to the abstract from  [http://www.ncbi.nlm.nih.gov/pubmed/?term=Yang%2C+Y.%2C+Harris%2C+D.+P.%2C+Luo%2C+F.%2C+Xiong%2C+W.%2C+Joachimiak%2C+M.%2C+Wu%2C+L.%2C+...+%26+Zhou%2C+J.+%282009%29.+Snapshot+of+iron+response+in+Shewanella+oneidensis+by+gene+network+reconstruction.+BMC+genomics%2C+10%281%29%2C+131. PubMed].&lt;br /&gt;
*The link to the full text of the article in [http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2667191/ PubMedCentral]&lt;br /&gt;
*The link to the full text of the article (HTML format) from the publisher [http://www.biomedcentral.com/1471-2164/10/131 web site].&lt;br /&gt;
*The link to the full [http://www.biomedcentral.com/content/pdf/1471-2164-10-131.pdf PDF] version of the article from the publisher web site.&lt;br /&gt;
*Who owns the rights to the article?&lt;br /&gt;
**The article is Open Access and the authors own the rights under a Creative Commons license.&lt;br /&gt;
*What organization is the publisher of the article?  What type of organization is it?&lt;br /&gt;
**BMC Genomics is the publisher, which is a scientific society&lt;br /&gt;
*Is this article available in print or online only?&lt;br /&gt;
**It is online only&lt;br /&gt;
*Has LMU paid a subscription or other fee for your access to this article?&lt;br /&gt;
**No&lt;br /&gt;
*How many articles does this article cite?&lt;br /&gt;
**This paper sites 48 other articles&lt;br /&gt;
*How many articles cite this article?&lt;br /&gt;
**3&lt;br /&gt;
***Roles of UndA and MtrC of &amp;#039;&amp;#039;Shewanella putrefaciens&amp;#039;&amp;#039; W3-18-1 in iron reduction&lt;br /&gt;
***Global transcriptional response of &amp;#039;&amp;#039;Caulobacter crescentus&amp;#039;&amp;#039; to iron availability&lt;br /&gt;
***Molecular ecological network analysis&lt;br /&gt;
*Based on the titles and abstracts of the papers, what type of research directions have been taken now that the genome for that organism has been sequenced?&lt;br /&gt;
**This article has mostly been used to look at the iron response of other strains or organisms. It may have been used for comparison&amp;#039;s sake or to modify the original methodology to fit the new experiment.&lt;br /&gt;
*Link to microarray data&lt;br /&gt;
**Found it on [https://www.ebi.ac.uk/arrayexpress/experiments/E-GEOD-15334/ ArrayExpress]&lt;br /&gt;
**This contains the raw data that we will use for our research&lt;br /&gt;
*What experiment was performed?  What was the &amp;quot;treatment&amp;quot; and what was the &amp;quot;control&amp;quot; in the experiment?&lt;br /&gt;
**Strains of &amp;#039;&amp;#039;Shewanella oneidensis&amp;#039;&amp;#039; were put under iron depletion and repletion conditions. The control would be a regular strain of the organism, while the treatments would be either increasing or decreasing the iron levels.&lt;br /&gt;
*Were replicate experiments of the &amp;quot;treatment&amp;quot; and &amp;quot;control&amp;quot; conditions conducted?  Were these biological or technical replicates?  How many of each?&lt;br /&gt;
**4 biological replicates of each treatment condition were performed&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- ===Ranking of Microarray Papers===&lt;br /&gt;
#Yang et. al (2009)&lt;br /&gt;
#Lassak et. al (2010)&lt;br /&gt;
#Charania et. al (2009)&lt;br /&gt;
&lt;br /&gt;
It would have been useful if you had actually numbered the papers and put them in this order above.  I actually looked at them in the order you displayed them above before I scrolled down the page and saw this.  &amp;#039;&amp;#039;&amp;amp;mdash; [[User:Kdahlquist|Kdahlquist]] ([[User talk:Kdahlquist|talk]]) 09:45, 10 November 2015 (PST)&amp;#039;&amp;#039; --&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Heavy_Metal_HaterZ&amp;diff=7171</id>
		<title>Heavy Metal HaterZ</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Heavy_Metal_HaterZ&amp;diff=7171"/>
				<updated>2015-12-03T23:33:55Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: /* Week 14 Assignment */ josh&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Heavy Metal HaterZ}}&lt;br /&gt;
==Week 14 Assignment==&lt;br /&gt;
===Goals===&lt;br /&gt;
*Coder/QA&lt;br /&gt;
**Analyze the initial exports and make any necessary changes to the custom species profile to capture all of the IDs for your species&lt;br /&gt;
*GenMAPP Users&lt;br /&gt;
**Finish statistical analysis of compiled microarray data&lt;br /&gt;
**Prepare file for GenMAPP&lt;br /&gt;
===Status Report===&lt;br /&gt;
*Mary-&lt;br /&gt;
&lt;br /&gt;
====Reflections====&lt;br /&gt;
#What worked?&lt;br /&gt;
#What didn&amp;#039;t work?&lt;br /&gt;
#What will I do next to fix what didn&amp;#039;t work?&lt;br /&gt;
&lt;br /&gt;
* Josh&lt;br /&gt;
&lt;br /&gt;
==== Reflection ====&lt;br /&gt;
&lt;br /&gt;
# What worked?&lt;br /&gt;
# What didn&amp;#039;t work?&lt;br /&gt;
# What will I do next to fix what didn&amp;#039;t work?&lt;br /&gt;
&lt;br /&gt;
==Week 12 Assignment==&lt;br /&gt;
===Goals===&lt;br /&gt;
*Coder/QA&lt;br /&gt;
**Prepare for journal club presentation&lt;br /&gt;
**Perform an initial Gene Database export and Gene Database Testing Report&lt;br /&gt;
*GenMAPP Users&lt;br /&gt;
**Compile the raw data in preparation for normalization and statistical analysis.&lt;br /&gt;
===Status Report===&lt;br /&gt;
*Emily: uploaded and formatted all microarray files after they were repleted with ferrous sulfate&lt;br /&gt;
*Mary: Prepared for genome paper journal club presentation. I also pushed the code from github onto a computer in the lab, which included downloading eclipse and git for windows on the lab computer.&lt;br /&gt;
*Josh: Prepared for genome paper presentation with Mary. Completed the initial import/export cycle and made significant progress on the Gene Database Testing Report.&lt;br /&gt;
*Ron: Similar to Emily, downloaded the microarray raw data files, followed the procedure given by Dr. Dahlquist for data processing (I worked with the files related to iron depletion with the iron chelator), and I uploaded the files to the wiki.&lt;br /&gt;
&lt;br /&gt;
==Week 11 Assignment : Journal Club Presentation==&lt;br /&gt;
===Presentation Slides===&lt;br /&gt;
*These can also be accessed by going to our [[Heavy Metal HaterZ Files | Files]] page.&lt;br /&gt;
&amp;lt;!--Accidentally uploaded the ppt guidlines instead of own ppt slides at first. This was noticed and corrected 11/23/2015--&amp;gt;&lt;br /&gt;
*[[File:Genome_Paper_Presentation_20151124_HMH.pptx]]&lt;br /&gt;
*[[File:SoMicroarrayPaperPresentation 20151117 HMH.pptx]]&lt;br /&gt;
&lt;br /&gt;
===Goals===&lt;br /&gt;
*Prepare for journal club presentations&lt;br /&gt;
*Begin initial tasks on your research project&lt;br /&gt;
**Coder/QA&lt;br /&gt;
***Set up coding/testing environment&lt;br /&gt;
***Determine the regular expression for the ordered locus ID for your species&lt;br /&gt;
***Identify the appropriate model organism database for your species.&lt;br /&gt;
***Perform an initial Gene Database export and Gene Database Testing Report&lt;br /&gt;
**GenMAPP Users&lt;br /&gt;
***Describe the experimental design of the microarray data, including treatments, number of replicates (biological and/or technical), dye swaps.&lt;br /&gt;
***Determine the sample and data relationships, i.e., which files in the data correspond to which samples in the experimental design.&lt;br /&gt;
***Compile the raw data in preparation for normalization and statistical analysis.&lt;br /&gt;
===Status Report===&lt;br /&gt;
*Emily: worked on journal club presentation and created flow chart diagrams for the experimental design&lt;br /&gt;
*Mary: Completed journal club presentation slides with Josh. I downloaded eclipse on my personal laptop, so along with the use of the lab computers my coding/testing environment should be set up. I determined with Josh the regular expression of the ordered locus ID for our species. I was not able to, however, perform an initial export yet.&lt;br /&gt;
*Ron: Completed journal club presentation slides with Emily and uploaded slides in HMH Files pages. [[Media:SoMicroarrayPaperPresentation 20151117 HMH.pptx | Link to Microarray Paper Presentation here.]] Looked over sample and data relationships file from ArrayExpress entry (E-GEOD-15334) and converted .txt file into .xlsx file. I have not been able to compile raw data with Emily, as we still need clarification on which files are to be used for statistical analysis.&lt;br /&gt;
*Josh: Completed the genome paper presentation with Mary and did more research on our organism. Haven&amp;#039;t done an initial import/export cycle yet. Planning to complete that later this week.&lt;br /&gt;
&lt;br /&gt;
==Week 10 Assignment : Annotated Bibliography==&lt;br /&gt;
&lt;br /&gt;
===Our Genome Paper===&lt;br /&gt;
&lt;br /&gt;
Heidelberg, J. F., Paulsen, I. T., Nelson, K. E., Gaidos, E. J., Nelson, W. C., Read, T. D., ... &amp;amp; Fraser, C. M. (2002). Genome sequence of the dissimilatory metal ion–reducing bacterium Shewanella oneidensis. &amp;#039;&amp;#039;Nature biotechnology, 20&amp;#039;&amp;#039;(11), 1118-1123. doi:10.1038/nbt749&lt;br /&gt;
*The [http://www.ncbi.nlm.nih.gov/pubmed/?term=Genome+sequence+of+the+dissimilatory+metal+ion%E2%80%93reducing+bacterium+Shewanella+oneidensis abstract] from PubMed.&lt;br /&gt;
*The full text of the article in PubMedCentral : Not available. &lt;br /&gt;
*The [http://www.nature.com/nbt/journal/v20/n11/full/nbt749.html full text] of the article from the publisher web site. &amp;lt;!--(The HTML version was not available.)&lt;br /&gt;
** I am not sure what you mean by the HTML version not being available.  This link &amp;#039;&amp;#039;&amp;#039;&amp;#039;&amp;#039;is&amp;#039;&amp;#039;&amp;#039;&amp;#039;&amp;#039; to the HTML version.  &amp;#039;&amp;#039;&amp;amp;mdash; [[User:Kdahlquist|Kdahlquist]] ([[User talk:Kdahlquist|talk]]) 09:19, 10 November 2015 (PST)&amp;#039;&amp;#039;--&amp;gt;&lt;br /&gt;
*The  [http://www.nature.com/nbt/journal/v20/n11/pdf/nbt749.pdf full PDF version] of the article from the publisher web site.&lt;br /&gt;
*Who owns the rights to the article? &lt;br /&gt;
**The Nature Publishing Group, which is the publisher of this article, according to this [https://s100.copyright.com/AppDispatchServlet?publisherName=NPG&amp;amp;publication=Nature%20Biotechnology&amp;amp;title=Genome%20sequence%20of%20the%20dissimilatory%20metal%20ion-reducing%20bacterium%20Shewanella%20oneidensis&amp;amp;author=John%20F.%20Heidelberg,%20Ian%20T.%20Paulsen,%20Karen%20E.%20Nelson,%20Eric%20J.%20Gaidos,%20William%20C.%20Nelson%20et%20al.&amp;amp;contentID=10.1038/nbt749&amp;amp;publicationDate=10/07/2002&amp;amp;volumeNum=20&amp;amp;issueNum=11&amp;amp;numPages=6&amp;amp;pageNumbers=pp1118-1123 site].&lt;br /&gt;
*Do the authors own the rights under a Creative Commons license?&lt;br /&gt;
**Yes, according to this [http://oaspa.org/member/nature-publishing-group-palgrave-macmillan/ site].&lt;br /&gt;
*Is the article available “Open Access”?&lt;br /&gt;
**According to [http://oaspa.org/membership/members/ this site], the article is available &amp;quot;Open Access&amp;quot;.&lt;br /&gt;
*What organization is the publisher of the article? What type of organization is it? &lt;br /&gt;
**According to the site above, this publisher is a &amp;quot;Professional OA Publisher (Large)&amp;quot;. &lt;br /&gt;
*Is this article available in print or online only?&lt;br /&gt;
**Online only. It was published online in November, 2002.&lt;br /&gt;
*Has LMU paid a subscription or other fee for your access to this article?&lt;br /&gt;
**No.&lt;br /&gt;
*We performed a search in the ISI Web of Science/Knowledge database by typing in the title &amp;quot;Genome sequence of the dissimilatory metal ion–reducing bacterium Shewanella oneidensis&amp;quot; to the search bar.&lt;br /&gt;
**Three articles came up as results. The first two articles title&amp;#039;s did not exactly match, and were cited under 15 times each. The third article was the article we were searching for.&lt;br /&gt;
*How many articles does this article cite?&lt;br /&gt;
**This article has 41 cited references within the Web of Science Core Collection, according to this [https://apps.webofknowledge.com/full_record.do?product=UA&amp;amp;search_mode=GeneralSearch&amp;amp;qid=3&amp;amp;SID=3Evs6J6HvCojNOHG6K3&amp;amp;page=1&amp;amp;doc=3 site].&lt;br /&gt;
*How many articles cite this article?&lt;br /&gt;
**It has been cited 1079 times in all databases, and 426 within the Web of Science Core Collection, according to this [https://apps.webofknowledge.com/full_record.do?product=UA&amp;amp;search_mode=GeneralSearch&amp;amp;qid=3&amp;amp;SID=3Evs6J6HvCojNOHG6K3&amp;amp;page=1&amp;amp;doc=3 site].&lt;br /&gt;
*Based on the titles and abstracts of the papers, what type of research directions have been taken now that the genome for that organism has been sequenced?&lt;br /&gt;
**Examples of titles that reference the genome paper:&lt;br /&gt;
***Environmental genome shotgun sequencing of the Sargasso Sea&lt;br /&gt;
***Deciphering the evolution and metabolism of an anammox bacterium from a community genome&lt;br /&gt;
***Genome of Geobacter sulfurreducens: Metal reduction in subsurface environments&lt;br /&gt;
***More can be found by clicking this [https://apps.webofknowledge.com/summary.do?product=WOS&amp;amp;parentProduct=UA&amp;amp;search_mode=CitingArticles&amp;amp;qid=8&amp;amp;SID=3Evs6J6HvCojNOHG6K3&amp;amp;page=1&amp;amp;action=sort&amp;amp;sortBy=LC.D;PY.D;AU.A.en;SO.A.en;VL.D;PG.A&amp;amp;showFirstPage=1 link].&lt;br /&gt;
**These papers include studying within in the species, finding out the genomes of other species, as well as the metabolic versatility of microorganisms and  metal ion reduction in environments. This shows that a sequenced genome can aide in experiments of many kinds.&lt;br /&gt;
&lt;br /&gt;
===Our Microarray Paper===&lt;br /&gt;
*Dataset can be found at this [https://www.ebi.ac.uk/arrayexpress/experiments/E-GEOD-15334/?keywords=&amp;amp;organism=Shewanella+oneidensis&amp;amp;exptype%5B%5D=%22rna+assay%22&amp;amp;exptype%5B%5D=%22array+assay%22&amp;amp;array= link].&lt;br /&gt;
&amp;lt;!-- *The beginning of the headers given to the bibliography entries correspond to the data set results found when clicking the above link.&lt;br /&gt;
** It would have been better to give a direct link to the actual dataset page for each reference below.  Instead, I had to wade through the search results to find each paper/dataset to which you were referring.  &amp;#039;&amp;#039;&amp;amp;mdash; [[User:Kdahlquist|Kdahlquist]] ([[User talk:Kdahlquist|talk]]) 09:47, 10 November 2015 (PST)&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
====E-GEOD-15657: Charania et. al (2009)====&lt;br /&gt;
&lt;br /&gt;
This paper is not suitable because they only do two replicates for each condition and we will not be able to do statistics.  &amp;#039;&amp;#039;&amp;amp;mdash; [[User:Kdahlquist|Kdahlquist]] ([[User talk:Kdahlquist|talk]]) 09:40, 10 November 2015 (PST)&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Charania, M. A., Brockman, K. L., Zhang, Y., Banerjee, A., Pinchuk, G. E., Fredrickson, J. K., Beliaev, A.S., Saffarini, D. A. (2009). Involvement of a Membrane-Bound Class III Adenylate Cyclase in Regulation of Anaerobic Respiration in Shewanella oneidensis MR-1 . Journal of Bacteriology, 191(13), 4298–4306. http://doi.org/10.1128/JB.01829-08&lt;br /&gt;
* Link to abstract on [http://www.ncbi.nlm.nih.gov/pubmed/?term=Involvement+of+a+membrane-bound+class+III+adenylate+cyclase+in+regulation+of+anaerobic+respiration+in+Shewanella+oneidensis+MR-1. &amp;#039;&amp;#039;&amp;#039;PubMed&amp;#039;&amp;#039;&amp;#039;]&lt;br /&gt;
* Link to full text of article on [http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2698484/ &amp;#039;&amp;#039;&amp;#039;PMC&amp;#039;&amp;#039;&amp;#039;]&lt;br /&gt;
* Link to [http://jb.asm.org/content/191/13/4298.full &amp;#039;&amp;#039;&amp;#039;Full Text&amp;#039;&amp;#039;&amp;#039;] from publisher.&lt;br /&gt;
* Link to [http://jb.asm.org/content/191/13/4298.full.pdf+html &amp;#039;&amp;#039;&amp;#039;PDF Version&amp;#039;&amp;#039;&amp;#039;] from publisher.&lt;br /&gt;
* The American Society for Microbiology owns the copyright. The article is not open-access.&lt;br /&gt;
* The publisher is the American Society for Microbiology. It is a scientific society.&lt;br /&gt;
* This article is available in the printed and on-line journals.&lt;br /&gt;
* LMU has not paid for my access.&lt;br /&gt;
* This article has &amp;#039;&amp;#039;&amp;#039;39&amp;#039;&amp;#039;&amp;#039; citations.&lt;br /&gt;
* According to the &amp;#039;&amp;#039;Web of Science&amp;#039;&amp;#039;, this article is cited by &amp;#039;&amp;#039;&amp;#039;29&amp;#039;&amp;#039;&amp;#039; other articles.&lt;br /&gt;
* Looking at the titles of the other articles/abstracts, it seems like most research has been focused on catabolic and regulatory pathways of &amp;#039;&amp;#039;Shewanella oneidensis&amp;#039;&amp;#039;, along with the two-component system that regulates nitrogen (nitrite and nitrate) respiration.&lt;br /&gt;
* Link to [https://www.ebi.ac.uk/arrayexpress/files/E-GEOD-15657/E-GEOD-15657.raw.1.zip &amp;#039;&amp;#039;&amp;#039;Raw microarray data&amp;#039;&amp;#039;&amp;#039;]&lt;br /&gt;
* Link to [https://www.ebi.ac.uk/arrayexpress/files/E-GEOD-15657/E-GEOD-15657.processed.1.zip &amp;#039;&amp;#039;&amp;#039;Processed microarray data&amp;#039;&amp;#039;&amp;#039;]&lt;br /&gt;
* The experiment looked to find more information about the cyclic AMP receptor protein (CRP) within the membranes of &amp;#039;&amp;#039;Shewanella oneidensis&amp;#039;&amp;#039; that regulates the respiration of fumarate, dimethyl sulfoxide (DMSO), or Fe(III); thus, manipulation of the particular genes were done in order to observe how gene deletions would affect the anaerobic respiration.&lt;br /&gt;
* A total of six expression profiles of &amp;#039;&amp;#039;Shewanella oneidensis&amp;#039;&amp;#039; samples (wild-type and mutant strains); 2 wild-type, 2 CRP deletion mutants, cyaC deletion mutants.&lt;br /&gt;
&lt;br /&gt;
====E-GEOD-21044: Lassak et. al (2010)====&lt;br /&gt;
&lt;br /&gt;
This paper is not suitable because they do not use two-color microarray chips.  &amp;#039;&amp;#039;&amp;amp;mdash; [[User:Kdahlquist|Kdahlquist]] ([[User talk:Kdahlquist|talk]]) 09:41, 10 November 2015 (PST)&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Lassak J, Henche AL, Binnenkade L, Thormann KM. (2010). ArcS is the cognate sensor kinase in an atypical Arc system of Shewanella oneidensis MR-1. &amp;#039;&amp;#039;Applied and Environmental Microbiology&amp;#039;&amp;#039;, 76(10), 3263-3274.&lt;br /&gt;
* [http://www.ncbi.nlm.nih.gov/pubmed/?term=ArcS+is+the+cognate+sensor+kinase+in+an+atypical+Arc+system+of+Shewanella+oneidensis+MR-1 &amp;#039;&amp;#039;&amp;#039;PubMed&amp;#039;&amp;#039;&amp;#039;]&lt;br /&gt;
* [http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2869118/ &amp;#039;&amp;#039;&amp;#039;PMC&amp;#039;&amp;#039;&amp;#039;]&lt;br /&gt;
* [http://aem.asm.org/content/76/10/3263.full &amp;#039;&amp;#039;&amp;#039;Full Text&amp;#039;&amp;#039;&amp;#039;]&lt;br /&gt;
* [http://aem.asm.org/content/76/10/3263.full.pdf+html &amp;#039;&amp;#039;&amp;#039;PDF Version&amp;#039;&amp;#039;&amp;#039;]&lt;br /&gt;
* The American Society for Microbiology owns the copyright. The article is not open-access.&lt;br /&gt;
* The publisher is the American Society for Microbiology. It is a scientific society.&lt;br /&gt;
* This article is available in the printed and on-line journals.&lt;br /&gt;
* LMU has not paid for my access.&lt;br /&gt;
* This article has 76 citations.&lt;br /&gt;
* According to the &amp;#039;&amp;#039;Web of Science&amp;#039;&amp;#039;, this article is cited by 35 other articles.&lt;br /&gt;
* Looking at the titles of the other articles, it seems like most research has been focused on a two-component system present in shewanella oneidensis as well as anaerobic and aerobic respiration.&lt;br /&gt;
* [https://www.ebi.ac.uk/arrayexpress/files/E-GEOD-21044/E-GEOD-21044.raw.1.zip &amp;#039;&amp;#039;&amp;#039;Raw microarray data&amp;#039;&amp;#039;&amp;#039;]&lt;br /&gt;
* [https://www.ebi.ac.uk/arrayexpress/files/E-GEOD-21044/E-GEOD-21044.processed.1.zip &amp;#039;&amp;#039;&amp;#039;Processed microarray data&amp;#039;&amp;#039;&amp;#039;]&lt;br /&gt;
* The experiment looked to find more information about the Arc two-component system of shewanella oneidensis by shifting oxygen levels. The treatment in the experiment was the changing levels of oxygen.  The control were strains of shewanella oneidensis MR-1 wild type cells.&lt;br /&gt;
* Expression profiles of three independent replicates of Shewanella oneidensis MR-1 delta-arcS were compared to three independent replicates of Shewanella oneidensis MR-1 wild type cells. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====E-GEOD-15334: Yang et. al (2009)====&lt;br /&gt;
&lt;br /&gt;
This paper is suitable for your project.  &amp;#039;&amp;#039;&amp;amp;mdash; [[User:Kdahlquist|Kdahlquist]] ([[User talk:Kdahlquist|talk]]) 09:41, 10 November 2015 (PST)&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Yang, Y., Harris, D. P., Luo, F., Xiong, W., Joachimiak, M., Wu, L., ... &amp;amp; Zhou, J. (2009). Snapshot of iron response in Shewanella oneidensis by gene network reconstruction. &amp;#039;&amp;#039;BMC genomics, 10&amp;#039;&amp;#039;(1), 131.&lt;br /&gt;
*The link to the abstract from  [http://www.ncbi.nlm.nih.gov/pubmed/?term=Yang%2C+Y.%2C+Harris%2C+D.+P.%2C+Luo%2C+F.%2C+Xiong%2C+W.%2C+Joachimiak%2C+M.%2C+Wu%2C+L.%2C+...+%26+Zhou%2C+J.+%282009%29.+Snapshot+of+iron+response+in+Shewanella+oneidensis+by+gene+network+reconstruction.+BMC+genomics%2C+10%281%29%2C+131. PubMed].&lt;br /&gt;
*The link to the full text of the article in [http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2667191/ PubMedCentral]&lt;br /&gt;
*The link to the full text of the article (HTML format) from the publisher [http://www.biomedcentral.com/1471-2164/10/131 web site].&lt;br /&gt;
*The link to the full [http://www.biomedcentral.com/content/pdf/1471-2164-10-131.pdf PDF] version of the article from the publisher web site.&lt;br /&gt;
*Who owns the rights to the article?&lt;br /&gt;
**The article is Open Access and the authors own the rights under a Creative Commons license.&lt;br /&gt;
*What organization is the publisher of the article?  What type of organization is it?&lt;br /&gt;
**BMC Genomics is the publisher, which is a scientific society&lt;br /&gt;
*Is this article available in print or online only?&lt;br /&gt;
**It is online only&lt;br /&gt;
*Has LMU paid a subscription or other fee for your access to this article?&lt;br /&gt;
**No&lt;br /&gt;
*How many articles does this article cite?&lt;br /&gt;
**This paper sites 48 other articles&lt;br /&gt;
*How many articles cite this article?&lt;br /&gt;
**3&lt;br /&gt;
***Roles of UndA and MtrC of &amp;#039;&amp;#039;Shewanella putrefaciens&amp;#039;&amp;#039; W3-18-1 in iron reduction&lt;br /&gt;
***Global transcriptional response of &amp;#039;&amp;#039;Caulobacter crescentus&amp;#039;&amp;#039; to iron availability&lt;br /&gt;
***Molecular ecological network analysis&lt;br /&gt;
*Based on the titles and abstracts of the papers, what type of research directions have been taken now that the genome for that organism has been sequenced?&lt;br /&gt;
**This article has mostly been used to look at the iron response of other strains or organisms. It may have been used for comparison&amp;#039;s sake or to modify the original methodology to fit the new experiment.&lt;br /&gt;
*Link to microarray data&lt;br /&gt;
**Found it on [https://www.ebi.ac.uk/arrayexpress/experiments/E-GEOD-15334/ ArrayExpress]&lt;br /&gt;
**This contains the raw data that we will use for our research&lt;br /&gt;
*What experiment was performed?  What was the &amp;quot;treatment&amp;quot; and what was the &amp;quot;control&amp;quot; in the experiment?&lt;br /&gt;
**Strains of &amp;#039;&amp;#039;Shewanella oneidensis&amp;#039;&amp;#039; were put under iron depletion and repletion conditions. The control would be a regular strain of the organism, while the treatments would be either increasing or decreasing the iron levels.&lt;br /&gt;
*Were replicate experiments of the &amp;quot;treatment&amp;quot; and &amp;quot;control&amp;quot; conditions conducted?  Were these biological or technical replicates?  How many of each?&lt;br /&gt;
**4 biological replicates of each treatment condition were performed&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- ===Ranking of Microarray Papers===&lt;br /&gt;
#Yang et. al (2009)&lt;br /&gt;
#Lassak et. al (2010)&lt;br /&gt;
#Charania et. al (2009)&lt;br /&gt;
&lt;br /&gt;
It would have been useful if you had actually numbered the papers and put them in this order above.  I actually looked at them in the order you displayed them above before I scrolled down the page and saw this.  &amp;#039;&amp;#039;&amp;amp;mdash; [[User:Kdahlquist|Kdahlquist]] ([[User talk:Kdahlquist|talk]]) 09:45, 10 November 2015 (PST)&amp;#039;&amp;#039; --&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Heavy_Metal_HaterZ_Deliverables&amp;diff=7167</id>
		<title>Heavy Metal HaterZ Deliverables</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Heavy_Metal_HaterZ_Deliverables&amp;diff=7167"/>
				<updated>2015-12-03T23:28:55Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: group files &amp;amp; datasets&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Group Files and Datasets ==&lt;br /&gt;
&lt;br /&gt;
* [[Media:So-Std 20151201special.zip | GenMAPP Gene Database for assigned species]]&lt;br /&gt;
* ReadMe file to accompany the Gene Database (&amp;#039;&amp;#039;.pdf&amp;#039;&amp;#039;)&lt;br /&gt;
** Sample ReadMe in Word format:  [[Media:ReadMe_Vc-Std_External_20131122.zip | ReadMe_Vc-Std_External_20131122.zip]]&lt;br /&gt;
** [https://github.com/lmu-bioinformatics/xmlpipedb/blob/readme/GenMAPP%20Gene%20Databases/V.%20cholerae/V.%20cholerae%2020101022/ReadMe.md Sample ReadMe in markdown (a work in progress)] &lt;br /&gt;
** Include Gene Database Schema diagram in ReadMe&lt;br /&gt;
*** Sample schema in Adobe Illustrator format:  [[Media:Vibrio_schema_20101022.zip | Vibrio_schema_20101022.zip]]&lt;br /&gt;
* Gene Database Testing Report for final submitted Gene Database (print from wiki to &amp;#039;&amp;#039;.pdf&amp;#039;&amp;#039; file)&lt;br /&gt;
* Processed and analyzed DNA microarray dataset (&amp;#039;&amp;#039;.xls&amp;#039;&amp;#039; or &amp;#039;&amp;#039;.xlsx&amp;#039;&amp;#039;)&lt;br /&gt;
* Data file used for import into GenMAPP (&amp;#039;&amp;#039;.txt&amp;#039;&amp;#039; or &amp;#039;&amp;#039;.csv&amp;#039;&amp;#039;)&lt;br /&gt;
* GenMAPP Expression Dataset file (&amp;#039;&amp;#039;.gex&amp;#039;&amp;#039;)&lt;br /&gt;
* Exceptions file of data imported into GenMAPP (&amp;#039;&amp;#039;.EX.txt&amp;#039;&amp;#039;)&lt;br /&gt;
* Raw MAPPFinder results files (&amp;#039;&amp;#039;-GO.txt&amp;#039;&amp;#039;)&lt;br /&gt;
* &amp;#039;&amp;#039;.gmf&amp;#039;&amp;#039; file&lt;br /&gt;
* Filtered MAPPFinder Results (&amp;#039;&amp;#039;.xls&amp;#039;&amp;#039; or &amp;#039;&amp;#039;.xlsx&amp;#039;&amp;#039;)&lt;br /&gt;
* Sample MAPP file of a relevant biological pathway for your species (&amp;#039;&amp;#039;.mapp&amp;#039;&amp;#039;)&lt;br /&gt;
* [[Gene Database Project Deliverables#Group Report | Group Report]] describing the creation of the Gene Database and the biological analysis of the data (&amp;#039;&amp;#039;.doc&amp;#039;&amp;#039;, &amp;#039;&amp;#039;.docx&amp;#039;&amp;#039;, or &amp;#039;&amp;#039;.pdf&amp;#039;&amp;#039;)&lt;br /&gt;
* PowerPoint presentation (&amp;#039;&amp;#039;.ppt&amp;#039;&amp;#039;, &amp;#039;&amp;#039;.pptx&amp;#039;&amp;#039;, or &amp;#039;&amp;#039;.pdf&amp;#039;&amp;#039;, given on Tuesday, December 15)&lt;br /&gt;
&lt;br /&gt;
[[Gene Database Project Deliverables]]&lt;br /&gt;
[[Category:Heavy Metal HaterZ]]&lt;br /&gt;
[[Category:Group Projects]]&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Jkuroda_Week_15&amp;diff=7161</id>
		<title>Jkuroda Week 15</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Jkuroda_Week_15&amp;diff=7161"/>
				<updated>2015-12-03T23:24:20Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: fixing&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Individual Assessment &amp;amp; Reflection==&lt;br /&gt;
=== Statement of Work ===&lt;br /&gt;
&lt;br /&gt;
* Describe exactly what you did on the project.&lt;br /&gt;
* Provide references or links to artifacts of your work, such as:&lt;br /&gt;
** Wiki pages&lt;br /&gt;
** Other files or documents&lt;br /&gt;
** Code or scripts&lt;br /&gt;
&lt;br /&gt;
=== Assessment of Project ===&lt;br /&gt;
&lt;br /&gt;
* Give an objective assessment of the success of your project workflow and teamwork.  &lt;br /&gt;
* What worked and what didn&amp;#039;t work?  &lt;br /&gt;
* What would you do differently if you could do it all over again?&lt;br /&gt;
* Evaluate the Gene Database Project and Group Report in the following areas:&lt;br /&gt;
*# Content: What is the quality of the work? &lt;br /&gt;
*# Organization: Comment on the organization of the project and of your group&amp;#039;s wiki pages.&lt;br /&gt;
*# Completeness:  Did your team achieve all of the project objectives?  Why or why not?&lt;br /&gt;
&lt;br /&gt;
=== Reflection on the Process ===&lt;br /&gt;
&lt;br /&gt;
* What did you learn?&lt;br /&gt;
** With your head (biological or computer science principles)&lt;br /&gt;
** With your heart (personal qualities and teamwork qualities that make things work or not work)?&lt;br /&gt;
** With your hands (technical skills)?&lt;br /&gt;
* What lesson will you take away from this project that you will still use a year from now?&lt;br /&gt;
&lt;br /&gt;
{{Template:Journal Template}}&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Jkuroda_Week_15&amp;diff=7159</id>
		<title>Jkuroda Week 15</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Jkuroda_Week_15&amp;diff=7159"/>
				<updated>2015-12-03T23:24:02Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: minor&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Individual Assessment &amp;amp; Reflection&lt;br /&gt;
=== Statement of Work ===&lt;br /&gt;
&lt;br /&gt;
* Describe exactly what you did on the project.&lt;br /&gt;
* Provide references or links to artifacts of your work, such as:&lt;br /&gt;
** Wiki pages&lt;br /&gt;
** Other files or documents&lt;br /&gt;
** Code or scripts&lt;br /&gt;
&lt;br /&gt;
=== Assessment of Project ===&lt;br /&gt;
&lt;br /&gt;
* Give an objective assessment of the success of your project workflow and teamwork.  &lt;br /&gt;
* What worked and what didn&amp;#039;t work?  &lt;br /&gt;
* What would you do differently if you could do it all over again?&lt;br /&gt;
* Evaluate the Gene Database Project and Group Report in the following areas:&lt;br /&gt;
*# Content: What is the quality of the work? &lt;br /&gt;
*# Organization: Comment on the organization of the project and of your group&amp;#039;s wiki pages.&lt;br /&gt;
*# Completeness:  Did your team achieve all of the project objectives?  Why or why not?&lt;br /&gt;
&lt;br /&gt;
=== Reflection on the Process ===&lt;br /&gt;
&lt;br /&gt;
* What did you learn?&lt;br /&gt;
** With your head (biological or computer science principles)&lt;br /&gt;
** With your heart (personal qualities and teamwork qualities that make things work or not work)?&lt;br /&gt;
** With your hands (technical skills)?&lt;br /&gt;
* What lesson will you take away from this project that you will still use a year from now?&lt;br /&gt;
&lt;br /&gt;
{{Template:Journal Template}}&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Jkuroda_Week_15&amp;diff=7155</id>
		<title>Jkuroda Week 15</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Jkuroda_Week_15&amp;diff=7155"/>
				<updated>2015-12-03T23:23:09Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Statement of Work ===&lt;br /&gt;
&lt;br /&gt;
* Describe exactly what you did on the project.&lt;br /&gt;
* Provide references or links to artifacts of your work, such as:&lt;br /&gt;
** Wiki pages&lt;br /&gt;
** Other files or documents&lt;br /&gt;
** Code or scripts&lt;br /&gt;
&lt;br /&gt;
=== Assessment of Project ===&lt;br /&gt;
&lt;br /&gt;
* Give an objective assessment of the success of your project workflow and teamwork.  &lt;br /&gt;
* What worked and what didn&amp;#039;t work?  &lt;br /&gt;
* What would you do differently if you could do it all over again?&lt;br /&gt;
* Evaluate the Gene Database Project and Group Report in the following areas:&lt;br /&gt;
*# Content: What is the quality of the work? &lt;br /&gt;
*# Organization: Comment on the organization of the project and of your group&amp;#039;s wiki pages.&lt;br /&gt;
*# Completeness:  Did your team achieve all of the project objectives?  Why or why not?&lt;br /&gt;
&lt;br /&gt;
=== Reflection on the Process ===&lt;br /&gt;
&lt;br /&gt;
* What did you learn?&lt;br /&gt;
** With your head (biological or computer science principles)&lt;br /&gt;
** With your heart (personal qualities and teamwork qualities that make things work or not work)?&lt;br /&gt;
** With your hands (technical skills)?&lt;br /&gt;
* What lesson will you take away from this project that you will still use a year from now?&lt;br /&gt;
&lt;br /&gt;
{{Template:Journal Template}}&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Gene_Database_Testing_Report_-_Heavy_Metal_HaterZ&amp;diff=7150</id>
		<title>Gene Database Testing Report - Heavy Metal HaterZ</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Gene_Database_Testing_Report_-_Heavy_Metal_HaterZ&amp;diff=7150"/>
				<updated>2015-12-03T23:08:25Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: /* Analysis */ adding info about 11 IDs&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Heavy Metal HaterZ}}&lt;br /&gt;
==Export Information==&lt;br /&gt;
&lt;br /&gt;
Version of GenMAPP Builder: &amp;#039;&amp;#039;&amp;#039;3 build 5&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Computer on which export was run: &amp;#039;&amp;#039;&amp;#039;HP Compaq 8300 Elite SFF FC&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Postgres Database name: &amp;#039;&amp;#039;&amp;#039;S. Oneidensis&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
UniProt XML filename: [[Media:SOneidensisUNIPROT.gz | &amp;#039;&amp;#039;&amp;#039;SOneidensisUNIPROT&amp;#039;&amp;#039;&amp;#039;]]&lt;br /&gt;
* UniProt XML version: &amp;#039;&amp;#039;&amp;#039;UniProt release 2015_10 - October 14, 2015&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* [http://www.uniprot.org/uniprot/?query=taxonomy:211586 UniProt XML download link]&lt;br /&gt;
* Time taken to import: &amp;#039;&amp;#039;&amp;#039;3.18 minutes&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** Note: &amp;#039;&amp;#039;n/a&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
GO OBO-XML filename: [[Media:Go daily-termdb.obo-xml.gz | &amp;#039;&amp;#039;&amp;#039;go daily-termdb.obo-xml&amp;#039;&amp;#039;&amp;#039;]]&lt;br /&gt;
* GO OBO-XML version (The version information can be found in the file properties after the file downloaded from the [http://beta.geneontology.org/page/download-ontology GO Download page] has been unzipped): &lt;br /&gt;
* [http://geneontology.org/page/download-ontology#Legacy_Downloads GO OBO-XML download link]&lt;br /&gt;
* Time taken to import: &amp;#039;&amp;#039;&amp;#039;7.16 minutes&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Time taken to process: &amp;#039;&amp;#039;&amp;#039;4.27 minutes&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** Note: &amp;#039;&amp;#039;n/a&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
GOA filename: [[Media:ShewanellaOneidensisGOA.zip | &amp;#039;&amp;#039;&amp;#039;ShewanellaOneidensisGOA&amp;#039;&amp;#039;&amp;#039;]]&lt;br /&gt;
* GOA version (News on [http://www.ebi.ac.uk/GOA/ this page] records past releases; current information can be found in the Last modified field on the [ftp://ftp.ebi.ac.uk/pub/databases/GO/goa/proteomes/ FTP site]): &amp;#039;&amp;#039;&amp;#039;October 14, 2015 - GOA Proteome Sets 124&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* [ftp://ftp.ebi.ac.uk/pub/databases/GO/goa/proteomes/106.S_oneidensis.goa GOA download link]&lt;br /&gt;
* Time taken to import: &amp;#039;&amp;#039;&amp;#039;0.05 minutes&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** Note: &amp;#039;&amp;#039;n/a&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Name of .gdb file: [[Media:So-Std 20151119HMH.zip | &amp;#039;&amp;#039;&amp;#039;So-Std 20151119HMH.gdb&amp;#039;&amp;#039;&amp;#039;]]&lt;br /&gt;
* Time taken to export: &amp;#039;&amp;#039;&amp;#039;1 hour and 18 minutes&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** Start time: &amp;#039;&amp;#039;&amp;#039;3:48pm&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** End time: &amp;#039;&amp;#039;&amp;#039;5:06pm&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** Note: &amp;#039;&amp;#039;n/a&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
==TallyEngine==&lt;br /&gt;
&lt;br /&gt;
* Run the TallyEngine in GenMAPP Builder and record the number of records for UniProt and GO in the XML data and in the Postgres databases.&lt;br /&gt;
** Choose the menu item Tallies &amp;gt; Run XML and Database Tallies for UniProt and GO...&lt;br /&gt;
** Take a screenshot of the results.  Upload the image to the wiki and display it on this page.&lt;br /&gt;
** &amp;#039;&amp;#039;&amp;#039;4196&amp;#039;&amp;#039;&amp;#039; IDs&lt;br /&gt;
** For more information, [[How_Do_I_Count_Thee%3F_Let_Me_Count_The_Ways | see this page.]]&lt;br /&gt;
&lt;br /&gt;
[[Image:TallyEngineSOneidensis.PNG | center | 540px]]&lt;br /&gt;
&lt;br /&gt;
== Using XMLPipeDB match to Validate the XML Results from the TallyEngine==&lt;br /&gt;
&lt;br /&gt;
[[How_Do_I_Count_Thee%3F_Let_Me_Count_The_Ways | Follow the instructions found on this page to run XMLPipeDB match.]]&lt;br /&gt;
&lt;br /&gt;
Are your results the same as you got for the TallyEngine?  Why or why not?&lt;br /&gt;
* Initially, we got &amp;#039;&amp;#039;&amp;#039;4196&amp;#039;&amp;#039;&amp;#039; IDs for both XML and Postgres DB from TallyEngine but got &amp;#039;&amp;#039;&amp;#039;4079&amp;#039;&amp;#039;&amp;#039; IDs by using XMLPipeDB match. This result was from using the following command:&lt;br /&gt;
 java -jar xmlpipedb-match-1.1.1.jar &amp;quot;SO_[0-9][0-9][0-9][0-9]&amp;quot; &amp;lt; SOneidensisUNIPROT&lt;br /&gt;
&lt;br /&gt;
* After checking the .gdb file and looking through the Gene IDs, I found that some IDs were in the form &amp;quot;SO_A####&amp;quot; so I ran a new command accounting for this:&lt;br /&gt;
 java -jar xmlpipedb-match-1.1.1.jar &amp;quot;SO_A?[0-9][0-9][0-9][0-9]&amp;quot; &amp;lt; SOneidensisUNIPROT&lt;br /&gt;
* This gave a total number of &amp;#039;&amp;#039;&amp;#039;4207&amp;#039;&amp;#039;&amp;#039; IDs.&lt;br /&gt;
&lt;br /&gt;
== Using SQL Queries to Validate the PostgreSQL Database Results from the TallyEngine==&lt;br /&gt;
&lt;br /&gt;
For more information, [[How_Do_I_Count_Thee%3F_Let_Me_Count_The_Ways | see this page.]]&lt;br /&gt;
&lt;br /&gt;
You can also look for counts at the SQL level, using some variation of a &amp;#039;&amp;#039;select count(*)&amp;#039;&amp;#039; query.  This requires some knowledge of which table received what data.  Here&amp;amp;rsquo;s an initial tip: the &amp;#039;&amp;#039;gene/name&amp;#039;&amp;#039; tags in the XML file land in the &amp;#039;&amp;#039;genenametype&amp;#039;&amp;#039; table.  A query on this table counting values from this table that were marked as &amp;#039;&amp;#039;ordered locus&amp;#039;&amp;#039; in the XML file matching the pattern &amp;#039;&amp;#039;SO_[0-9][0-9][0-9][0-9]&amp;#039;&amp;#039; would look like this:&lt;br /&gt;
&lt;br /&gt;
 select count(*) from genenametype where type = &amp;#039;ordered locus&amp;#039; and value ~ &amp;#039;SO_[0-9][0-9][0-9][0-9]&amp;#039;;&lt;br /&gt;
* However, once I found that some IDs were in the form &amp;quot;SO_A####&amp;quot; I tweaked the pattern to account for those IDs:&lt;br /&gt;
 select count(*) from genenametype where type = &amp;#039;ordered locus&amp;#039; and value ~ &amp;#039;SO_A?[0-9][0-9][0-9][0-9]&amp;#039;;&lt;br /&gt;
&lt;br /&gt;
In &amp;#039;&amp;#039;pgAdmin III&amp;#039;&amp;#039;, you can issue these queries by clicking on the pencil/SQL icon in the toolbar, typing the query into the &amp;#039;&amp;#039;SQL Editor&amp;#039;&amp;#039; tab, then clicking on the green triangular &amp;#039;&amp;#039;Play&amp;#039;&amp;#039; button to run.&lt;br /&gt;
&lt;br /&gt;
Are your results the same as reported by the TallyEngine?  Why or why not?&lt;br /&gt;
* Initially, we got a count of &amp;#039;&amp;#039;&amp;#039;4068&amp;#039;&amp;#039;&amp;#039; IDs using SQL, which differed from the &amp;#039;&amp;#039;&amp;#039;4196&amp;#039;&amp;#039;&amp;#039; IDs from TallyEngine.&lt;br /&gt;
* After tweaking the pattern to account for IDs with that extra &amp;#039;&amp;#039;A&amp;#039;&amp;#039;, we got a grand total of &amp;#039;&amp;#039;&amp;#039;4196&amp;#039;&amp;#039;&amp;#039; IDs, which matches with what TallyEngine gave us.&lt;br /&gt;
&lt;br /&gt;
==OriginalRowCounts Comparison==&lt;br /&gt;
&lt;br /&gt;
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.&lt;br /&gt;
&lt;br /&gt;
Benchmark .gdb file: [http://sourceforge.net/projects/xmlpipedb/files/V.%20cholerae%20Gene%20Database/V.%20cholerae%2020101022/Vc-Std_External_20101022.zip/download 2010 benchmark file]&lt;br /&gt;
&lt;br /&gt;
Copy the OriginalRowCounts table from the benchmark and new gdb and paste them here:&lt;br /&gt;
&lt;br /&gt;
[[Media:OriginalRowCounts.pdf | Original Row Counts Table]]&lt;br /&gt;
&lt;br /&gt;
[[Media:OriginalRowCounts2010.pdf | 2010 Benchmark Original Row Counts Table]]&lt;br /&gt;
&lt;br /&gt;
See Analysis section for more on the comparison and the discrepancy found because of this comparison.&lt;br /&gt;
&lt;br /&gt;
Note: Using Microsoft Access, we found &amp;#039;&amp;#039;7664&amp;#039;&amp;#039; IDs, which was actually double the number of IDs present because of duplicated IDs that did not have an underscore.&lt;br /&gt;
&lt;br /&gt;
==Visual Inspection==&lt;br /&gt;
&lt;br /&gt;
Perform visual inspection of individual tables to see if there are any problems.&lt;br /&gt;
&lt;br /&gt;
* Look at the Systems table. Is there a date in the Date field for all gene ID systems present in the database?&lt;br /&gt;
** No. For the current version, a good number of gene ID systems in the database do not have a value for the date field. Some systems that lack a date include: GenBank, UniGene, WormBase, and EcoGene.&lt;br /&gt;
* Open the UniProt, RefSeq, and OrderedLocusNames tables. Scroll down through the table. Do all of the IDs look like they take the correct form for that type of ID?&lt;br /&gt;
** For the UniProt table, the IDs start with either &amp;#039;&amp;#039;Q8&amp;#039;&amp;#039; or &amp;#039;&amp;#039;K4&amp;#039;&amp;#039; and have some string of four letters/numbers trailing that. For the RefSeq tables, the IDs have forms that start with either &amp;#039;&amp;#039;NP_&amp;#039;&amp;#039; or &amp;#039;&amp;#039;WP_&amp;#039;&amp;#039;, with the &amp;#039;&amp;#039;WP_&amp;#039;&amp;#039; forms having 9 numbers afterwards and the &amp;#039;&amp;#039;NP_&amp;#039;&amp;#039; forms having 6 numbers afterwards. For the OrderedLocusNames table, the IDs either start with &amp;lt;code&amp;gt;SO_&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;SO_A&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Note: &amp;#039;&amp;#039;n/a&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
==Analysis==&lt;br /&gt;
&lt;br /&gt;
Consolidating the counts of gene IDs from the various methods, I got:&lt;br /&gt;
&lt;br /&gt;
* 4196 IDs from Tally Engine&lt;br /&gt;
* &amp;#039;&amp;#039;4207&amp;#039;&amp;#039; IDs from xmlpipedb-match&lt;br /&gt;
 java -jar xmlpipedb-match-1.1.1.jar &amp;quot;SO_A?[0-9][0-9][0-9][0-9]&amp;quot; &amp;lt; SOneidensisUNIPROT&lt;br /&gt;
* 4196 IDs from PostgreSQL&lt;br /&gt;
 select count(*) from genenametype where type = &amp;#039;ordered locus&amp;#039; and value ~ &amp;#039;SO_A?[0-9][0-9][0-9][0-9]&amp;#039;;&lt;br /&gt;
* 4196 IDs from Microsoft Access (Noted that there were 4068 IDs in the form &amp;lt;code&amp;gt;SO_####&amp;lt;/code&amp;gt; and 128 IDs in the form &amp;lt;code&amp;gt;SO_A####&amp;lt;/code&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Notice that there is a small but significant discrepancy in that there seems to be eleven more IDs when using xmlpipedb-match. This is troubling because of the fact that the other three methods seemed to confirm a total count of 4196. So, I used Microsoft Excel to compare the list of gene IDs from the actual .gdb file and the list I got back from xmlpipedb-match. As you can see on [[Media:Comparing gdb and xmlpipedb-match.xlsx | this document]], there are 11 IDs in the xmlpipedb-match column that are not found in the gdb column. This discrepancy was further pointed out by the use of some &amp;lt;code&amp;gt;match&amp;lt;/code&amp;gt; functions to see where an ID was missing from either list. Below are the two match functions I used in the document:&lt;br /&gt;
 =MATCH(A2, B$2:B$4208, 0)&lt;br /&gt;
 =MATCH(B2, A$2:A$4208, 0)&lt;br /&gt;
Below are the eleven IDs in question:&lt;br /&gt;
 SO_3699&lt;br /&gt;
 SO_1312&lt;br /&gt;
 SO_4269&lt;br /&gt;
 SO_2875&lt;br /&gt;
 SO_4532&lt;br /&gt;
 SO_4580&lt;br /&gt;
 SO_2662&lt;br /&gt;
 SO_4423&lt;br /&gt;
 SO_3156&lt;br /&gt;
 SO_2967&lt;br /&gt;
 SO_2024&lt;br /&gt;
&lt;br /&gt;
None of these IDs are in our MOD.&lt;br /&gt;
We searched for these IDs in the microarray statistical analysis sheet and did not find the following IDs:&lt;br /&gt;
 SO_4269, SO_2875, SO_4580&lt;br /&gt;
&lt;br /&gt;
As of 12/01/15, we are waiting on input from Professor Dahlquist to see if we will adjust our GenMAPP Builder to account for these 11 IDs.&lt;br /&gt;
* A manual inspection was done on the [[Media:SOneidensisUNIPROT.gz | &amp;#039;&amp;#039;&amp;#039;SOneidensisUNIPROT&amp;#039;&amp;#039;&amp;#039;]] XML file and it looks like these 11 IDs are contained within entries that are missing a gene tag, which explains why the other methods only picked up 4196 IDs.&lt;br /&gt;
&lt;br /&gt;
==.gdb Use in GenMAPP==&lt;br /&gt;
&lt;br /&gt;
While the above sections perform quality assurance on the exported Gene Database via verifying ID counts, the &amp;quot;proof in the pudding&amp;quot; is to actually use the Gene Database in GenMAPP.  You can follow the instructions in [http://www.openwetware.org/wiki/BIOL367/F10:GenMAPP_and_MAPPFinder_Protocols Part 2 of the &amp;#039;&amp;#039;Vibrio cholerae&amp;#039;&amp;#039; Microarray Data Analysis] to verify that the Gene Database works in GenMAPP.  In this case, the emphasis is not on the findings of the data analysis itself, but that the Gene Database functions appropriate in GenMAPP.&lt;br /&gt;
&lt;br /&gt;
For assistance with using the GenMAPP program, the GenMAPP Help is very extensive.  To access it within GenMAPP, go to the menu item Help &amp;gt; GenMAPP Help and either browse or search for your topic of interest.&lt;br /&gt;
&lt;br /&gt;
Note: &amp;#039;&amp;#039;n/a&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
===Putting a gene on the MAPP using the GeneFinder window===&lt;br /&gt;
&lt;br /&gt;
* In the main GenMAPP Drafting Board window, left-click on the icon for &amp;quot;Gene&amp;quot; in the upper left corner of the window.  Click on the Drafting Board to place the Gene on the MAPP.  Now, right-click on the gene to access the GeneFinder window.  Type or paste a gene ID into the Gene ID field.  Select the appropriate Gene ID system from the drop-down menu and click the Search button.  For example, for &amp;#039;&amp;#039;Vibrio cholerae&amp;#039;&amp;#039;, you could search for the ID &amp;quot;VC0028&amp;quot;, which is an OrderedLocusNames ID.  Once the ID has been found, click the OK button to return to the Drafting Board window.&lt;br /&gt;
** For the Final Project, you will need to try a sample ID from each of the gene ID systems, not just OrderedLocusNames. &lt;br /&gt;
* Open the Backpage by left-clicking on the gene box on the Drafting Board to see if all of the cross-referenced IDs that are supposed to be there are there.&lt;br /&gt;
&lt;br /&gt;
Note: I tried out the search for a gene ID and was able to bring up the Backpage for that ID. The cross-referenced IDs that were supposed to show up were indeed on the page.&lt;br /&gt;
&lt;br /&gt;
===Creating an Expression Dataset in the Expression Dataset Manager===&lt;br /&gt;
&lt;br /&gt;
* How many of the IDs were imported out of the total IDs in the microarray dataset? How many exceptions were there? Look in the EX.txt file and look at the error codes for the records that were not imported into the Expression Dataset.  Do these represent IDs that were present in the UniProt XML, but were somehow not imported? or were they not present in the UniProt XML?&lt;br /&gt;
&lt;br /&gt;
Note: The Expression Dataset Manager reported that there were 121 errors during the conversion. From looking over the error codes, I found that all errors were of the form: &amp;lt;code&amp;gt;Gene not found in OrderedLocusNames or any related system.&amp;lt;/code&amp;gt; It seems that these IDs were in fact not present in the UniProt XML.&lt;br /&gt;
&lt;br /&gt;
===Coloring a MAPP with expression data===&lt;br /&gt;
&lt;br /&gt;
Note: I was able to successfully color the MAPP by coloring the increased and decreased Log Fold Changes. &lt;br /&gt;
&lt;br /&gt;
===Running MAPPFinder===&lt;br /&gt;
&lt;br /&gt;
Note: After the results had been calculated, a Gene Ontology browser opened showing my results. All of the Gene Ontology terms that have at least 3 genes measured and a p value of less than 0.05 were highlighted yellow. A term with a p value less than 0.05 is considered a &amp;quot;significant&amp;quot; result. Browsed through the tree to see the results.&lt;br /&gt;
&lt;br /&gt;
Documents produced from this run-through can be found here: [[Media:Week 9 genMAPP and MAPPFinder.zip | week 9 docs]]&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Jkuroda_Week_14&amp;diff=7106</id>
		<title>Jkuroda Week 14</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Jkuroda_Week_14&amp;diff=7106"/>
				<updated>2015-12-02T01:43:15Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: more log&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Log==&lt;br /&gt;
* In class on 12/01/15, I went through the rest of the Testing Report and did the SQL Queries section and manually checked the gene IDs in the .gdb file.&lt;br /&gt;
* After looking at the IDs, I found that some of them were in the form &amp;quot;SO_A?####&amp;quot;&lt;br /&gt;
* Upon discovering this, I went back and tweaked the pattern for the XMLPipeDB and SQL commands. I got a count of &amp;#039;&amp;#039;4207&amp;#039;&amp;#039; IDs for XMLPipeDB and &amp;#039;&amp;#039;4196&amp;#039;&amp;#039; for PostgreSQL.&lt;br /&gt;
* Did a visual inspection of individual tables in the gdb file.&lt;br /&gt;
* Conducted an analysis of the results collected and found that the xmlpipedb-match had 11 extra IDs because the UNIPROT XML file contained 11 entries with no gene tag.&lt;br /&gt;
* Ran an export using the new genMAPP Builder given to me by Mary.&lt;br /&gt;
** Started: 4:12pm&lt;br /&gt;
** Finished: 5:26pm&lt;br /&gt;
** Total time taken: 1 hour and 14 minutes&lt;br /&gt;
* Uploaded the resulting .gdb file: [[Media:So-Std 20151201special.zip | new .gdb file]]&lt;br /&gt;
&lt;br /&gt;
{{Template:Journal Template}}&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=File:So-Std_20151201special.zip&amp;diff=7105</id>
		<title>File:So-Std 20151201special.zip</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=File:So-Std_20151201special.zip&amp;diff=7105"/>
				<updated>2015-12-02T01:42:21Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: heavy metal haterZ&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;heavy metal haterZ&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Gene_Database_Testing_Report_-_Heavy_Metal_HaterZ&amp;diff=7102</id>
		<title>Gene Database Testing Report - Heavy Metal HaterZ</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Gene_Database_Testing_Report_-_Heavy_Metal_HaterZ&amp;diff=7102"/>
				<updated>2015-12-02T01:35:00Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: /* Analysis */ analysis for SO&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Heavy Metal HaterZ}}&lt;br /&gt;
==Export Information==&lt;br /&gt;
&lt;br /&gt;
Version of GenMAPP Builder: &amp;#039;&amp;#039;&amp;#039;3 build 5&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Computer on which export was run: &amp;#039;&amp;#039;&amp;#039;HP Compaq 8300 Elite SFF FC&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Postgres Database name: &amp;#039;&amp;#039;&amp;#039;S. Oneidensis&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
UniProt XML filename: [[Media:SOneidensisUNIPROT.gz | &amp;#039;&amp;#039;&amp;#039;SOneidensisUNIPROT&amp;#039;&amp;#039;&amp;#039;]]&lt;br /&gt;
* UniProt XML version: &amp;#039;&amp;#039;&amp;#039;UniProt release 2015_10 - October 14, 2015&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* [http://www.uniprot.org/uniprot/?query=taxonomy:211586 UniProt XML download link]&lt;br /&gt;
* Time taken to import: &amp;#039;&amp;#039;&amp;#039;3.18 minutes&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** Note: &amp;#039;&amp;#039;n/a&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
GO OBO-XML filename: [[Media:Go daily-termdb.obo-xml.gz | &amp;#039;&amp;#039;&amp;#039;go daily-termdb.obo-xml&amp;#039;&amp;#039;&amp;#039;]]&lt;br /&gt;
* GO OBO-XML version (The version information can be found in the file properties after the file downloaded from the [http://beta.geneontology.org/page/download-ontology GO Download page] has been unzipped): &lt;br /&gt;
* [http://geneontology.org/page/download-ontology#Legacy_Downloads GO OBO-XML download link]&lt;br /&gt;
* Time taken to import: &amp;#039;&amp;#039;&amp;#039;7.16 minutes&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Time taken to process: &amp;#039;&amp;#039;&amp;#039;4.27 minutes&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** Note: &amp;#039;&amp;#039;n/a&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
GOA filename: [[Media:ShewanellaOneidensisGOA.zip | &amp;#039;&amp;#039;&amp;#039;ShewanellaOneidensisGOA&amp;#039;&amp;#039;&amp;#039;]]&lt;br /&gt;
* GOA version (News on [http://www.ebi.ac.uk/GOA/ this page] records past releases; current information can be found in the Last modified field on the [ftp://ftp.ebi.ac.uk/pub/databases/GO/goa/proteomes/ FTP site]): &amp;#039;&amp;#039;&amp;#039;October 14, 2015 - GOA Proteome Sets 124&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* [ftp://ftp.ebi.ac.uk/pub/databases/GO/goa/proteomes/106.S_oneidensis.goa GOA download link]&lt;br /&gt;
* Time taken to import: &amp;#039;&amp;#039;&amp;#039;0.05 minutes&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** Note: &amp;#039;&amp;#039;n/a&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Name of .gdb file: [[Media:So-Std 20151119HMH.zip | &amp;#039;&amp;#039;&amp;#039;So-Std 20151119HMH.gdb&amp;#039;&amp;#039;&amp;#039;]]&lt;br /&gt;
* Time taken to export: &amp;#039;&amp;#039;&amp;#039;1 hour and 18 minutes&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** Start time: &amp;#039;&amp;#039;&amp;#039;3:48pm&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** End time: &amp;#039;&amp;#039;&amp;#039;5:06pm&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** Note: &amp;#039;&amp;#039;n/a&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
==TallyEngine==&lt;br /&gt;
&lt;br /&gt;
* Run the TallyEngine in GenMAPP Builder and record the number of records for UniProt and GO in the XML data and in the Postgres databases.&lt;br /&gt;
** Choose the menu item Tallies &amp;gt; Run XML and Database Tallies for UniProt and GO...&lt;br /&gt;
** Take a screenshot of the results.  Upload the image to the wiki and display it on this page.&lt;br /&gt;
** &amp;#039;&amp;#039;&amp;#039;4196&amp;#039;&amp;#039;&amp;#039; IDs&lt;br /&gt;
** For more information, [[How_Do_I_Count_Thee%3F_Let_Me_Count_The_Ways | see this page.]]&lt;br /&gt;
&lt;br /&gt;
[[Image:TallyEngineSOneidensis.PNG | center | 540px]]&lt;br /&gt;
&lt;br /&gt;
== Using XMLPipeDB match to Validate the XML Results from the TallyEngine==&lt;br /&gt;
&lt;br /&gt;
[[How_Do_I_Count_Thee%3F_Let_Me_Count_The_Ways | Follow the instructions found on this page to run XMLPipeDB match.]]&lt;br /&gt;
&lt;br /&gt;
Are your results the same as you got for the TallyEngine?  Why or why not?&lt;br /&gt;
* Initially, we got &amp;#039;&amp;#039;&amp;#039;4196&amp;#039;&amp;#039;&amp;#039; IDs for both XML and Postgres DB from TallyEngine but got &amp;#039;&amp;#039;&amp;#039;4079&amp;#039;&amp;#039;&amp;#039; IDs by using XMLPipeDB match. This result was from using the following command:&lt;br /&gt;
 java -jar xmlpipedb-match-1.1.1.jar &amp;quot;SO_[0-9][0-9][0-9][0-9]&amp;quot; &amp;lt; SOneidensisUNIPROT&lt;br /&gt;
&lt;br /&gt;
* After checking the .gdb file and looking through the Gene IDs, I found that some IDs were in the form &amp;quot;SO_A####&amp;quot; so I ran a new command accounting for this:&lt;br /&gt;
 java -jar xmlpipedb-match-1.1.1.jar &amp;quot;SO_A?[0-9][0-9][0-9][0-9]&amp;quot; &amp;lt; SOneidensisUNIPROT&lt;br /&gt;
* This gave a total number of &amp;#039;&amp;#039;&amp;#039;4207&amp;#039;&amp;#039;&amp;#039; IDs.&lt;br /&gt;
&lt;br /&gt;
== Using SQL Queries to Validate the PostgreSQL Database Results from the TallyEngine==&lt;br /&gt;
&lt;br /&gt;
For more information, [[How_Do_I_Count_Thee%3F_Let_Me_Count_The_Ways | see this page.]]&lt;br /&gt;
&lt;br /&gt;
You can also look for counts at the SQL level, using some variation of a &amp;#039;&amp;#039;select count(*)&amp;#039;&amp;#039; query.  This requires some knowledge of which table received what data.  Here&amp;amp;rsquo;s an initial tip: the &amp;#039;&amp;#039;gene/name&amp;#039;&amp;#039; tags in the XML file land in the &amp;#039;&amp;#039;genenametype&amp;#039;&amp;#039; table.  A query on this table counting values from this table that were marked as &amp;#039;&amp;#039;ordered locus&amp;#039;&amp;#039; in the XML file matching the pattern &amp;#039;&amp;#039;SO_[0-9][0-9][0-9][0-9]&amp;#039;&amp;#039; would look like this:&lt;br /&gt;
&lt;br /&gt;
 select count(*) from genenametype where type = &amp;#039;ordered locus&amp;#039; and value ~ &amp;#039;SO_[0-9][0-9][0-9][0-9]&amp;#039;;&lt;br /&gt;
* However, once I found that some IDs were in the form &amp;quot;SO_A####&amp;quot; I tweaked the pattern to account for those IDs:&lt;br /&gt;
 select count(*) from genenametype where type = &amp;#039;ordered locus&amp;#039; and value ~ &amp;#039;SO_A?[0-9][0-9][0-9][0-9]&amp;#039;;&lt;br /&gt;
&lt;br /&gt;
In &amp;#039;&amp;#039;pgAdmin III&amp;#039;&amp;#039;, you can issue these queries by clicking on the pencil/SQL icon in the toolbar, typing the query into the &amp;#039;&amp;#039;SQL Editor&amp;#039;&amp;#039; tab, then clicking on the green triangular &amp;#039;&amp;#039;Play&amp;#039;&amp;#039; button to run.&lt;br /&gt;
&lt;br /&gt;
Are your results the same as reported by the TallyEngine?  Why or why not?&lt;br /&gt;
* Initially, we got a count of &amp;#039;&amp;#039;&amp;#039;4068&amp;#039;&amp;#039;&amp;#039; IDs using SQL, which differed from the &amp;#039;&amp;#039;&amp;#039;4196&amp;#039;&amp;#039;&amp;#039; IDs from TallyEngine.&lt;br /&gt;
* After tweaking the pattern to account for IDs with that extra &amp;#039;&amp;#039;A&amp;#039;&amp;#039;, we got a grand total of &amp;#039;&amp;#039;&amp;#039;4196&amp;#039;&amp;#039;&amp;#039; IDs, which matches with what TallyEngine gave us.&lt;br /&gt;
&lt;br /&gt;
==OriginalRowCounts Comparison==&lt;br /&gt;
&lt;br /&gt;
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.&lt;br /&gt;
&lt;br /&gt;
Benchmark .gdb file: [http://sourceforge.net/projects/xmlpipedb/files/V.%20cholerae%20Gene%20Database/V.%20cholerae%2020101022/Vc-Std_External_20101022.zip/download 2010 benchmark file]&lt;br /&gt;
&lt;br /&gt;
Copy the OriginalRowCounts table from the benchmark and new gdb and paste them here:&lt;br /&gt;
&lt;br /&gt;
[[Media:OriginalRowCounts.pdf | Original Row Counts Table]]&lt;br /&gt;
&lt;br /&gt;
[[Media:OriginalRowCounts2010.pdf | 2010 Benchmark Original Row Counts Table]]&lt;br /&gt;
&lt;br /&gt;
See Analysis section for more on the comparison and the discrepancy found because of this comparison.&lt;br /&gt;
&lt;br /&gt;
Note: Using Microsoft Access, we found &amp;#039;&amp;#039;7664&amp;#039;&amp;#039; IDs, which was actually double the number of IDs present because of duplicated IDs that did not have an underscore.&lt;br /&gt;
&lt;br /&gt;
==Visual Inspection==&lt;br /&gt;
&lt;br /&gt;
Perform visual inspection of individual tables to see if there are any problems.&lt;br /&gt;
&lt;br /&gt;
* Look at the Systems table. Is there a date in the Date field for all gene ID systems present in the database?&lt;br /&gt;
** No. For the current version, a good number of gene ID systems in the database do not have a value for the date field. Some systems that lack a date include: GenBank, UniGene, WormBase, and EcoGene.&lt;br /&gt;
* Open the UniProt, RefSeq, and OrderedLocusNames tables. Scroll down through the table. Do all of the IDs look like they take the correct form for that type of ID?&lt;br /&gt;
** For the UniProt table, the IDs start with either &amp;#039;&amp;#039;Q8&amp;#039;&amp;#039; or &amp;#039;&amp;#039;K4&amp;#039;&amp;#039; and have some string of four letters/numbers trailing that. For the RefSeq tables, the IDs have forms that start with either &amp;#039;&amp;#039;NP_&amp;#039;&amp;#039; or &amp;#039;&amp;#039;WP_&amp;#039;&amp;#039;, with the &amp;#039;&amp;#039;WP_&amp;#039;&amp;#039; forms having 9 numbers afterwards and the &amp;#039;&amp;#039;NP_&amp;#039;&amp;#039; forms having 6 numbers afterwards. For the OrderedLocusNames table, the IDs either start with &amp;lt;code&amp;gt;SO_&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;SO_A&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Note: &amp;#039;&amp;#039;n/a&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
==Analysis==&lt;br /&gt;
&lt;br /&gt;
Consolidating the counts of gene IDs from the various methods, I got:&lt;br /&gt;
&lt;br /&gt;
* 4196 IDs from Tally Engine&lt;br /&gt;
* &amp;#039;&amp;#039;4207&amp;#039;&amp;#039; IDs from xmlpipedb-match&lt;br /&gt;
 java -jar xmlpipedb-match-1.1.1.jar &amp;quot;SO_A?[0-9][0-9][0-9][0-9]&amp;quot; &amp;lt; SOneidensisUNIPROT&lt;br /&gt;
* 4196 IDs from PostgreSQL&lt;br /&gt;
 select count(*) from genenametype where type = &amp;#039;ordered locus&amp;#039; and value ~ &amp;#039;SO_A?[0-9][0-9][0-9][0-9]&amp;#039;;&lt;br /&gt;
* 4196 IDs from Microsoft Access (Noted that there were 4068 IDs in the form &amp;lt;code&amp;gt;SO_####&amp;lt;/code&amp;gt; and 128 IDs in the form &amp;lt;code&amp;gt;SO_A####&amp;lt;/code&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Notice that there is a small but significant discrepancy in that there seems to be eleven more IDs when using xmlpipedb-match. This is troubling because of the fact that the other three methods seemed to confirm a total count of 4196. So, I used Microsoft Excel to compare the list of gene IDs from the actual .gdb file and the list I got back from xmlpipedb-match. As you can see on [[Media:Comparing gdb and xmlpipedb-match.xlsx | this document]], there are 11 IDs in the xmlpipedb-match column that are not found in the gdb column. This discrepancy was further pointed out by the use of some &amp;lt;code&amp;gt;match&amp;lt;/code&amp;gt; functions to see where an ID was missing from either list. Below are the two match functions I used in the document:&lt;br /&gt;
 =MATCH(A2, B$2:B$4208, 0)&lt;br /&gt;
 =MATCH(B2, A$2:A$4208, 0)&lt;br /&gt;
Below are the eleven IDs in question:&lt;br /&gt;
 SO_3699&lt;br /&gt;
 SO_1312&lt;br /&gt;
 SO_4269&lt;br /&gt;
 SO_2875&lt;br /&gt;
 SO_4532&lt;br /&gt;
 SO_4580&lt;br /&gt;
 SO_2662&lt;br /&gt;
 SO_4423&lt;br /&gt;
 SO_3156&lt;br /&gt;
 SO_2967&lt;br /&gt;
 SO_2024&lt;br /&gt;
&lt;br /&gt;
As of 12/01/15, we are waiting on input from Professor Dahlquist to see if we will adjust our GenMAPP Builder to account for these 11 IDs.&lt;br /&gt;
* A manual inspection was done on the [[Media:SOneidensisUNIPROT.gz | &amp;#039;&amp;#039;&amp;#039;SOneidensisUNIPROT&amp;#039;&amp;#039;&amp;#039;]] XML file and it looks like these 11 IDs are contained within entries that are missing a gene tag, which explains why the other methods only picked up 4196 IDs.&lt;br /&gt;
&lt;br /&gt;
==.gdb Use in GenMAPP==&lt;br /&gt;
&lt;br /&gt;
While the above sections perform quality assurance on the exported Gene Database via verifying ID counts, the &amp;quot;proof in the pudding&amp;quot; is to actually use the Gene Database in GenMAPP.  You can follow the instructions in [http://www.openwetware.org/wiki/BIOL367/F10:GenMAPP_and_MAPPFinder_Protocols Part 2 of the &amp;#039;&amp;#039;Vibrio cholerae&amp;#039;&amp;#039; Microarray Data Analysis] to verify that the Gene Database works in GenMAPP.  In this case, the emphasis is not on the findings of the data analysis itself, but that the Gene Database functions appropriate in GenMAPP.&lt;br /&gt;
&lt;br /&gt;
For assistance with using the GenMAPP program, the GenMAPP Help is very extensive.  To access it within GenMAPP, go to the menu item Help &amp;gt; GenMAPP Help and either browse or search for your topic of interest.&lt;br /&gt;
&lt;br /&gt;
Note: &amp;#039;&amp;#039;n/a&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
===Putting a gene on the MAPP using the GeneFinder window===&lt;br /&gt;
&lt;br /&gt;
* In the main GenMAPP Drafting Board window, left-click on the icon for &amp;quot;Gene&amp;quot; in the upper left corner of the window.  Click on the Drafting Board to place the Gene on the MAPP.  Now, right-click on the gene to access the GeneFinder window.  Type or paste a gene ID into the Gene ID field.  Select the appropriate Gene ID system from the drop-down menu and click the Search button.  For example, for &amp;#039;&amp;#039;Vibrio cholerae&amp;#039;&amp;#039;, you could search for the ID &amp;quot;VC0028&amp;quot;, which is an OrderedLocusNames ID.  Once the ID has been found, click the OK button to return to the Drafting Board window.&lt;br /&gt;
** For the Final Project, you will need to try a sample ID from each of the gene ID systems, not just OrderedLocusNames. &lt;br /&gt;
* Open the Backpage by left-clicking on the gene box on the Drafting Board to see if all of the cross-referenced IDs that are supposed to be there are there.&lt;br /&gt;
&lt;br /&gt;
Note: I tried out the search for a gene ID and was able to bring up the Backpage for that ID. The cross-referenced IDs that were supposed to show up were indeed on the page.&lt;br /&gt;
&lt;br /&gt;
===Creating an Expression Dataset in the Expression Dataset Manager===&lt;br /&gt;
&lt;br /&gt;
* How many of the IDs were imported out of the total IDs in the microarray dataset? How many exceptions were there? Look in the EX.txt file and look at the error codes for the records that were not imported into the Expression Dataset.  Do these represent IDs that were present in the UniProt XML, but were somehow not imported? or were they not present in the UniProt XML?&lt;br /&gt;
&lt;br /&gt;
Note: The Expression Dataset Manager reported that there were 121 errors during the conversion. From looking over the error codes, I found that all errors were of the form: &amp;lt;code&amp;gt;Gene not found in OrderedLocusNames or any related system.&amp;lt;/code&amp;gt; It seems that these IDs were in fact not present in the UniProt XML.&lt;br /&gt;
&lt;br /&gt;
===Coloring a MAPP with expression data===&lt;br /&gt;
&lt;br /&gt;
Note: I was able to successfully color the MAPP by coloring the increased and decreased Log Fold Changes. &lt;br /&gt;
&lt;br /&gt;
===Running MAPPFinder===&lt;br /&gt;
&lt;br /&gt;
Note: After the results had been calculated, a Gene Ontology browser opened showing my results. All of the Gene Ontology terms that have at least 3 genes measured and a p value of less than 0.05 were highlighted yellow. A term with a p value less than 0.05 is considered a &amp;quot;significant&amp;quot; result. Browsed through the tree to see the results.&lt;br /&gt;
&lt;br /&gt;
Documents produced from this run-through can be found here: [[Media:Week 9 genMAPP and MAPPFinder.zip | week 9 docs]]&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=File:Comparing_gdb_and_xmlpipedb-match.xlsx&amp;diff=7101</id>
		<title>File:Comparing gdb and xmlpipedb-match.xlsx</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=File:Comparing_gdb_and_xmlpipedb-match.xlsx&amp;diff=7101"/>
				<updated>2015-12-02T01:34:43Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: heavy metal haterZ&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;heavy metal haterZ&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Gene_Database_Testing_Report_-_Heavy_Metal_HaterZ&amp;diff=7059</id>
		<title>Gene Database Testing Report - Heavy Metal HaterZ</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Gene_Database_Testing_Report_-_Heavy_Metal_HaterZ&amp;diff=7059"/>
				<updated>2015-12-01T23:17:03Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: /* Visual Inspection */ visual&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Heavy Metal HaterZ}}&lt;br /&gt;
==Export Information==&lt;br /&gt;
&lt;br /&gt;
Version of GenMAPP Builder: &amp;#039;&amp;#039;&amp;#039;3 build 5&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Computer on which export was run: &amp;#039;&amp;#039;&amp;#039;HP Compaq 8300 Elite SFF FC&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Postgres Database name: &amp;#039;&amp;#039;&amp;#039;S. Oneidensis&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
UniProt XML filename: [[Media:SOneidensisUNIPROT.gz | &amp;#039;&amp;#039;&amp;#039;SOneidensisUNIPROT&amp;#039;&amp;#039;&amp;#039;]]&lt;br /&gt;
* UniProt XML version: &amp;#039;&amp;#039;&amp;#039;UniProt release 2015_10 - October 14, 2015&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* [http://www.uniprot.org/uniprot/?query=taxonomy:211586 UniProt XML download link]&lt;br /&gt;
* Time taken to import: &amp;#039;&amp;#039;&amp;#039;3.18 minutes&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** Note: &amp;#039;&amp;#039;n/a&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
GO OBO-XML filename: [[Media:Go daily-termdb.obo-xml.gz | &amp;#039;&amp;#039;&amp;#039;go daily-termdb.obo-xml&amp;#039;&amp;#039;&amp;#039;]]&lt;br /&gt;
* GO OBO-XML version (The version information can be found in the file properties after the file downloaded from the [http://beta.geneontology.org/page/download-ontology GO Download page] has been unzipped): &lt;br /&gt;
* [http://geneontology.org/page/download-ontology#Legacy_Downloads GO OBO-XML download link]&lt;br /&gt;
* Time taken to import: &amp;#039;&amp;#039;&amp;#039;7.16 minutes&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Time taken to process: &amp;#039;&amp;#039;&amp;#039;4.27 minutes&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** Note: &amp;#039;&amp;#039;n/a&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
GOA filename: [[Media:ShewanellaOneidensisGOA.zip | &amp;#039;&amp;#039;&amp;#039;ShewanellaOneidensisGOA&amp;#039;&amp;#039;&amp;#039;]]&lt;br /&gt;
* GOA version (News on [http://www.ebi.ac.uk/GOA/ this page] records past releases; current information can be found in the Last modified field on the [ftp://ftp.ebi.ac.uk/pub/databases/GO/goa/proteomes/ FTP site]): &amp;#039;&amp;#039;&amp;#039;October 14, 2015 - GOA Proteome Sets 124&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* [ftp://ftp.ebi.ac.uk/pub/databases/GO/goa/proteomes/106.S_oneidensis.goa GOA download link]&lt;br /&gt;
* Time taken to import: &amp;#039;&amp;#039;&amp;#039;0.05 minutes&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** Note: &amp;#039;&amp;#039;n/a&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Name of .gdb file: [[Media:So-Std 20151119HMH.zip | &amp;#039;&amp;#039;&amp;#039;So-Std 20151119HMH.gdb&amp;#039;&amp;#039;&amp;#039;]]&lt;br /&gt;
* Time taken to export: &amp;#039;&amp;#039;&amp;#039;1 hour and 18 minutes&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** Start time: &amp;#039;&amp;#039;&amp;#039;3:48pm&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** End time: &amp;#039;&amp;#039;&amp;#039;5:06pm&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** Note: &amp;#039;&amp;#039;n/a&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
==TallyEngine==&lt;br /&gt;
&lt;br /&gt;
* Run the TallyEngine in GenMAPP Builder and record the number of records for UniProt and GO in the XML data and in the Postgres databases.&lt;br /&gt;
** Choose the menu item Tallies &amp;gt; Run XML and Database Tallies for UniProt and GO...&lt;br /&gt;
** Take a screenshot of the results.  Upload the image to the wiki and display it on this page.&lt;br /&gt;
** &amp;#039;&amp;#039;&amp;#039;4196&amp;#039;&amp;#039;&amp;#039; IDs&lt;br /&gt;
** For more information, [[How_Do_I_Count_Thee%3F_Let_Me_Count_The_Ways | see this page.]]&lt;br /&gt;
&lt;br /&gt;
[[Image:TallyEngineSOneidensis.PNG | center | 540px]]&lt;br /&gt;
&lt;br /&gt;
== Using XMLPipeDB match to Validate the XML Results from the TallyEngine==&lt;br /&gt;
&lt;br /&gt;
[[How_Do_I_Count_Thee%3F_Let_Me_Count_The_Ways | Follow the instructions found on this page to run XMLPipeDB match.]]&lt;br /&gt;
&lt;br /&gt;
Are your results the same as you got for the TallyEngine?  Why or why not?&lt;br /&gt;
* Initially, we got &amp;#039;&amp;#039;&amp;#039;4196&amp;#039;&amp;#039;&amp;#039; IDs for both XML and Postgres DB from TallyEngine but got &amp;#039;&amp;#039;&amp;#039;4079&amp;#039;&amp;#039;&amp;#039; IDs by using XMLPipeDB match. This result was from using the following command:&lt;br /&gt;
 java -jar xmlpipedb-match-1.1.1.jar &amp;quot;SO_[0-9][0-9][0-9][0-9]&amp;quot; &amp;lt; SOneidensisUNIPROT&lt;br /&gt;
&lt;br /&gt;
* After checking the .gdb file and looking through the Gene IDs, I found that some IDs were in the form &amp;quot;SO_A####&amp;quot; so I ran a new command accounting for this:&lt;br /&gt;
 java -jar xmlpipedb-match-1.1.1.jar &amp;quot;SO_A?[0-9][0-9][0-9][0-9]&amp;quot; &amp;lt; SOneidensisUNIPROT&lt;br /&gt;
* This gave a total number of &amp;#039;&amp;#039;&amp;#039;4207&amp;#039;&amp;#039;&amp;#039; IDs.&lt;br /&gt;
&lt;br /&gt;
== Using SQL Queries to Validate the PostgreSQL Database Results from the TallyEngine==&lt;br /&gt;
&lt;br /&gt;
For more information, [[How_Do_I_Count_Thee%3F_Let_Me_Count_The_Ways | see this page.]]&lt;br /&gt;
&lt;br /&gt;
You can also look for counts at the SQL level, using some variation of a &amp;#039;&amp;#039;select count(*)&amp;#039;&amp;#039; query.  This requires some knowledge of which table received what data.  Here&amp;amp;rsquo;s an initial tip: the &amp;#039;&amp;#039;gene/name&amp;#039;&amp;#039; tags in the XML file land in the &amp;#039;&amp;#039;genenametype&amp;#039;&amp;#039; table.  A query on this table counting values from this table that were marked as &amp;#039;&amp;#039;ordered locus&amp;#039;&amp;#039; in the XML file matching the pattern &amp;#039;&amp;#039;SO_[0-9][0-9][0-9][0-9]&amp;#039;&amp;#039; would look like this:&lt;br /&gt;
&lt;br /&gt;
 select count(*) from genenametype where type = &amp;#039;ordered locus&amp;#039; and value ~ &amp;#039;SO_[0-9][0-9][0-9][0-9]&amp;#039;;&lt;br /&gt;
* However, once I found that some IDs were in the form &amp;quot;SO_A####&amp;quot; I tweaked the pattern to account for those IDs:&lt;br /&gt;
 select count(*) from genenametype where type = &amp;#039;ordered locus&amp;#039; and value ~ &amp;#039;SO_A?[0-9][0-9][0-9][0-9]&amp;#039;;&lt;br /&gt;
&lt;br /&gt;
In &amp;#039;&amp;#039;pgAdmin III&amp;#039;&amp;#039;, you can issue these queries by clicking on the pencil/SQL icon in the toolbar, typing the query into the &amp;#039;&amp;#039;SQL Editor&amp;#039;&amp;#039; tab, then clicking on the green triangular &amp;#039;&amp;#039;Play&amp;#039;&amp;#039; button to run.&lt;br /&gt;
&lt;br /&gt;
Are your results the same as reported by the TallyEngine?  Why or why not?&lt;br /&gt;
* Initially, we got a count of &amp;#039;&amp;#039;&amp;#039;4068&amp;#039;&amp;#039;&amp;#039; IDs using SQL, which differed from the &amp;#039;&amp;#039;&amp;#039;4196&amp;#039;&amp;#039;&amp;#039; IDs from TallyEngine.&lt;br /&gt;
* After tweaking the pattern to account for IDs with that extra &amp;#039;&amp;#039;A&amp;#039;&amp;#039;, we got a grand total of &amp;#039;&amp;#039;&amp;#039;4196&amp;#039;&amp;#039;&amp;#039; IDs, which matches with what TallyEngine gave us.&lt;br /&gt;
&lt;br /&gt;
==OriginalRowCounts Comparison==&lt;br /&gt;
&lt;br /&gt;
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.&lt;br /&gt;
&lt;br /&gt;
Benchmark .gdb file: [http://sourceforge.net/projects/xmlpipedb/files/V.%20cholerae%20Gene%20Database/V.%20cholerae%2020101022/Vc-Std_External_20101022.zip/download 2010 benchmark file]&lt;br /&gt;
&lt;br /&gt;
Copy the OriginalRowCounts table from the benchmark and new gdb and paste them here:&lt;br /&gt;
&lt;br /&gt;
[[Media:OriginalRowCounts.pdf | Original Row Counts Table]]&lt;br /&gt;
&lt;br /&gt;
[[Media:OriginalRowCounts2010.pdf | 2010 Benchmark Original Row Counts Table]]&lt;br /&gt;
&lt;br /&gt;
See Analysis section for more on the comparison and the discrepancy found because of this comparison.&lt;br /&gt;
&lt;br /&gt;
Note: Using Microsoft Access, we found &amp;#039;&amp;#039;7664&amp;#039;&amp;#039; IDs, which was actually double the number of IDs present because of duplicated IDs that did not have an underscore.&lt;br /&gt;
&lt;br /&gt;
==Visual Inspection==&lt;br /&gt;
&lt;br /&gt;
Perform visual inspection of individual tables to see if there are any problems.&lt;br /&gt;
&lt;br /&gt;
* Look at the Systems table. Is there a date in the Date field for all gene ID systems present in the database?&lt;br /&gt;
** No. For the current version, a good number of gene ID systems in the database do not have a value for the date field. Some systems that lack a date include: GenBank, UniGene, WormBase, and EcoGene.&lt;br /&gt;
* Open the UniProt, RefSeq, and OrderedLocusNames tables. Scroll down through the table. Do all of the IDs look like they take the correct form for that type of ID?&lt;br /&gt;
** For the UniProt table, the IDs start with either &amp;#039;&amp;#039;Q8&amp;#039;&amp;#039; or &amp;#039;&amp;#039;K4&amp;#039;&amp;#039; and have some string of four letters/numbers trailing that. For the RefSeq tables, the IDs have forms that start with either &amp;#039;&amp;#039;NP_&amp;#039;&amp;#039; or &amp;#039;&amp;#039;WP_&amp;#039;&amp;#039;, with the &amp;#039;&amp;#039;WP_&amp;#039;&amp;#039; forms having 9 numbers afterwards and the &amp;#039;&amp;#039;NP_&amp;#039;&amp;#039; forms having 6 numbers afterwards. For the OrderedLocusNames table, the IDs either start with &amp;lt;code&amp;gt;SO_&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;SO_A&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Note: &amp;#039;&amp;#039;n/a&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
==Analysis==&lt;br /&gt;
&lt;br /&gt;
Consolidating the counts of gene IDs from the various methods, I got:&lt;br /&gt;
&lt;br /&gt;
* 3831 IDs from Tally Engine&lt;br /&gt;
* 3831 IDs from xmlpipedb-match&lt;br /&gt;
 java -jar xmlpipedb-match-1.1.1.jar &amp;quot;VC_A?[0-9][0-9][0-9][0-9]&amp;quot; &amp;lt; uniprot-organism%3A243277.xml&lt;br /&gt;
* 3831 IDs from PostgreSQL&lt;br /&gt;
 select count(*) from genenametype where type = &amp;#039;ordered locus&amp;#039; and value ~ &amp;#039;VC_A?[0-9][0-9][0-9][0-9]&amp;#039;;&lt;br /&gt;
* &amp;#039;&amp;#039;3832&amp;#039;&amp;#039; IDs from Microsoft Access (counting the IDs with an underscore)&lt;br /&gt;
&lt;br /&gt;
Notice that there is a small but significant discrepancy in that there seems to be one more ID when we used Microsoft Access. This is troubling because of the fact that the other three methods seemed to confirm a total count of 3831. So, I used Microsoft Excel to compare the list of gene IDs from the actual .gdb file and the list I got back from PostgreSQL. As you can see on [[Media:Comparing gdb and postgresql.xlsx | this document]], line 64 shows us that the PostgreSQL list has an ID input of &amp;quot;VC_1738/VC_1739.&amp;quot; This discrepancy was further pointed out by the use of some &amp;lt;code&amp;gt;match&amp;lt;/code&amp;gt; functions to see where an ID was missing from either list. This discrepancy accounts for the issue of the missing ID, because of the fact that two IDs were apparently joined with a slash. Below are the two match functions I used in the document:&lt;br /&gt;
 =MATCH(A2, B$2:B$7665, 0)&lt;br /&gt;
 =MATCH(B2, A$2:A$7665, 0)&lt;br /&gt;
&lt;br /&gt;
==.gdb Use in GenMAPP==&lt;br /&gt;
&lt;br /&gt;
While the above sections perform quality assurance on the exported Gene Database via verifying ID counts, the &amp;quot;proof in the pudding&amp;quot; is to actually use the Gene Database in GenMAPP.  You can follow the instructions in [http://www.openwetware.org/wiki/BIOL367/F10:GenMAPP_and_MAPPFinder_Protocols Part 2 of the &amp;#039;&amp;#039;Vibrio cholerae&amp;#039;&amp;#039; Microarray Data Analysis] to verify that the Gene Database works in GenMAPP.  In this case, the emphasis is not on the findings of the data analysis itself, but that the Gene Database functions appropriate in GenMAPP.&lt;br /&gt;
&lt;br /&gt;
For assistance with using the GenMAPP program, the GenMAPP Help is very extensive.  To access it within GenMAPP, go to the menu item Help &amp;gt; GenMAPP Help and either browse or search for your topic of interest.&lt;br /&gt;
&lt;br /&gt;
Note: &amp;#039;&amp;#039;n/a&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
===Putting a gene on the MAPP using the GeneFinder window===&lt;br /&gt;
&lt;br /&gt;
* In the main GenMAPP Drafting Board window, left-click on the icon for &amp;quot;Gene&amp;quot; in the upper left corner of the window.  Click on the Drafting Board to place the Gene on the MAPP.  Now, right-click on the gene to access the GeneFinder window.  Type or paste a gene ID into the Gene ID field.  Select the appropriate Gene ID system from the drop-down menu and click the Search button.  For example, for &amp;#039;&amp;#039;Vibrio cholerae&amp;#039;&amp;#039;, you could search for the ID &amp;quot;VC0028&amp;quot;, which is an OrderedLocusNames ID.  Once the ID has been found, click the OK button to return to the Drafting Board window.&lt;br /&gt;
** For the Final Project, you will need to try a sample ID from each of the gene ID systems, not just OrderedLocusNames. &lt;br /&gt;
* Open the Backpage by left-clicking on the gene box on the Drafting Board to see if all of the cross-referenced IDs that are supposed to be there are there.&lt;br /&gt;
&lt;br /&gt;
Note: I tried out the search for a gene ID and was able to bring up the Backpage for that ID. The cross-referenced IDs that were supposed to show up were indeed on the page.&lt;br /&gt;
&lt;br /&gt;
===Creating an Expression Dataset in the Expression Dataset Manager===&lt;br /&gt;
&lt;br /&gt;
* How many of the IDs were imported out of the total IDs in the microarray dataset? How many exceptions were there? Look in the EX.txt file and look at the error codes for the records that were not imported into the Expression Dataset.  Do these represent IDs that were present in the UniProt XML, but were somehow not imported? or were they not present in the UniProt XML?&lt;br /&gt;
&lt;br /&gt;
Note: The Expression Dataset Manager reported that there were 121 errors during the conversion. From looking over the error codes, I found that all errors were of the form: &amp;lt;code&amp;gt;Gene not found in OrderedLocusNames or any related system.&amp;lt;/code&amp;gt; It seems that these IDs were in fact not present in the UniProt XML.&lt;br /&gt;
&lt;br /&gt;
===Coloring a MAPP with expression data===&lt;br /&gt;
&lt;br /&gt;
Note: I was able to successfully color the MAPP by coloring the increased and decreased Log Fold Changes. &lt;br /&gt;
&lt;br /&gt;
===Running MAPPFinder===&lt;br /&gt;
&lt;br /&gt;
Note: After the results had been calculated, a Gene Ontology browser opened showing my results. All of the Gene Ontology terms that have at least 3 genes measured and a p value of less than 0.05 were highlighted yellow. A term with a p value less than 0.05 is considered a &amp;quot;significant&amp;quot; result. Browsed through the tree to see the results.&lt;br /&gt;
&lt;br /&gt;
Documents produced from this run-through can be found here: [[Media:Week 9 genMAPP and MAPPFinder.zip | week 9 docs]]&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Jkuroda_Week_14&amp;diff=7057</id>
		<title>Jkuroda Week 14</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Jkuroda_Week_14&amp;diff=7057"/>
				<updated>2015-12-01T23:11:10Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: logging&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Log==&lt;br /&gt;
* In class on 12/01/15, I went through the rest of the Testing Report and did the SQL Queries section and manually checked the gene IDs in the .gdb file.&lt;br /&gt;
* After looking at the IDs, I found that some of them were in the form &amp;quot;SO_A?####&amp;quot;&lt;br /&gt;
* Upon discovering this, I went back and tweaked the pattern for the XMLPipeDB and SQL commands. I got a count of &amp;#039;&amp;#039;4207&amp;#039;&amp;#039; IDs for XMLPipeDB and &amp;#039;&amp;#039;4196&amp;#039;&amp;#039; for PostgreSQL.&lt;br /&gt;
&lt;br /&gt;
{{Template:Journal Template}}&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	<entry>
		<id>https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Gene_Database_Testing_Report_-_Heavy_Metal_HaterZ&amp;diff=7055</id>
		<title>Gene Database Testing Report - Heavy Metal HaterZ</title>
		<link rel="alternate" type="text/html" href="https://xmlpipedb.lmucs.io/biodb/fall2015/index.php?title=Gene_Database_Testing_Report_-_Heavy_Metal_HaterZ&amp;diff=7055"/>
				<updated>2015-12-01T23:07:44Z</updated>
		
		<summary type="html">&lt;p&gt;Jkuroda: /* Using SQL Queries to Validate the PostgreSQL Database Results from the TallyEngine */ tweaking&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Heavy Metal HaterZ}}&lt;br /&gt;
==Export Information==&lt;br /&gt;
&lt;br /&gt;
Version of GenMAPP Builder: &amp;#039;&amp;#039;&amp;#039;3 build 5&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Computer on which export was run: &amp;#039;&amp;#039;&amp;#039;HP Compaq 8300 Elite SFF FC&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Postgres Database name: &amp;#039;&amp;#039;&amp;#039;S. Oneidensis&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
UniProt XML filename: [[Media:SOneidensisUNIPROT.gz | &amp;#039;&amp;#039;&amp;#039;SOneidensisUNIPROT&amp;#039;&amp;#039;&amp;#039;]]&lt;br /&gt;
* UniProt XML version: &amp;#039;&amp;#039;&amp;#039;UniProt release 2015_10 - October 14, 2015&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* [http://www.uniprot.org/uniprot/?query=taxonomy:211586 UniProt XML download link]&lt;br /&gt;
* Time taken to import: &amp;#039;&amp;#039;&amp;#039;3.18 minutes&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** Note: &amp;#039;&amp;#039;n/a&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
GO OBO-XML filename: [[Media:Go daily-termdb.obo-xml.gz | &amp;#039;&amp;#039;&amp;#039;go daily-termdb.obo-xml&amp;#039;&amp;#039;&amp;#039;]]&lt;br /&gt;
* GO OBO-XML version (The version information can be found in the file properties after the file downloaded from the [http://beta.geneontology.org/page/download-ontology GO Download page] has been unzipped): &lt;br /&gt;
* [http://geneontology.org/page/download-ontology#Legacy_Downloads GO OBO-XML download link]&lt;br /&gt;
* Time taken to import: &amp;#039;&amp;#039;&amp;#039;7.16 minutes&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* Time taken to process: &amp;#039;&amp;#039;&amp;#039;4.27 minutes&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** Note: &amp;#039;&amp;#039;n/a&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
GOA filename: [[Media:ShewanellaOneidensisGOA.zip | &amp;#039;&amp;#039;&amp;#039;ShewanellaOneidensisGOA&amp;#039;&amp;#039;&amp;#039;]]&lt;br /&gt;
* GOA version (News on [http://www.ebi.ac.uk/GOA/ this page] records past releases; current information can be found in the Last modified field on the [ftp://ftp.ebi.ac.uk/pub/databases/GO/goa/proteomes/ FTP site]): &amp;#039;&amp;#039;&amp;#039;October 14, 2015 - GOA Proteome Sets 124&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
* [ftp://ftp.ebi.ac.uk/pub/databases/GO/goa/proteomes/106.S_oneidensis.goa GOA download link]&lt;br /&gt;
* Time taken to import: &amp;#039;&amp;#039;&amp;#039;0.05 minutes&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** Note: &amp;#039;&amp;#039;n/a&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Name of .gdb file: [[Media:So-Std 20151119HMH.zip | &amp;#039;&amp;#039;&amp;#039;So-Std 20151119HMH.gdb&amp;#039;&amp;#039;&amp;#039;]]&lt;br /&gt;
* Time taken to export: &amp;#039;&amp;#039;&amp;#039;1 hour and 18 minutes&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** Start time: &amp;#039;&amp;#039;&amp;#039;3:48pm&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** End time: &amp;#039;&amp;#039;&amp;#039;5:06pm&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
** Note: &amp;#039;&amp;#039;n/a&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
==TallyEngine==&lt;br /&gt;
&lt;br /&gt;
* Run the TallyEngine in GenMAPP Builder and record the number of records for UniProt and GO in the XML data and in the Postgres databases.&lt;br /&gt;
** Choose the menu item Tallies &amp;gt; Run XML and Database Tallies for UniProt and GO...&lt;br /&gt;
** Take a screenshot of the results.  Upload the image to the wiki and display it on this page.&lt;br /&gt;
** &amp;#039;&amp;#039;&amp;#039;4196&amp;#039;&amp;#039;&amp;#039; IDs&lt;br /&gt;
** For more information, [[How_Do_I_Count_Thee%3F_Let_Me_Count_The_Ways | see this page.]]&lt;br /&gt;
&lt;br /&gt;
[[Image:TallyEngineSOneidensis.PNG | center | 540px]]&lt;br /&gt;
&lt;br /&gt;
== Using XMLPipeDB match to Validate the XML Results from the TallyEngine==&lt;br /&gt;
&lt;br /&gt;
[[How_Do_I_Count_Thee%3F_Let_Me_Count_The_Ways | Follow the instructions found on this page to run XMLPipeDB match.]]&lt;br /&gt;
&lt;br /&gt;
Are your results the same as you got for the TallyEngine?  Why or why not?&lt;br /&gt;
* Initially, we got &amp;#039;&amp;#039;&amp;#039;4196&amp;#039;&amp;#039;&amp;#039; IDs for both XML and Postgres DB from TallyEngine but got &amp;#039;&amp;#039;&amp;#039;4079&amp;#039;&amp;#039;&amp;#039; IDs by using XMLPipeDB match. This result was from using the following command:&lt;br /&gt;
 java -jar xmlpipedb-match-1.1.1.jar &amp;quot;SO_[0-9][0-9][0-9][0-9]&amp;quot; &amp;lt; SOneidensisUNIPROT&lt;br /&gt;
&lt;br /&gt;
* After checking the .gdb file and looking through the Gene IDs, I found that some IDs were in the form &amp;quot;SO_A####&amp;quot; so I ran a new command accounting for this:&lt;br /&gt;
 java -jar xmlpipedb-match-1.1.1.jar &amp;quot;SO_A?[0-9][0-9][0-9][0-9]&amp;quot; &amp;lt; SOneidensisUNIPROT&lt;br /&gt;
* This gave a total number of &amp;#039;&amp;#039;&amp;#039;4207&amp;#039;&amp;#039;&amp;#039; IDs.&lt;br /&gt;
&lt;br /&gt;
== Using SQL Queries to Validate the PostgreSQL Database Results from the TallyEngine==&lt;br /&gt;
&lt;br /&gt;
For more information, [[How_Do_I_Count_Thee%3F_Let_Me_Count_The_Ways | see this page.]]&lt;br /&gt;
&lt;br /&gt;
You can also look for counts at the SQL level, using some variation of a &amp;#039;&amp;#039;select count(*)&amp;#039;&amp;#039; query.  This requires some knowledge of which table received what data.  Here&amp;amp;rsquo;s an initial tip: the &amp;#039;&amp;#039;gene/name&amp;#039;&amp;#039; tags in the XML file land in the &amp;#039;&amp;#039;genenametype&amp;#039;&amp;#039; table.  A query on this table counting values from this table that were marked as &amp;#039;&amp;#039;ordered locus&amp;#039;&amp;#039; in the XML file matching the pattern &amp;#039;&amp;#039;SO_[0-9][0-9][0-9][0-9]&amp;#039;&amp;#039; would look like this:&lt;br /&gt;
&lt;br /&gt;
 select count(*) from genenametype where type = &amp;#039;ordered locus&amp;#039; and value ~ &amp;#039;SO_[0-9][0-9][0-9][0-9]&amp;#039;;&lt;br /&gt;
* However, once I found that some IDs were in the form &amp;quot;SO_A####&amp;quot; I tweaked the pattern to account for those IDs:&lt;br /&gt;
 select count(*) from genenametype where type = &amp;#039;ordered locus&amp;#039; and value ~ &amp;#039;SO_A?[0-9][0-9][0-9][0-9]&amp;#039;;&lt;br /&gt;
&lt;br /&gt;
In &amp;#039;&amp;#039;pgAdmin III&amp;#039;&amp;#039;, you can issue these queries by clicking on the pencil/SQL icon in the toolbar, typing the query into the &amp;#039;&amp;#039;SQL Editor&amp;#039;&amp;#039; tab, then clicking on the green triangular &amp;#039;&amp;#039;Play&amp;#039;&amp;#039; button to run.&lt;br /&gt;
&lt;br /&gt;
Are your results the same as reported by the TallyEngine?  Why or why not?&lt;br /&gt;
* Initially, we got a count of &amp;#039;&amp;#039;&amp;#039;4068&amp;#039;&amp;#039;&amp;#039; IDs using SQL, which differed from the &amp;#039;&amp;#039;&amp;#039;4196&amp;#039;&amp;#039;&amp;#039; IDs from TallyEngine.&lt;br /&gt;
* After tweaking the pattern to account for IDs with that extra &amp;#039;&amp;#039;A&amp;#039;&amp;#039;, we got a grand total of &amp;#039;&amp;#039;&amp;#039;4196&amp;#039;&amp;#039;&amp;#039; IDs, which matches with what TallyEngine gave us.&lt;br /&gt;
&lt;br /&gt;
==OriginalRowCounts Comparison==&lt;br /&gt;
&lt;br /&gt;
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.&lt;br /&gt;
&lt;br /&gt;
Benchmark .gdb file: [http://sourceforge.net/projects/xmlpipedb/files/V.%20cholerae%20Gene%20Database/V.%20cholerae%2020101022/Vc-Std_External_20101022.zip/download 2010 benchmark file]&lt;br /&gt;
&lt;br /&gt;
Copy the OriginalRowCounts table from the benchmark and new gdb and paste them here:&lt;br /&gt;
&lt;br /&gt;
[[Media:OriginalRowCounts.pdf | Original Row Counts Table]]&lt;br /&gt;
&lt;br /&gt;
[[Media:OriginalRowCounts2010.pdf | 2010 Benchmark Original Row Counts Table]]&lt;br /&gt;
&lt;br /&gt;
See Analysis section for more on the comparison and the discrepancy found because of this comparison.&lt;br /&gt;
&lt;br /&gt;
Note: Using Microsoft Access, we found &amp;#039;&amp;#039;7664&amp;#039;&amp;#039; IDs, which was actually double the number of IDs present because of duplicated IDs that did not have an underscore.&lt;br /&gt;
&lt;br /&gt;
==Visual Inspection==&lt;br /&gt;
&lt;br /&gt;
Perform visual inspection of individual tables to see if there are any problems.&lt;br /&gt;
&lt;br /&gt;
* Look at the Systems table. Is there a date in the Date field for all gene ID systems present in the database?&lt;br /&gt;
** No. For the current version, a good number of gene ID systems in the database do not have a value for the date field. Some systems that lack a date include: GenBank, UniGene, WormBase, and EcoGene.&lt;br /&gt;
** In the 2010 version, there are also missing dates. The systems listed above do not have a date in this version either.&lt;br /&gt;
* Open the UniProt, RefSeq, and OrderedLocusNames tables. Scroll down through the table. Do all of the IDs look like they take the correct form for that type of ID?&lt;br /&gt;
** For the UniProt tables, both versions seem have ID forms where most start with Q9. For the RefSeq tables, the 2010 version has ID forms that start with NP but my version has forms that start with either NP or WP. For the OrderedLocusNames tables, both versions seem to have the same ID form that either starts with &amp;lt;code&amp;gt;VC&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;VC_A&amp;lt;/code&amp;gt;. Notably, both versions have duplicates because of the removal of the underscore from the gene ID.&lt;br /&gt;
&lt;br /&gt;
Note: &amp;#039;&amp;#039;n/a&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
==Analysis==&lt;br /&gt;
&lt;br /&gt;
Consolidating the counts of gene IDs from the various methods, I got:&lt;br /&gt;
&lt;br /&gt;
* 3831 IDs from Tally Engine&lt;br /&gt;
* 3831 IDs from xmlpipedb-match&lt;br /&gt;
 java -jar xmlpipedb-match-1.1.1.jar &amp;quot;VC_A?[0-9][0-9][0-9][0-9]&amp;quot; &amp;lt; uniprot-organism%3A243277.xml&lt;br /&gt;
* 3831 IDs from PostgreSQL&lt;br /&gt;
 select count(*) from genenametype where type = &amp;#039;ordered locus&amp;#039; and value ~ &amp;#039;VC_A?[0-9][0-9][0-9][0-9]&amp;#039;;&lt;br /&gt;
* &amp;#039;&amp;#039;3832&amp;#039;&amp;#039; IDs from Microsoft Access (counting the IDs with an underscore)&lt;br /&gt;
&lt;br /&gt;
Notice that there is a small but significant discrepancy in that there seems to be one more ID when we used Microsoft Access. This is troubling because of the fact that the other three methods seemed to confirm a total count of 3831. So, I used Microsoft Excel to compare the list of gene IDs from the actual .gdb file and the list I got back from PostgreSQL. As you can see on [[Media:Comparing gdb and postgresql.xlsx | this document]], line 64 shows us that the PostgreSQL list has an ID input of &amp;quot;VC_1738/VC_1739.&amp;quot; This discrepancy was further pointed out by the use of some &amp;lt;code&amp;gt;match&amp;lt;/code&amp;gt; functions to see where an ID was missing from either list. This discrepancy accounts for the issue of the missing ID, because of the fact that two IDs were apparently joined with a slash. Below are the two match functions I used in the document:&lt;br /&gt;
 =MATCH(A2, B$2:B$7665, 0)&lt;br /&gt;
 =MATCH(B2, A$2:A$7665, 0)&lt;br /&gt;
&lt;br /&gt;
==.gdb Use in GenMAPP==&lt;br /&gt;
&lt;br /&gt;
While the above sections perform quality assurance on the exported Gene Database via verifying ID counts, the &amp;quot;proof in the pudding&amp;quot; is to actually use the Gene Database in GenMAPP.  You can follow the instructions in [http://www.openwetware.org/wiki/BIOL367/F10:GenMAPP_and_MAPPFinder_Protocols Part 2 of the &amp;#039;&amp;#039;Vibrio cholerae&amp;#039;&amp;#039; Microarray Data Analysis] to verify that the Gene Database works in GenMAPP.  In this case, the emphasis is not on the findings of the data analysis itself, but that the Gene Database functions appropriate in GenMAPP.&lt;br /&gt;
&lt;br /&gt;
For assistance with using the GenMAPP program, the GenMAPP Help is very extensive.  To access it within GenMAPP, go to the menu item Help &amp;gt; GenMAPP Help and either browse or search for your topic of interest.&lt;br /&gt;
&lt;br /&gt;
Note: &amp;#039;&amp;#039;n/a&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
===Putting a gene on the MAPP using the GeneFinder window===&lt;br /&gt;
&lt;br /&gt;
* In the main GenMAPP Drafting Board window, left-click on the icon for &amp;quot;Gene&amp;quot; in the upper left corner of the window.  Click on the Drafting Board to place the Gene on the MAPP.  Now, right-click on the gene to access the GeneFinder window.  Type or paste a gene ID into the Gene ID field.  Select the appropriate Gene ID system from the drop-down menu and click the Search button.  For example, for &amp;#039;&amp;#039;Vibrio cholerae&amp;#039;&amp;#039;, you could search for the ID &amp;quot;VC0028&amp;quot;, which is an OrderedLocusNames ID.  Once the ID has been found, click the OK button to return to the Drafting Board window.&lt;br /&gt;
** For the Final Project, you will need to try a sample ID from each of the gene ID systems, not just OrderedLocusNames. &lt;br /&gt;
* Open the Backpage by left-clicking on the gene box on the Drafting Board to see if all of the cross-referenced IDs that are supposed to be there are there.&lt;br /&gt;
&lt;br /&gt;
Note: I tried out the search for a gene ID and was able to bring up the Backpage for that ID. The cross-referenced IDs that were supposed to show up were indeed on the page.&lt;br /&gt;
&lt;br /&gt;
===Creating an Expression Dataset in the Expression Dataset Manager===&lt;br /&gt;
&lt;br /&gt;
* How many of the IDs were imported out of the total IDs in the microarray dataset? How many exceptions were there? Look in the EX.txt file and look at the error codes for the records that were not imported into the Expression Dataset.  Do these represent IDs that were present in the UniProt XML, but were somehow not imported? or were they not present in the UniProt XML?&lt;br /&gt;
&lt;br /&gt;
Note: The Expression Dataset Manager reported that there were 121 errors during the conversion. From looking over the error codes, I found that all errors were of the form: &amp;lt;code&amp;gt;Gene not found in OrderedLocusNames or any related system.&amp;lt;/code&amp;gt; It seems that these IDs were in fact not present in the UniProt XML.&lt;br /&gt;
&lt;br /&gt;
===Coloring a MAPP with expression data===&lt;br /&gt;
&lt;br /&gt;
Note: I was able to successfully color the MAPP by coloring the increased and decreased Log Fold Changes. &lt;br /&gt;
&lt;br /&gt;
===Running MAPPFinder===&lt;br /&gt;
&lt;br /&gt;
Note: After the results had been calculated, a Gene Ontology browser opened showing my results. All of the Gene Ontology terms that have at least 3 genes measured and a p value of less than 0.05 were highlighted yellow. A term with a p value less than 0.05 is considered a &amp;quot;significant&amp;quot; result. Browsed through the tree to see the results.&lt;br /&gt;
&lt;br /&gt;
Documents produced from this run-through can be found here: [[Media:Week 9 genMAPP and MAPPFinder.zip | week 9 docs]]&lt;/div&gt;</summary>
		<author><name>Jkuroda</name></author>	</entry>

	</feed>