Skip to content

Commit

Permalink
small tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
tnrich committed Feb 28, 2024
1 parent ce6544b commit cb5b3a9
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions packages/ove/src/commands/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -264,12 +264,9 @@ const fileCommandDefs = {
handler: props =>
props.exportSequenceToFile(isProtein(props) ? "genpept" : "genbank")
},
exportSequenceAsFasta: {
name: "Download FASTA File",
handler: props => props.exportSequenceToFile("fasta")
},
exportDNASequenceAsFasta: {
name: "Download DNA FASTA File",
name: props =>
`Download ${props.sequenceData.isProtein ? "DNA " : ""}FASTA File`,
isHidden: props => !props.sequenceData.sequence,
handler: props =>
props.exportSequenceToFile("fasta", {
Expand Down

0 comments on commit cb5b3a9

Please sign in to comment.