Project

General

Profile

Bug #18724

Updated by Peter Amstutz about 2 years ago

Customer wants to search for a file by name, and probably also by path. 

 Currently, they can use the trigram index on the full Collection record. 

 This turned up an unexpected behavior. 

 Searching for "dmel_r6.16/Bowtie2Index/genome.fa" doesn't work 

 Searching for "dmel_r6.16/Bowtie2Index" works 

 This is because the file_names column is populated with each file name and each stream name ("directory") from the manifest.    The file name and stream name are not joined to get a full path.    So the file_names table looks like: 

 <pre> 
 genome.fa 
 ./dmel_r6.16/Bowtie2Index 
 </pre> 

 It would better fit user expectations if it was formatted like this: 

 <pre> 
 ./dmel_r6.16/Bowtie2Index/genome.fa 
 </pre> 

 Propose migrating the column contents to use full paths. 

Back