Displaying custom taxonomy in the admin list of a custom post type

Always check the codexget_terms( $taxonomies, $args ) – your code should read:

$genre = get_terms( 'genre', array(
    'include' => get_post_meta( $post->ID, 'maingenre', true ),
));

tech