Skip to content

Commit c296974

Browse files
committed
removing nextflow hidden files and folders
1 parent 365b69d commit c296974

File tree

38 files changed

+179
-464
lines changed

38 files changed

+179
-464
lines changed

dist/igsr_analysis-1.0.1.tar.gz

66.5 KB
Binary file not shown.

igsr_analysis.egg-info/PKG-INFO

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
Metadata-Version: 2.1
2+
Name: igsr-analysis
3+
Version: 1.0.1
4+
Summary: This package contains code that is relevant for the analysis (Mapping, BAM qc, Variant Calling, Filtering etc...) of IGSR data.
5+
Home-page: https://github.com/igsr/igsr_analysis/archive/refs/tags/v1.0.1.tar.gz
6+
Author: Ernesto Lowy
7+
Author-email: [email protected]
8+
License: MIT
9+
Description:
10+
This repo contains code that is relevant for the analysis (Mapping, BAM qc, Variant Calling, Filtering etc...) of IGSR data
11+
12+
The International Genome Sample Resource [(IGSR)](http://www.internationalgenome.org/) is a project funded by the [Wellcome Trust](https://wellcome.ac.uk/) created after the finalization of the 1000 Genomes Project in order to maintain and expand the resource. It has the following aims:
13+
14+
* Ensure the future access to and usability of the 1000 Genomes reference data
15+
* Incorporate additional published genomic data on the 1000 Genomes samples
16+
* Expand the data collection to include new populations not represented in the 1000 Genomes Project
17+
18+
This repository contains code used in the different analyses pipelines that we use in the project. To use this code please follow the steps described below
19+
20+
### Preparing environment
21+
Modify your $PYTHONPATH to include the required libraries:<br>
22+
```export PYTHONPATH=${ehive_dir}/wrappers/python3/:$PYTHONPATH```
23+
24+
Modify your $PERL5LIB to include the required libraries:<br>
25+
```export PERL5LIB=${ehive_dir}/modules/:${igsr_analysis_dir}/:${PERL5LIB}```
26+
27+
Modify your $PATH to include the location of the eHive scripts:
28+
```export PATH=${ehive_dir}/scripts/:${PATH}```
29+
30+
### Install the igsr_analysis package from PyPI
31+
32+
```pip install igsr_analysis```
33+
34+
And you are ready to go!
35+
36+
### Conventions used in this README file:
37+
38+
```${igsr_analysis_dir}``` is the folder where you have cloned https://github.com/igsr/igsr_analysis.git<br>
39+
```${ehive_dir}``` is the folder where you have cloned https://github.com/Ensembl/ensembl-hive.git<br>
40+
41+
[![DOI](https://zenodo.org/badge/99792445.svg)](https://zenodo.org/badge/latestdoi/99792445)
42+
43+
Platform: UNKNOWN
44+
Classifier: License :: OSI Approved :: MIT License
45+
Classifier: Programming Language :: Python
46+
Classifier: Programming Language :: Python :: 3
47+
Classifier: Programming Language :: Python :: 3.0
48+
Classifier: Programming Language :: Python :: Implementation :: CPython
49+
Classifier: Programming Language :: Python :: Implementation :: PyPy
50+
Requires-Python: >=3.0.0
51+
Description-Content-Type: text/markdown

igsr_analysis.egg-info/SOURCES.txt

+117
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
README.md
2+
setup.py
3+
BEDTools/BEDTools.py
4+
BEDTools/__init__.py
5+
BamQC/BamQC.py
6+
BamQC/__init__.py
7+
PyHive/Hive.py
8+
PyHive/__init__.py
9+
PyHive/Attribute/StoreAttribute.py
10+
PyHive/Attribute/__init__.py
11+
PyHive/Bam/RunSamToolsIndex.py
12+
PyHive/Bam/RunSamToolsMerge.py
13+
PyHive/Bam/__init__.py
14+
PyHive/BamQC/RunChkIndelRg.py
15+
PyHive/BamQC/RunPicardOnWESfile.py
16+
PyHive/BamQC/RunPicardOnWGSfile.py
17+
PyHive/BamQC/RunVerifyBamId.py
18+
PyHive/BamQC/__init__.py
19+
PyHive/Factories/BeagleChunkFactory.py
20+
PyHive/Factories/ChrFactory.py
21+
PyHive/Factories/CoordFactory.py
22+
PyHive/Factories/ShapeitChunkFactory.py
23+
PyHive/Factories/SliceFactory.py
24+
PyHive/Factories/SplitVCF.py
25+
PyHive/Factories/SplitVCFintoChros.py
26+
PyHive/Factories/TransposeBam.py
27+
PyHive/Factories/__init__.py
28+
PyHive/File/CompressBybgzip.py
29+
PyHive/File/ShortenFilePaths.py
30+
PyHive/File/ShortenFiles.py
31+
PyHive/File/SplitFile.py
32+
PyHive/File/StoreFile.py
33+
PyHive/File/__init__.py
34+
PyHive/Seed/SeedFile.py
35+
PyHive/Seed/SeedShapeit.py
36+
PyHive/Seed/SeedVCFIntegration.py
37+
PyHive/Seed/__init__.py
38+
PyHive/TOPMed/IndexBam.py
39+
PyHive/TOPMed/MarkDuplicates.py
40+
PyHive/TOPMed/RnaseqcCounts.py
41+
PyHive/TOPMed/Rsem.py
42+
PyHive/TOPMed/SamtoolsQuickcheck.py
43+
PyHive/TOPMed/Star.py
44+
PyHive/TOPMed/__init__.py
45+
PyHive/VariantCalling/BCFTools_caller.py
46+
PyHive/VariantCalling/GATK_HC.py
47+
PyHive/VariantCalling/GATK_UG.py
48+
PyHive/VariantCalling/__init__.py
49+
PyHive/Vcf/BcftoolsVcfNorm.py
50+
PyHive/Vcf/CombineVariants.py
51+
PyHive/Vcf/NormVcf.py
52+
PyHive/Vcf/VariantsToAllelicPrimitives.py
53+
PyHive/Vcf/VcfAllelicPrim.py
54+
PyHive/Vcf/VcfCombine.py
55+
PyHive/Vcf/VcfConcat.py
56+
PyHive/Vcf/VcfIxByTabix.py
57+
PyHive/Vcf/VcfReheader.py
58+
PyHive/Vcf/VcfReplaceChrNames.py
59+
PyHive/Vcf/__init__.py
60+
PyHive/Vcf/convertPL2GL.py
61+
PyHive/Vcf/dropInfo.py
62+
PyHive/VcfFilter/ApplyRecalibration.py
63+
PyHive/VcfFilter/BcftoolsFilter.py
64+
PyHive/VcfFilter/SelectVariants.py
65+
PyHive/VcfFilter/SplitVariants.py
66+
PyHive/VcfFilter/SubsetVcfWithBed.py
67+
PyHive/VcfFilter/SubsetVcfWithRegion.py
68+
PyHive/VcfFilter/VariantRecalibrator.py
69+
PyHive/VcfFilter/__init__.py
70+
PyHive/VcfIntegration/CollectRawF.py
71+
PyHive/VcfIntegration/SNPTools_bamodel.py
72+
PyHive/VcfIntegration/SNPTools_poprob.py
73+
PyHive/VcfIntegration/SNPTools_prob2vcf.py
74+
PyHive/VcfIntegration/__init__.py
75+
PyHive/VcfIntegration/run_Beagle.py
76+
PyHive/VcfIntegration/run_Shapeit.py
77+
PyHive/VcfIntegration/run_Shapeit_convert2vcf.py
78+
PyHive/VcfIntegration/run_ligateHAPLOTYPES.py
79+
PyHive/VcfIntegration/run_prepareGenFromBeagle4.py
80+
PyHive/VcfQC/BcftoolsStats.py
81+
PyHive/VcfQC/ChrosInVcf.py
82+
PyHive/VcfQC/CollectVariantCallingMetrics.py
83+
PyHive/VcfQC/GTConcordance.py
84+
PyHive/VcfQC/PlotVariantDensity.py
85+
PyHive/VcfQC/VariantsInRegions.py
86+
PyHive/VcfQC/__init__.py
87+
ReseqTrackDB/ReseqTrackDB.py
88+
ReseqTrackDB/__init__.py
89+
ReseqTrackDB/main.py
90+
SequenceIndex/SequenceIndex.py
91+
SequenceIndex/__init__.py
92+
SequenceIndex/main.py
93+
Utils/RunProgram.py
94+
Utils/RunSingularity.py
95+
Utils/__init__.py
96+
VCF/VcfNormalize.py
97+
VCF/VcfQC.py
98+
VCF/VcfUtils.py
99+
VCF/__init__.py
100+
VCF/VCFIntegration/Beagle.py
101+
VCF/VCFIntegration/SNPTools.py
102+
VCF/VCFIntegration/Shapeit.py
103+
VCF/VCFIntegration/__init__.py
104+
VCF/VCFfilter/BCFTools.py
105+
VCF/VCFfilter/GATK.py
106+
VCF/VCFfilter/MLclassifier.py
107+
VCF/VCFfilter/__init__.py
108+
VariantCalling/BCFTools.py
109+
VariantCalling/GATK.py
110+
VariantCalling/__init__.py
111+
igsr_analysis.egg-info/PKG-INFO
112+
igsr_analysis.egg-info/SOURCES.txt
113+
igsr_analysis.egg-info/dependency_links.txt
114+
igsr_analysis.egg-info/requires.txt
115+
igsr_analysis.egg-info/top_level.txt
116+
p3/__init__.py
117+
p3/p3BAMQC.py
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

igsr_analysis.egg-info/requires.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pandas

igsr_analysis.egg-info/top_level.txt

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
BEDTools
2+
BamQC
3+
PyHive
4+
ReseqTrackDB
5+
SequenceIndex
6+
Utils
7+
VCF
8+
VariantCalling
9+
p3

0 commit comments

Comments
 (0)