Difference between revisions of "Poland Lab Wiki"

From Poland Lab Wiki
Jump to: navigation, search
(Genotyping Database)
(Database)
 
(58 intermediate revisions by 8 users not shown)
Line 2: Line 2:
  
 
== General Lab Information ==
 
== General Lab Information ==
 +
 +
[[Lab Procedures]]
  
 
[[Reading List]]
 
[[Reading List]]
 +
 +
[[Travel Instructions]]
 +
 +
== Projects==
 +
 +
[[NSF BREAD]]
  
 
== Genotyping Procedures ==
 
== Genotyping Procedures ==
Line 9: Line 17:
 
Lab protocols
 
Lab protocols
  
NGS Ordering
+
[[Media:GBS_NGS_Service_Order_Quebec.pdf|NGS Ordering]]
  
GBS Data Management
+
[[GBS Data Management]]
  
 
== High-Throughput Phenotyping Procedures ==
 
== High-Throughput Phenotyping Procedures ==
Line 17: Line 25:
 
[[UAS Phenotyping and Aerial Image Acquisition Procedures]]
 
[[UAS Phenotyping and Aerial Image Acquisition Procedures]]
  
UAS Field Data Collection Schedule
+
[[UAS Phenotyping and Aerial Image Acquisition Procedure for DJI]]
  
[[UAS Data Management Procedures]]
+
[[Media:UAV_Data_Upload_SOP_v1.3.pdf|UAS Data Management Procedures]]
  
UAS HTP Data Analysis
+
[[UAS HTP Data Analysis]]
  
Land-based HTP Data Acquisition
+
[[Media:CAMERAS_README.txt|Cameras README]]
 
+
Land-based HTP Data Collection Schedule
+
 
+
Land-based HTP Data Management
+
 
+
Land-based HTP Data Analysis
+
  
 
== Research Methods ==
 
== Research Methods ==
  
=== Genomic Selection ===
+
[[Genomic Selection]]
  
[[Media:GSquality_sbattenfield_033016.pdf|Genomic selection for quality PowerPoint]]
+
[[Meta-GWAS]]
  
[[Media:GS CV script.docx|Genomic selection example code]]
+
== Database ==
  
=== Meta-GWAS ===
+
[[Connecting to the Database]]
  
[[Media:MetaGWAS sbattenfield 033016.pdf|Meta-GWAS Methodology]]
+
[[Media:Wheatgenetics_Quick_Start_Guide_ML_20171016.pdf|Wheatgenetics Database Quick Start Guide]]
  
== Database ==
+
[[Media:DatabaseQueryFromR.pdf|Connecting to the Database with R]]
  
 
[[Genotyping Database]]
 
[[Genotyping Database]]
  
=== Genotyping Database ===
+
[[Land-based High-Throughput Phenotyping Database]]
  
The genotyping database stores information related to DNA libraries. The core set of tables related to genotyping are:
+
[[UAV High-Throughput Phenotyping Database]]
  
* The gbs table stores information about DNA libraries, DNA sequencing orders and DNA Sequence files.
+
[[Manual Phenotyping Database]]
  
* The dna table stores information about DNA plates and the samples contained in each well on a plate.
+
[[Seed and Plant Database]]
  
* The dnaQuant table stores DNA quantification values fluorescence values for each well on a plate.
+
[[CIMMYT Wheat Breeding Database]]
  
* The barcodes table stores information about the barcode sequences used for each plexing scheme for each well on a plate.
+
[[Media:CIMMYT_Automation_File_Interfaces.pdf|CIMMYT Database Import File Interface Specifications]]
  
In addition to the core tables, the following tables provide details on the tissue and plant DNA sources:
+
== Scripts ==
  
* The tissue table stores information about the tissue used to prepare a DNA sample.
+
[[Tassel 5 GBS v2 Pipeline sample script for calling SNPs using reference genome]]
  
* The plant table stores information about the plant that the tissue was extracted from.
+
== Equipment ==
  
