User Tools

Site Tools


readme.renumf90

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
readme.renumf90 [2020/04/21 07:10] yutakareadme.renumf90 [2024/03/25 18:22] (current) – external edit 127.0.0.1
Line 21: Line 21:
   * missing animals have code 0; 00 may be treated as a known animal   * missing animals have code 0; 00 may be treated as a known animal
  
 +\\ 
 +**Hint**: type ''renumf90 %%--%%show-template''  to have a template parameter file.
 =====Structure of parameter file====== =====Structure of parameter file======
  
Line 37: Line 38:
 =====Fields in the parameter file===== =====Fields in the parameter file=====
  
-# Parameter file for program renf90; it is translated to parameter +# Parameter file for renumf90. It is translated into a parameter file for the BLUPF90 family of programs.
-file for BLUPF90 family of programs.+
  
 Lines with # are treated as comments Lines with # are treated as comments
Line 68: Line 68:
 <file> <file>
 WEIGHT(S) WEIGHT(S)
-w+w1 [w2 w3...wn] 
 </file> </file>
-w is  position of weight if present; can be empty+w1 [w2 w3...wn] are  position of weight(s) if present; can be empty (which means weight of 1 or no weight). Either there is a single weight, the same for all traits, or one weight per trait in which case ''ntrait'' positions are needed in this line. See [[readme.blupf90plus#weights|blupf90+ section on WEIGHTS]]  for details.
  
 <file> <file>
Line 86: Line 86:
 positions can be different for each trait for fixed effects; positions can be different for each trait for fixed effects;
  
-for random effects, only one position + 0 (misising) efefct are+for random effects, only one position + 0 (missing) efefct are
 possible.  possible. 
   * type is 'cross' for crossclassified or 'cov' for covariables   * type is 'cross' for crossclassified or 'cov' for covariables
-  * form is 'alpha' for alphanumeric or 'numer' for numeric+  * for crossclassified effects: form is 'alpha' for alphanumeric or 'numer' for numeric 
 +  * for covariables: neither 'alpha' nor 'numer' are needed; don't put anything after 'cov'
  
 <file> <file>
Line 183: Line 184:
 the default is 3 the default is 3
  
-all pedigrees are loaded if p=0.+all pedigrees are loaded if p=0. This is the fastest as it reads the pedigree file only once. However, if you want to extract the informative animals (genotyped and phenotyped animals + their ancestors traced back) put a large number like 100. With p=0, RENUMF90 tries to include all animals found in the raw pedigree file even if the animals in the pedigree are not related to the animals with phenotype or genotype. Thus, p=0 is not recommended unless your pedigree file is already prepared and consists in the informative animals or the animals of interest. 
  
 <file> <file>
Line 226: Line 228:
 </file> </file>
 optional\\ optional\\
-use of inbreeding coefficients to compute inb/upg code in the 4th column of the output pedigree file+use of inbreeding coefficients to compute inb/upg code in the 4th column of the output pedigree file. Inbreeding calculation is a default in RENUMF90 ≥ v1.157, even if this keyword is not used.
  
 //inb_type// could be: //inb_type// could be:
   * 'pedigree' - the program computes inbreeding coefficients with Meuwissen and Luo (1992) using the pedigree to be saved in renaddxx.ped; calculated inbreeding coefficients will be saved in a file "renf90.inb" with the original ID   * 'pedigree' - the program computes inbreeding coefficients with Meuwissen and Luo (1992) using the pedigree to be saved in renaddxx.ped; calculated inbreeding coefficients will be saved in a file "renf90.inb" with the original ID
-  * 'file' - the program reads inbreeding coefficients from an external file. You should put the filename after 'file' e.g. 'file inbreeding.txt'. The file has at least 2 columns: original_ID and inbreeding value (from 0.0 to 1.0). The program just skips unnecessary IDs+  * 'file' - the program reads inbreeding coefficients from an external file. You should put the filename after 'file' e.g. 'file inbreeding.txt'. For instance a file "renf90.inb" (see above) from a previous run can be used. The file has at least 2 columns: original_ID and inbreeding value (from 0.0 to 1.0). The program just skips unnecessary IDs 
 +  * 'self x' - Calculates inbreeding with selfing, where x is the column in the pedigree file with the number of selfing generation 
 +  * 'no-inbreeding' - turn inbreeding calculation off in RENUMF90 ≥ v1.157
  
 <file> <file>
Line 249: Line 253:
 //r_type// could be: //r_type// could be:
   * 'data' if covariables for random regressions are in the data   * 'data' if covariables for random regressions are in the data
-  * "legendre' if legendre plynomials are to be generated from a single data variable; not yet implemented+  * "legendre' if legendre plynomials are to be generated from a single data variable; fully implemented now
  
 <file> <file>
Line 258: Line 262:
  
   * //r1-rq// specifies positions of covariables if r_type='data'   * //r1-rq// specifies positions of covariables if r_type='data'
-  * //r1// is order of legendre polynomial and //r2// is position of covariable if r_type='legendre'; not yet implemented+  * //r1// is order of legendre polynomial and //r2// is position of covariable if r_type='legendre'
  
 <file> <file>
Line 337: Line 341:
 where //nn// is the new size. where //nn// is the new size.
  
- - the maximun number of fields (default = 100) + - the maximum number of fields (default = 100) 
 <file> <file>
 OPTION max_field_readline nn OPTION max_field_readline nn
Line 343: Line 347:
 where //nn// is the number of fields.  where //nn// is the number of fields. 
  
 +<file>
 +OPTION missing x
 +</file>
 +
 +allows indicating that missing value is the number x (e.g. 999) for instance if 0 is a valid record.
 +
 +<file>
 +OPTION missing_in_weights
 +</file>
 +
 +in addition, this indicates that if a weight for the trait is 0, then the value of the trait is converted to "missing" in the output file ''renf90.dat'', i.e. 0 by default or another value is set if  ''OPTION missing '' is used. 
 +
 +<file>
 +OPTION no_basic_statistics
 +</file>
 +avoids the computation of basic statistics (min, max, correlations...) which take a certain time for very large data file.
 +
 +<file>
 +OPTION inbreeding_method 1
 +</file>
 +
 +allows choosing a method for inbreeding calculation. The inbreeding coefficients are used later (in the other programs) to set up the coefficients for the A-inverse. Existing options are:
 +
 +  * 7: Recursive tabular with self breeding generations . This method is for populations with selfing, i.e. wheat.
 +  * 6: Hybrid parallel computing which is basically a parallel (OMP) version of Meuwissen and Luo (1992)
 +  * 5: method of Tier (1990)
 +  * 4: recursive tabular method 
 +  * 3: Modified Colleau by Sargolzaei et al. (2005) 
 +  * 2: Modified Meuwissen & Luo by Sargolzaei & Iwaisaki (2004)
 +  * 1: Meuwissen and Luo (1992)
 +
 +the default is method 1. Large speed-ups are made using method 6 but this requires using several threads (e.g. using ''OMP_NUM_THREADS=4'')
    
 The end of the parameter file for ''RENUMF90'' can contain many lines beginning with OPTION.  The end of the parameter file for ''RENUMF90'' can contain many lines beginning with OPTION. 
Line 380: Line 416:
    2) parent 1 number or unknown parent group number for parent 1       2) parent 1 number or unknown parent group number for parent 1   
    3) parent 2 number or unknown parent group number for parent 2       3) parent 2 number or unknown parent group number for parent 2   
-   4) 3 minus number of known parents                               +   4) 3 minus number of known parents or inbreeding code if inbreeding is used (inbreeding is default now)                              
    5) known or estimated year of birth (0 if not provided)              5) known or estimated year of birth (0 if not provided)          
    6) number of known parents (parents might be eliminated if not contributing;    6) number of known parents (parents might be eliminated if not contributing;
readme.renumf90.1587453036.txt.gz · Last modified: 2024/03/25 18:22 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki