Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
jass_preprocessing
Manage
Activity
Members
Labels
Plan
Issues
9
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Statistical-Genetics
jass_preprocessing
Merge requests
!3
explicity argument naming in pd.dataframe.all , .any
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
explicity argument naming in pd.dataframe.all , .any
fingenn_bug
into
master
Overview
0
Commits
1
Pipelines
0
Changes
4
Merged
Hanna JULIENNE
requested to merge
fingenn_bug
into
master
1 year ago
Overview
0
Commits
1
Pipelines
0
Changes
4
Expand
maintenance for the new version of pandas
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
9b26bed9
1 commit,
1 year ago
4 files
+
20
−
15
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
jass_preprocessing/__main__.py
+
4
−
0
Options
@@ -46,6 +46,10 @@ def launch_preprocessing(args):
print
(
"
#SNPs in GWAS summary statistic file: {}
"
.
format
(
gw_df
.
shape
[
0
]))
ref
=
jp
.
map_reference
.
read_reference
(
args
.
ref_path
,
np
.
bool_
(
args
.
mask_MHC
),
np
.
double
(
args
.
minimum_MAF
),
region_to_mask
=
eval
(
args
.
additional_masked_region
))
print
(
"
Unique chromosome in reference
"
)
print
(
ref
.
chr
.
unique
())
mgwas
=
jp
.
map_reference
.
map_on_ref_panel
(
gw_df
,
ref
,
gwas_map
.
loc
[
tag
,
"
index_type
"
])
print
(
"
#SNPs mapped to reference panel: {}
"
.
format
(
mgwas
.
shape
[
0
]))