The figure below illustrates the table definitions and the key relationships used to formulate queries related to genomic analysis. (PK indicates the primary key for each table.)
+
The links below provide access to the user manuals for the Toshiba Stake Printer and the Zebra Label Printer.  
  
 +
If you encounter problems while using the printers please refer to the Troubleshooting section in the relevant user manual.
  
[[File:Gbs.png]]
+
[[Media:B-SX5T-R_Owners-Manual_EN.pdf|Toshiba Stake Printer User Manual]]
  
 +
[[Media:zt200series_userguide.pdf|Zebra Printer User Manual]]
  
 +
== Guides ==
  
== Example Queries ==
+
[[ How to Submit GBS Data to the NCBI Sequence Read Archive (SRA) ]]
 
+
=== Key Query ===
+
The query below shows an example of how to obtain the information used to construct a key file that is required as input to TASSEL.
+
SELECT gbs.flowcell,
+
    gbs.lane,
+
    barcodes.barcode,
+
    dna.sample_name,
+
    plant.plant_name,
+
    dna.plate_id,
+
    substring(dna.well_A01,1,1),
+
    substring(dna.well_A01,2,2),
+
    dna.well_A01,
+
    dna.notes,
+
    gbs.plexing,
+
    gbs.project,
+
    gbs.enzyme,
+
    dna.sample_id,
+
    dna.tissue_id,
+
    dna.external_id,
+
    dna.dna_person,
+
    dna.line_num,
+
    gbs.gbs_name,
+
    dna.plate_name,
+
    dna.well_01A,
+
    gbs.gbs_id,
+
    barcodes.`set`
+
FROM dna LEFT JOIN gbs ON gbs.dna_id = dna.plate_id
+
      LEFT JOIN plant ON dna.tissue_id = plant.plant_id
+
      INNER JOIN barcodes ON dna.well_A01 = barcodes.well_A01 AND gbs.plexing LIKE barcodes.`set`
+
WHERE gbs.project LIKE "%My_Project%" ORDER BY gbs.gbs_id, dna.well_01A ASC
+
 
+
== Equipment ==
+
 
+
For instructions on how to use the Toshiba Stake Printer and the Zebra Label printer see the links to the user manuals below. If you encounter any problems while using the printers, refer to the Troubleshooting sections in each manual.
+
 
+
[[Media:B-SX5T-R_Owners-Manual_EN.pdf|Toshiba Stake Printer User Manual]]
+
 
+
[[Media:zt200series_userguide.pdf|Zebra Printer User Manual]]
+

Latest revision as of 20:04, 13 May 2020

Welcome to the Poland Lab Wiki!

General Lab Information

Lab Procedures

Reading List

Travel Instructions

Projects

NSF BREAD

Genotyping Procedures

Lab protocols

NGS Ordering

GBS Data Management

High-Throughput Phenotyping Procedures

UAS Phenotyping and Aerial Image Acquisition Procedures

UAS Phenotyping and Aerial Image Acquisition Procedure for DJI

UAS Data Management Procedures

UAS HTP Data Analysis

Cameras README

Research Methods

Genomic Selection

Meta-GWAS

Database

Connecting to the Database

Wheatgenetics Database Quick Start Guide

Connecting to the Database with R

Genotyping Database

Land-based High-Throughput Phenotyping Database

UAV High-Throughput Phenotyping Database

Manual Phenotyping Database

Seed and Plant Database

CIMMYT Wheat Breeding Database

CIMMYT Database Import File Interface Specifications

Scripts

Tassel 5 GBS v2 Pipeline sample script for calling SNPs using reference genome

Equipment

The links below provide access to the user manuals for the Toshiba Stake Printer and the Zebra Label Printer.

If you encounter problems while using the printers please refer to the Troubleshooting section in the relevant user manual.

Toshiba Stake Printer User Manual

Zebra Printer User Manual

Guides

How to Submit GBS Data to the NCBI Sequence Read Archive (SRA)