Skip to content

Commit

Permalink
Bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-munro committed Sep 5, 2024
1 parent 7d18fca commit 70c5077
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
15 changes: 8 additions & 7 deletions Pheast/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,19 @@ channels:
- bioconda
- defaults
dependencies:
- bioconductor-impute
- bioconductor-qvalue
- bioconductor-variantannotation
- dask<2024.2
- bioconductor-impute # for covariates
- bioconductor-qvalue # for tensorqtl
- bioconductor-variantannotation # for covariates
- dask<2024.2 # for tensorqtl (pandas-plink)
- gcta # for heritability
- pandas
- pandas-plink
- pandas-plink # for tensorqtl
- pip
- plink
- plink2=2
- r-glmnet
- r-glmnet # for FUSION
- r-optparse
- rpy2
- rpy2 # for tensorqtl
- snakemake
- pip:
- tensorqtl
2 changes: 1 addition & 1 deletion Pheast/steps/setup.smk
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ geno_prefix = config['geno_prefix']
# samples_file = Path(config['samples_file'])
# samples = pd.read_csv(samples_file, sep='\t', header=None)[0].tolist()
samples = config['samples']
geno_samples = pd.read_csv(geno_prefix + '.fam', sep='\t', header=None)[1].tolist()
geno_samples = pd.read_csv(geno_prefix + '.fam', sep=r'\s+', header=None)[1].tolist()
missing_samples = [s for s in samples if s not in geno_samples]
if len(missing_samples) > 0:
raise Exception(f'Samples missing from genotypes: {missing_samples}')
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Pantry

Pantry (PAN-TRanscriptome phenotYping) is a framework for generating multimodal transcriptomic phenotypes from RNA-Seq and applying them to genetic analyses. The goal is to make genetic analyses as easy to perform with a multitude of transcriptomic phenotype modalities as it is with gene expression alone.
Pantry (PAN-TRanscriptomic phenotYping) is a framework for generating multimodal transcriptomic phenotypes from RNA-Seq and applying them to genetic analyses. The goal is to make genetic analyses as easy to perform with a multitude of transcriptomic phenotype modalities as it is with gene expression alone.

**Contact us** if you have a method for an additional modality that you would like to add to Pantry. Your collaboration will result in authorship on a subsequent Pantry publication, and Pantry users will be instructed to cite your original study every time they use the results in a publication.

Expand Down

0 comments on commit 70c5077

Please sign in to comment.