Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line numberDiff line numberDiff line change
Expand Up@@ -32,7 +32,7 @@ public class TargetedMSExperimentRunType extends ExperimentRunType

public TargetedMSExperimentRunType()
{
super("Imported Targeted MS Results", TargetedMSSchema.SCHEMA_NAME, TargetedMSSchema.TABLE_TARGETED_MS_RUNS);
super("Imported Targeted MS Results", TargetedMSSchema.SCHEMA_KEY, TargetedMSSchema.TABLE_TARGETED_MS_RUNS);
_protocolPrefixes = new String[] {TargetedMSModule.IMPORT_SKYDOC_PROTOCOL_OBJECT_PREFIX,
TargetedMSModule.IMPORT_SKYZIP_PROTOCOL_OBJECT_PREFIX};
}
Expand Down
4 changes: 3 additions & 1 deletion src/org/labkey/targetedms/TargetedMSSchema.java
Original file line numberDiff line numberDiff line change
Expand Up@@ -55,6 +55,7 @@
import org.labkey.api.query.QuerySchema;
import org.labkey.api.query.QuerySettings;
import org.labkey.api.query.QueryView;
import org.labkey.api.query.SchemaKey;
import org.labkey.api.query.UserIdQueryForeignKey;
import org.labkey.api.query.UserSchema;
import org.labkey.api.security.User;
Expand DownExpand Up@@ -91,6 +92,7 @@
public class TargetedMSSchema extends UserSchema
{
public static final String SCHEMA_NAME = "targetedms";
public static final SchemaKey SCHEMA_KEY = SchemaKey.fromParts("targetedms");
public static final String SCHEMA_DESCR = "Contains targeted mass spec data imported from Skyline documents";

// Tables
Expand DownExpand Up@@ -221,7 +223,7 @@ public QuerySchema createSchema(DefaultSchema schema, Module module)

public TargetedMSSchema(User user, Container container)
{
super(SCHEMA_NAME, SCHEMA_DESCR, user, container, TargetedMSManager.getSchema());
super(SCHEMA_KEY, SCHEMA_DESCR, user, container, TargetedMSManager.getSchema(), null);
_expSchema = new ExpSchema(user, container);
}

Expand Down