We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dea3e6a commit 27df020Copy full SHA for 27df020
src/utils/readNwrite.js
@@ -239,9 +239,11 @@ export function convertToTeselaJson(sequence) {
239
// For some reason, as it is it does not read circular or linear properly from certain files
240
const { parsedSequence } = genbankToJson(sequence.file_content)[0];
241
242
- if (sequence.file_content.split('\n')[0].includes('linear')) {
243
- parsedSequence.circular = false;
244
- }
+ // TODO: Remove this eventually?
+ // if (sequence.file_content.split('\n')[0].includes('linear')) {
+ // parsedSequence.circular = false;
245
+ // }
246
+
247
parsedSequence.id = sequence.id;
248
return tidyUpSequenceData(parsedSequence);
249
}
0 commit comments