Skip to content

Commit d960fc7

Browse files
Evgeniia GolovinaEvgeniia Golovina
authored andcommitted
fix GTEx bug in codes3d, fi[ printing
1 parent f8647fb commit d960fc7

File tree

8 files changed

+144
-171
lines changed

8 files changed

+144
-171
lines changed

CoDeS3D

Lines changed: 0 additions & 50 deletions
This file was deleted.

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,18 @@ You will then need to install the CoDeS3D dependencies by running `setup.sh` (yo
2222
- requests
2323
- biopython
2424
- matplotlib
25+
- progressbar
26+
- progressbar2
2527
- The [WikiPathways Python API client](https://github.com/wikipathways/wikipathways-api-client-py)*
2628

2729
\* After installing the WikiPathways Python API client, you may get an ImportError when you attempt to run CoDeS3D. To prevent this,
2830
go to the wikipathways-api-client-py/wikipathways_api_client/ directory and edit the first line in the __init__.py as follows:
2931

30-
`from wikpathways_api_client import wikipathways`
32+
`import wikipathways_api_client`
3133

3234
You will then be able to run CoDeS3D scripts!
3335

36+
### Write about miniconda set up
3437

3538
You will also need some data files with which to run your data. The simplest way to acquire these are using the `download_default_data.py` script. This will download the default data to the library directory specified by `libdir` in `docs/codes3d.conf`. Please note that most of the data files are very large, and this step is likely to take a long time, particularly if you wish to use all of the available HiC datasets. Note also that the total size of all available datasets is hundreds of gigabytes, and will require a large disk with a lot of free space.
3639

codes3d/build_hic_index.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
parser.add_argument("-o","--output_fp",help="The output file for the new HiC index (default: same as the filename of the input file with extension \".db\")")
1717
args = parser.parse_args()
1818

19-
codes3d.build_hic_index(args.input_hic_fp,args.output_fp,args.chr1_col,args.chr2_col,args.frag1_col,args.frag2_col,args.mapq1_col,args.mapq2_col,args.mapq_cutoff)
19+
codes3d.buied_hic_index(args.input_hic_fp,args.output_fp,args.chr1_col,args.chr2_col,args.frag1_col,args.frag2_col,args.mapq1_col,args.mapq2_col,args.mapq_cutoff)

0 commit comments

Comments
 (0)