<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to GenerateGRM</title><link>https://sourceforge.net/p/gbchen/wiki/GenerateGRM/</link><description>Recent changes to GenerateGRM</description><atom:link href="https://sourceforge.net/p/gbchen/wiki/GenerateGRM/feed" rel="self"/><language>en</language><lastBuildDate>Wed, 05 Mar 2014 12:26:04 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/gbchen/wiki/GenerateGRM/feed" rel="self" type="application/rss+xml"/><item><title>GenerateGRM modified by Guobo Chen</title><link>https://sourceforge.net/p/gbchen/wiki/GenerateGRM/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v4
+++ v5
@@ -38,15 +38,26 @@
 The first two columns point to the rows of this pair of individuals in the *.grm.id file, in which their identifiers, as defined in the *.fam, can be found.

 **--Example**
+
+~~~~~
 gear --bfile test --make-grm --out test
 gear --bfile test --make-grm-txt --out test
 gear --bfile test --make-grm --ref-freq freq --out test
 gear --bfile test --make-grm --maf-range 0.4,0.6 --out test
 gear --bfile test --make-grm --grm-range 100,200 --out test
+~~~~~

 If use grm-partition option
+
+~~~~
 gear --bfile test --make-grm --grm-partition 10 --out test --name test
+~~~~
+
 It will generate 10 shell scripts, test.1.sh, test.2.sh, ..., test.10.sh.
 In the first script, say test.1.sh, it reads as below
+
+~~~~
 gear --bfile test --make-grm --grm-range x,y --out test.1
+~~~~
+
 GEAR will automatically set the numbers to the option --grm-range.
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Guobo Chen</dc:creator><pubDate>Wed, 05 Mar 2014 12:26:04 -0000</pubDate><guid>https://sourceforge.netc9acf7b0218e97ebbd493bff526efd08fe9c63b9</guid></item><item><title>GenerateGRM modified by Guobo Chen</title><link>https://sourceforge.net/p/gbchen/wiki/GenerateGRM/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v3
+++ v4
@@ -12,7 +12,6 @@
 --grm-range
 Specify the range of the individual pairs that the grm scores will be generated.  For example, --grm-range 100,200 only generates grm scores for the 100th to the 200th pairs.

-
 --ref-freq
 Specifies the reference allele frequencies for generating genetic relatedness scores.  The format for the frequency file reads below.

@@ -25,6 +24,8 @@
 --maf-range
 Specifies the range (inclusive) of the minor allele frequencies.  Only SNPs within this range will be used for generating genetic relatedness scores.  If the reference allele frequency, f, is greater than 0.5, say 0.65, it will be converted to 1-f.

+--grm-partition
+This option partitions the whole grm into k even subdivisions, each of which will be submitted to the HPC.

 There are four columns in the grm, in either gz or grm format, is as defined below (no title line included).

@@ -42,3 +43,10 @@
 gear --bfile test --make-grm --ref-freq freq --out test
 gear --bfile test --make-grm --maf-range 0.4,0.6 --out test
 gear --bfile test --make-grm --grm-range 100,200 --out test
+
+If use grm-partition option
+gear --bfile test --make-grm --grm-partition 10 --out test --name test
+It will generate 10 shell scripts, test.1.sh, test.2.sh, ..., test.10.sh.
+In the first script, say test.1.sh, it reads as below
+gear --bfile test --make-grm --grm-range x,y --out test.1
+GEAR will automatically set the numbers to the option --grm-range.
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Guobo Chen</dc:creator><pubDate>Thu, 18 Apr 2013 12:55:02 -0000</pubDate><guid>https://sourceforge.netdb257d87ed333f968a0e8896e721096992395aa7</guid></item><item><title>GenerateGRM modified by Guobo Chen</title><link>https://sourceforge.net/p/gbchen/wiki/GenerateGRM/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v2
+++ v3
@@ -9,11 +9,22 @@
 --make-grm-txt
 Generates genetic relationship scores and save the output in text format.  Two output files are generated under this option: *.grm.txt, and *.grm.id.

+--grm-range
+Specify the range of the individual pairs that the grm scores will be generated.  For example, --grm-range 100,200 only generates grm scores for the 100th to the 200th pairs.
+
+
 --ref-freq
-Specifies the allele frequency for generating genetic relatedness scores.
+Specifies the reference allele frequencies for generating genetic relatedness scores.  The format for the frequency file reads below.

