You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tracing::info!("Skipping transcript database {} as its version {:?} does not support the requested assembly ({:?})",&tx_sources[i],&db.source_version,&assembly);
2056
-
None
2057
-
},
2058
-
None => Some(Ok(db)),
2059
-
},
2060
-
Err(_) => Some(txdb),
2061
-
})
2062
-
.collect::<anyhow::Result<Vec<_>>>()?;
2010
+
let databases = load_transcript_dbs_for_assembly(tx_sources, assembly)?;
2063
2011
2064
2012
if databases.is_empty(){
2065
2013
tracing::warn!("No suitable transcript databases found for requested assembly {:?}, therefore no consequence prediction will occur.",&assembly);
tracing::info!("Skipping transcript database {} as its version {:?} does not support the requested assembly ({:?})",&tx_sources[i],&db.source_version,&assembly);
2053
+
None
2054
+
},
2055
+
None => Some(Ok(db)),
2056
+
},
2057
+
Err(_) => Some(txdb),
2058
+
})
2059
+
.collect::<anyhow::Result<Vec<_>>>()?;
2060
+
Ok(databases)
2061
+
}
2062
+
2083
2063
/// Create for all alternate alleles from the given VCF record.
0 commit comments