-
Notifications
You must be signed in to change notification settings - Fork 441
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Normalize paths for genome fetch and some of the genome indexer data …
…managers, plus additional moderinzation (#6489) * Update data_manager_fetch_genome_dbkeys_all_fasta for normalized layout * Update data_manager_bowtie_index_builder for normalized layout, plus: - Move colorspace builder to deprecated - Drop python wrapper - Update bowtie version - Add tests * Update data_manager_bowtie2_index_builder for normalized layout, plus: - Drop python wrapper - Update bowtie2 version - Add test of non-default options * Update data_manager_bwa_mem_index_builder for normalized layout, plus: - Drop python wrapper - Update bwa version - Add test of non-default options * Update data_manager_bwa_mem2_index_builder for normalized layout * Update data_manager_star_index_builder for normalized layout, plus: - Drop python wrapper - Add options to automatically calculate --genomeSAindexNbases and --genomeChrBinNbits * Update data_manager_sam_fasta_index_builder for normalized layout, plus: - Drop python wrapper - Update samtools version - Add test of non-default options
- Loading branch information
Showing
53 changed files
with
562 additions
and
475 deletions.
There are no files selected for viewing
86 changes: 0 additions & 86 deletions
86
data_managers/data_manager_bowtie2_index_builder/data_manager/bowtie2_index_builder.py
This file was deleted.
Oops, something went wrong.
62 changes: 50 additions & 12 deletions
62
data_managers/data_manager_bowtie2_index_builder/data_manager/bowtie2_index_builder.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
data_managers/data_manager_bowtie2_index_builder/test-data/bowtie2_data_manager.1.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"data_tables":{ | ||
"bowtie2_indexes":[ | ||
{ | ||
"value": "phiX174", | ||
"dbkey": "phiX174", | ||
"name": "phiX 174", | ||
"path": "phiX174.fasta" | ||
} | ||
], | ||
"tophat2_indexes":[ | ||
{ | ||
"value": "phiX174", | ||
"dbkey": "phiX174", | ||
"name": "phiX 174", | ||
"path": "phiX174.fasta" | ||
} | ||
] | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
data_managers/data_manager_bowtie2_index_builder/test-data/bowtie2_data_manager.2.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"data_tables":{ | ||
"bowtie2_indexes":[ | ||
{ | ||
"value": "tigHai1", | ||
"dbkey": "phiX174", | ||
"name": "Galeocerdo cuvier", | ||
"path": "phiX174.fasta" | ||
} | ||
] | ||
} | ||
} |
1 change: 0 additions & 1 deletion
1
data_managers/data_manager_bowtie2_index_builder/test-data/bowtie2_data_manager.json
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
data_managers/data_manager_bowtie_index_builder/test-data/all_fasta.loc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#This file lists the locations and dbkeys of all the fasta files | ||
#under the "genome" directory (a directory that contains a directory | ||
#for each build). The script extract_fasta.py will generate the file | ||
#all_fasta.loc. This file has the format (white space characters are | ||
#TAB characters): | ||
# | ||
#<unique_build_id> <dbkey> <display_name> <file_path> | ||
# | ||
#So, all_fasta.loc could look something like this: | ||
# | ||
#apiMel3 apiMel3 Honeybee (Apis mellifera): apiMel3 /path/to/genome/apiMel3/apiMel3.fa | ||
#hg19canon hg19 Human (Homo sapiens): hg19 Canonical /path/to/genome/hg19/hg19canon.fa | ||
#hg19full hg19 Human (Homo sapiens): hg19 Full /path/to/genome/hg19/hg19full.fa | ||
# | ||
#Your all_fasta.loc file should contain an entry for each individual | ||
#fasta file. So there will be multiple fasta files for each build, | ||
#such as with hg19 above. | ||
# | ||
phiX174 phiX174 phiX 174 ${__HERE__}/phiX174.fasta |
12 changes: 12 additions & 0 deletions
12
data_managers/data_manager_bowtie_index_builder/test-data/bowtie_data_manager.1.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"data_tables":{ | ||
"bowtie_indexes":[ | ||
{ | ||
"value": "phiX174", | ||
"dbkey": "phiX174", | ||
"name": "phiX 174", | ||
"path": "phiX174.fasta" | ||
} | ||
] | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
data_managers/data_manager_bowtie_index_builder/test-data/bowtie_data_manager.2.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"data_tables":{ | ||
"bowtie_indexes":[ | ||
{ | ||
"value": "tigHai1", | ||
"dbkey": "phiX174", | ||
"name": "Galeocerdo cuvier", | ||
"path": "phiX174.fasta" | ||
} | ||
] | ||
} | ||
} |
File renamed without changes.
Oops, something went wrong.