Skip to content

Commit

Permalink
changed a few more refs from Måns original url to new org url
Browse files Browse the repository at this point in the history
  • Loading branch information
dnil committed Oct 24, 2024
1 parent da5c301 commit 2c44cb7
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ identifiers:
type: doi
value: "10.5281/zenodo.3841142"
license: MIT Licence
repository-code: "https://github.com/moonso/genmod"
repository-code: "https://github.com/Clinical-Genomics/genmod"
14 changes: 7 additions & 7 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Genmod #

<p align="center">
<a href="https://github.com/moonso/genmod">
<img src="https://github.com/moonso/genmod/raw/master/artwork/tree_man.JPG"/>
<a href="https://github.com/Clinical-Genomics/genmod">
<img src="https://github.com/Clinical-Genomics/genmod/raw/master/artwork/tree_man.JPG"/>
</a>
</p>

Expand All @@ -24,15 +24,15 @@ whole exome data and whole genome data.
## Installation ##

**GENMOD**

```bash
pip install genmod

```
or

git clone https://github.com/moonso/genmod.git
```bash
git clone https://github.com/Clinical-Genomics/genmod.git
cd genmod
python setup.py install

```


### Example: ###
Expand Down
18 changes: 9 additions & 9 deletions examples/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ If the user want to build own annotations please use **genmod build_annotation**

##Annotate variants for Recessive Family##


```
genmod annotate examples/test_vcf.vcf -f examples/recessive_trio.ped -o examples/test_vcf_recessive_annotated.vcf

```
The vcf file have a couple of variants made up so it will be easy to understand how the genetic inheritance patterns are annotated.

With the basic command listed above the output should look like the variants in ```examples/test_vcf_recessive_annotated.vcf```
Expand All @@ -30,24 +30,24 @@ The following variants are to show how the ``-strict`` flag affects the analysis


##Annotate variants for Dominant Family##

```
genmod annotate test_data/test_vcf.vcf -f test_data/dominant_trio.ped -o examples/test_vcf_dominant_annotated.vcf

```
We can now see how the conditions change when one of the parents are affected. For example the recessive pattern for the first variant is not followed since all affected needs to be homozygote alternative if the variant should follow the Autosomal Recessive pattern.


##Annotate variants for Multiple Families##

```
genmod annotate test_data/test_vcf.vcf -f test_data/multi_family.ped -o examples/test_vcf_multi_annotated.vcf

```
We can now see how the conditions change when one of the parents are affected. For example the recessive pattern for the first variant is not followed since all affected needs to be homozygote alternative if the variant should follow the Autosomal Recessive pattern.


##Annotate variants with CADD scores and population frequencies##

This is another example of how one can annotate with genmod:

```
genmod annotate examples/test_vcf.vcf --cadd_file examples/small_CADD.tsv.gz --thousand_g examples/small_1000G.vcf.gz
```


Please post issues on http://github.com/moonso/genmod if any problems.
Please post issues on http://github.com/Clinical-Genomics/genmod in case of any problems.
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ site_name: genmod docs
site_description: Project documentation with Markdown
site_author: Måns Magnusson

repo_url: https://github.com/moonso/genmod
repo_url: https://github.com/Clinical-Genomics/genmod

pages:
- Home: index.md
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
description='Annotate genetic inheritance models in variant files',
author = 'Mans Magnusson',
author_email = '[email protected]',
url = 'http://github.com/moonso/genmod',
url = 'http://github.com/Clinical-Genomics/genmod',
license = 'MIT License',
python_requires="~=3.8.0",
install_requires=[
Expand Down

0 comments on commit 2c44cb7

Please sign in to comment.