---freq-range
-Specifies the range (inclusive) of the allele frequencies.  Only SNPs within this range will be used for generating genetic relatedness scores.
+CHR | SNP | A1 | A2 | freq(A1) | NCHR
+----|-----|----|----|----------|-----
+1 | rs0 | A | C | 0.488 | 1000
+1 | rs1 | A | C | 0.477 | 1000
+1 | rs2 | C | A | 0.469 | 1000
+
+--maf-range
+Specifies the range (inclusive) of the minor allele frequencies.  Only SNPs within this range will be used for generating genetic relatedness scores.  If the reference allele frequency, f, is greater than 0.5, say 0.65, it will be converted to 1-f.
+

 There are four columns in the grm, in either gz or grm format, is as defined below (no title line included).

@@ -29,4 +40,5 @@
 gear --bfile test --make-grm --out test
 gear --bfile test --make-grm-txt --out test
 gear --bfile test --make-grm --ref-freq freq --out test
-gear --bfile test --make-grm --freq-range 0.4,0.6 --out test
+gear --bfile test --make-grm --maf-range 0.4,0.6 --out test
+gear --bfile test --make-grm --grm-range 100,200 --out test
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Guobo Chen</dc:creator><pubDate>Wed, 17 Apr 2013 12:50:53 -0000</pubDate><guid>https://sourceforge.netf04498ffb8b0cdcf22c5f88e7a3b65c1d12014f4</guid></item><item><title>GenerateGRM modified by Guobo Chen</title><link>https://sourceforge.net/p/gbchen/wiki/GenerateGRM/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -8,6 +8,12 @@

 --make-grm-txt
 Generates genetic relationship scores and save the output in text format.  Two output files are generated under this option: *.grm.txt, and *.grm.id.
+
+--ref-freq
+Specifies the allele frequency for generating genetic relatedness scores.
+
+--freq-range
+Specifies the range (inclusive) of the allele frequencies.  Only SNPs within this range will be used for generating genetic relatedness scores.

 There are four columns in the grm, in either gz or grm format, is as defined below (no title line included).

@@ -22,3 +28,5 @@
 **--Example**
 gear --bfile test --make-grm --out test
 gear --bfile test --make-grm-txt --out test
+gear --bfile test --make-grm --ref-freq freq --out test
+gear --bfile test --make-grm --freq-range 0.4,0.6 --out test
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Guobo Chen</dc:creator><pubDate>Tue, 16 Apr 2013 11:08:59 -0000</pubDate><guid>https://sourceforge.netec14f09b38bf70216c0f9c3b2915272547562d5e</guid></item><item><title>GenerateGRM modified by Guobo Chen</title><link>https://sourceforge.net/p/gbchen/wiki/GenerateGRM/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;&lt;strong&gt;Generate genetic relationship scores&lt;/strong&gt;&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;This procedure generates genetic relationship scores for individuals.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Options&lt;/strong&gt;&lt;br /&gt;
--make-grm&lt;br /&gt;
Generates genetic relationship scores and save the output in gz (gzip) format.  Two output files are generated under this option: &lt;em&gt;.grm.gz, and &lt;/em&gt;.grm.id.&lt;/p&gt;
&lt;p&gt;--make-grm-txt&lt;br /&gt;
Generates genetic relationship scores and save the output in text format.  Two output files are generated under this option: &lt;em&gt;.grm.txt, and &lt;/em&gt;.grm.id.&lt;/p&gt;
&lt;p&gt;There are four columns in the grm, in either gz or grm format, is as defined below (no title line included).&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;ID1&lt;/th&gt;
&lt;th&gt;ID2&lt;/th&gt;
&lt;th&gt;Number of Markers&lt;/th&gt;
&lt;th&gt;Genetic relatedness score&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;100&lt;/td&gt;
&lt;td&gt;1.1&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;100&lt;/td&gt;
&lt;td&gt;0.003&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;td&gt;99&lt;/td&gt;
&lt;td&gt;0.98&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;The first two columns point to the rows of this pair of individuals in the &lt;em&gt;.grm.id file, in which their identifiers, as defined in the &lt;/em&gt;.fam, can be found.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;--Example&lt;/strong&gt;&lt;br /&gt;
gear --bfile test --make-grm --out test&lt;br /&gt;
gear --bfile test --make-grm-txt --out test&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Guobo Chen</dc:creator><pubDate>Tue, 16 Apr 2013 01:32:23 -0000</pubDate><guid>https://sourceforge.netfff61dd74df605a901ceee7aa541a2c2c5ab3695</guid></item></channel></rss>