Skip to content

Commit

Permalink
Fix chrom sizes selector
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdcolin committed Aug 23, 2021
1 parent 2c74146 commit c736485
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ const AdapterInput = observer(
setGziLocation,
twoBitLocation,
setTwoBitLocation,
chromSizesLocation,
setChromSizesLocation,
}: {
adapterSelection: string
Expand All @@ -91,6 +92,7 @@ const AdapterInput = observer(
setGziLocation: Function
twoBitLocation: FileLocation
setTwoBitLocation: Function
chromSizesLocation: FileLocation
setChromSizesLocation: Function
}) => {
if (
Expand Down Expand Up @@ -139,7 +141,7 @@ const AdapterInput = observer(
<Grid item>
<FileSelector
name="chromSizesLocation (optional, can be added to speed up loading 2bit files with many contigs)"
location={twoBitLocation}
location={chromSizesLocation}
setLocation={loc => setChromSizesLocation(loc)}
/>
</Grid>
Expand Down Expand Up @@ -269,6 +271,7 @@ const AssemblyAddForm = observer(
setGziLocation={setGziLocation}
twoBitLocation={twoBitLocation}
setTwoBitLocation={setTwoBitLocation}
chromSizesLocation={chromSizesLocation}
setChromSizesLocation={setChromSizesLocation}
/>
</div>
Expand Down

0 comments on commit c736485

Please sign in to comment.