Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typo: 'seting', 'defualt' #247

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions ldsc.py
Expand Up @@ -422,7 +422,7 @@ def ldscore(args, log):
parser = argparse.ArgumentParser()
parser.add_argument('--out', default='ldsc', type=str,
help='Output filename prefix. If --out is not set, LDSC will use ldsc as the '
'defualt output filename prefix.')
'default output filename prefix.')
# Basic LD Score Estimation Flags'
parser.add_argument('--bfile', default=None, type=str,
help='Prefix for Plink .bed/.bim/.fam file')
Expand Down Expand Up @@ -482,7 +482,7 @@ def ldscore(args, log):
'i.e., \ell_j := \sum_k (p_k(1-p_k))^a r^2_{jk}, where p_k denotes the MAF '
'of SNP j and a is the argument to --pq-exp. ')
parser.add_argument('--no-print-annot', default=False, action='store_true',
help='By defualt, seting --cts-bin or --cts-bin-add causes LDSC to print '
help='By default, setting --cts-bin or --cts-bin-add causes LDSC to print '
'the resulting annot matrix. Setting --no-print-annot tells LDSC not '
'to print the annot matrix. ')
parser.add_argument('--maf', default=None, type=float,
Expand Down
2 changes: 1 addition & 1 deletion munge_sumstats.py
Expand Up @@ -137,7 +137,7 @@ def get_cname_map(flag, default, ignore):
(2) use everything in flags that is not in ignore
(3) use everything in default that is not in ignore or in flags

The keys of flag are cleaned. The entries of ignore are not cleaned. The keys of defualt
The keys of flag are cleaned. The entries of ignore are not cleaned. The keys of default
are cleaned. But all equality is modulo clean_header().

'''
Expand Down